diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/web_unsplash | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/web_unsplash')
76 files changed, 10096 insertions, 0 deletions
diff --git a/addons/web_unsplash/__init__.py b/addons/web_unsplash/__init__.py new file mode 100644 index 00000000..7d34c7c0 --- /dev/null +++ b/addons/web_unsplash/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models diff --git a/addons/web_unsplash/__manifest__.py b/addons/web_unsplash/__manifest__.py new file mode 100644 index 00000000..db5b14d7 --- /dev/null +++ b/addons/web_unsplash/__manifest__.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': 'Unsplash Image Library', + 'category': 'Hidden', + 'summary': 'Find free high-resolution images from Unsplash', + 'version': '1.1', + 'description': """Explore the free high-resolution image library of Unsplash.com and find images to use in Odoo. An Unsplash search bar is added to the image library modal.""", + 'depends': ['base_setup', 'web_editor'], + 'data': [ + 'views/res_config_settings_view.xml', + 'views/web_unsplash_templates.xml', + ], + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/addons/web_unsplash/controllers/__init__.py b/addons/web_unsplash/controllers/__init__.py new file mode 100644 index 00000000..7fc0cd7c --- /dev/null +++ b/addons/web_unsplash/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import main diff --git a/addons/web_unsplash/controllers/main.py b/addons/web_unsplash/controllers/main.py new file mode 100644 index 00000000..505531ed --- /dev/null +++ b/addons/web_unsplash/controllers/main.py @@ -0,0 +1,149 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import base64 +import logging +import mimetypes +import requests +import werkzeug.utils + +from odoo import http, tools, _ +from odoo.http import request +from odoo.tools.mimetypes import guess_mimetype +from werkzeug.urls import url_encode + +logger = logging.getLogger(__name__) + + +class Web_Unsplash(http.Controller): + + def _get_access_key(self): + if request.env.user._has_unsplash_key_rights(): + return request.env['ir.config_parameter'].sudo().get_param('unsplash.access_key') + raise werkzeug.exceptions.NotFound() + + def _notify_download(self, url): + ''' Notifies Unsplash from an image download. (API requirement) + :param url: the download_url of the image to be notified + + This method won't return anything. This endpoint should just be + pinged with a simple GET request for Unsplash to increment the image + view counter. + ''' + try: + if not url.startswith('https://api.unsplash.com/photos/'): + raise Exception(_("ERROR: Unknown Unsplash notify URL!")) + access_key = self._get_access_key() + requests.get(url, params=url_encode({'client_id': access_key})) + except Exception as e: + logger.exception("Unsplash download notification failed: " + str(e)) + + # ------------------------------------------------------ + # add unsplash image url + # ------------------------------------------------------ + @http.route('/web_unsplash/attachment/add', type='json', auth='user', methods=['POST']) + def save_unsplash_url(self, unsplashurls=None, **kwargs): + """ + unsplashurls = { + image_id1: { + url: image_url, + download_url: download_url, + }, + image_id2: { + url: image_url, + download_url: download_url, + }, + ..... + } + """ + def slugify(s): + ''' Keeps only alphanumeric characters, hyphens and spaces from a string. + The string will also be truncated to 1024 characters max. + :param s: the string to be filtered + :return: the sanitized string + ''' + return "".join([c for c in s if c.isalnum() or c in list("- ")])[:1024] + + if not unsplashurls: + return [] + + uploads = [] + Attachments = request.env['ir.attachment'] + + query = kwargs.get('query', '') + query = slugify(query) + + res_model = kwargs.get('res_model', 'ir.ui.view') + if res_model != 'ir.ui.view' and kwargs.get('res_id'): + res_id = int(kwargs['res_id']) + else: + res_id = None + + for key, value in unsplashurls.items(): + url = value.get('url') + try: + if not url.startswith('https://images.unsplash.com/'): + logger.exception("ERROR: Unknown Unsplash URL!: " + url) + raise Exception(_("ERROR: Unknown Unsplash URL!")) + req = requests.get(url) + if req.status_code != requests.codes.ok: + continue + + # get mime-type of image url because unsplash url dosn't contains mime-types in url + image_base64 = base64.b64encode(req.content) + except requests.exceptions.ConnectionError as e: + logger.exception("Connection Error: " + str(e)) + continue + except requests.exceptions.Timeout as e: + logger.exception("Timeout: " + str(e)) + continue + + image_base64 = tools.image_process(image_base64, verify_resolution=True) + mimetype = guess_mimetype(base64.b64decode(image_base64)) + # append image extension in name + query += mimetypes.guess_extension(mimetype) or '' + + # /unsplash/5gR788gfd/lion + url_frags = ['unsplash', key, query] + + attachment = Attachments.create({ + 'name': '_'.join(url_frags), + 'url': '/' + '/'.join(url_frags), + 'mimetype': mimetype, + 'datas': image_base64, + 'public': res_model == 'ir.ui.view', + 'res_id': res_id, + 'res_model': res_model, + 'description': value.get('description'), + }) + attachment.generate_access_token() + uploads.append(attachment._get_media_info()) + + # Notifies Unsplash from an image download. (API requirement) + self._notify_download(value.get('download_url')) + + return uploads + + @http.route("/web_unsplash/fetch_images", type='json', auth="user") + def fetch_unsplash_images(self, **post): + access_key = self._get_access_key() + app_id = self.get_unsplash_app_id() + if not access_key or not app_id: + return {'error': 'key_not_found'} + post['client_id'] = access_key + response = requests.get('https://api.unsplash.com/search/photos/', params=url_encode(post)) + if response.status_code == requests.codes.ok: + return response.json() + else: + return {'error': response.status_code} + + @http.route("/web_unsplash/get_app_id", type='json', auth="public") + def get_unsplash_app_id(self, **post): + return request.env['ir.config_parameter'].sudo().get_param('unsplash.app_id') + + @http.route("/web_unsplash/save_unsplash", type='json', auth="user") + def save_unsplash(self, **post): + if request.env.user._has_unsplash_key_rights(): + request.env['ir.config_parameter'].sudo().set_param('unsplash.app_id', post.get('appId')) + request.env['ir.config_parameter'].sudo().set_param('unsplash.access_key', post.get('key')) + return True + raise werkzeug.exceptions.NotFound() diff --git a/addons/web_unsplash/i18n/ar.po b/addons/web_unsplash/i18n/ar.po new file mode 100644 index 00000000..3679b6ff --- /dev/null +++ b/addons/web_unsplash/i18n/ar.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Ghaith Gammar <g.gammar@saharaifs.net>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> إنشاء مفتاح وصول" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "مفتاح الوصول" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "تطبيق" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "خطأ: رابط Unsplash غير معروف!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "خطأ: رابط إشعار Unsplash غير معروف!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "إنشاء مفتاح وصول" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "كيفية إيجاد معرف تطبيق Unsplash؟" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "المُعرف" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "الصق مفتاح وصولك هنا" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "الصق معرف تطبيقك هنا" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "برجاء مراجعة مفتاح وصولك ومعرف التطبيق المستخدمان للولوج لـUnsplash." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "برجاء التأكد من اتصالك بالإنترنت أو تواصل مع المشرف." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "صورة حقل Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "البحث غير متاح مؤقتًا" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "حدث خطأ ما" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"وصلت للحد الأقصى من عمليات البحث. برجاء إعادة المحاولة بعد ساعة أو تمديد " +"حسابك للحصول على حساب أفضل." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "مفتاح غير معتمد" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "يتطلب الولوج لـUnsplash مفتاح وصول ومعرف تطبيق" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "المستخدمون" diff --git a/addons/web_unsplash/i18n/az.po b/addons/web_unsplash/i18n/az.po new file mode 100644 index 00000000..6f91c207 --- /dev/null +++ b/addons/web_unsplash/i18n/az.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:33+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/bg.po b/addons/web_unsplash/i18n/bg.po new file mode 100644 index 00000000..42963fc1 --- /dev/null +++ b/addons/web_unsplash/i18n/bg.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Прилагайте" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Потребители" diff --git a/addons/web_unsplash/i18n/bn.po b/addons/web_unsplash/i18n/bn.po new file mode 100644 index 00000000..47f2ef27 --- /dev/null +++ b/addons/web_unsplash/i18n/bn.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "অ্যাক্সেস কী" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "আইডি " + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "ব্যবহারকারীরা" diff --git a/addons/web_unsplash/i18n/bs.po b/addons/web_unsplash/i18n/bs.po new file mode 100644 index 00000000..2b69d4db --- /dev/null +++ b/addons/web_unsplash/i18n/bs.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "Primjeni" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/ca.po b/addons/web_unsplash/i18n/ca.po new file mode 100644 index 00000000..2467141f --- /dev/null +++ b/addons/web_unsplash/i18n/ca.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Camp d'imatge Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Usuaris" diff --git a/addons/web_unsplash/i18n/ckb.po b/addons/web_unsplash/i18n/ckb.po new file mode 100644 index 00000000..984175e5 --- /dev/null +++ b/addons/web_unsplash/i18n/ckb.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> دروستکردنی کلیلی دەستپێگەیشتن" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "کلیلی دەستپێگەیشتن" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "جێبەجێکردن" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "دروستکردنی کلیلی دەستپێگەیشتن" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ناسنامە" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "بەکارهێنەرەکان" diff --git a/addons/web_unsplash/i18n/cs.po b/addons/web_unsplash/i18n/cs.po new file mode 100644 index 00000000..dc1d5653 --- /dev/null +++ b/addons/web_unsplash/i18n/cs.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Vytvoření přístupového klíče" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Přístupový klíč" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Použít" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Fotky (přes Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Zkontrolujte prosím přístupový klíč Unsplash a ID aplikace." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Zkontrolujte prosím připojení k internetu nebo kontaktujte administrátora." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Obrázek pole Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Hledání je dočasně nedostupné" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Něco se pokazilo" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Byl překročen maximální počet vyhledávání. Zkuste to znovu za hodinu nebo si" +" vytvořte lepší účet." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Neoprávněný klíč" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash vyžaduje přístupový klíč a ID aplikace" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Uživatelé" diff --git a/addons/web_unsplash/i18n/da.po b/addons/web_unsplash/i18n/da.po new file mode 100644 index 00000000..241d4d61 --- /dev/null +++ b/addons/web_unsplash/i18n/da.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Generer en Adgangs nøgle" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Adgangs nøgle" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Anvend" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "FEJL: Ukendt Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "FEJL: Ukendt Unsplash notifikations URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generer en Adgangs nøgle" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Hvordan finder jeg mit Unsplash Applikations ID?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Indsæt din adgangs nøgle her" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Indsæt dit applikations ID her" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Fotos (via Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Tjek venligst din Unsplash adgangs nøgle og dit applikations ID." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Tjek venligst din internetforbindelse eller kontakt administrator." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb felt billede" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Søgning er midlertidigt utilgængelig" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Noget gik galt" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Det maksimale antal søgninger er oversteget. Prøv venligst igen om en time, " +"eller udvid til en bedre konto." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Uautoriseret nøgle" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash kræver en adgangs nøgle og et applikations ID" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Brugere" diff --git a/addons/web_unsplash/i18n/de.po b/addons/web_unsplash/i18n/de.po new file mode 100644 index 00000000..5573ce81 --- /dev/null +++ b/addons/web_unsplash/i18n/de.po @@ -0,0 +1,178 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Johannes Croe <jcr@odoo.com>, 2020 +# Chris Egal <sodaswed@web.de>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Generieren Sie Zugangsschlüssel" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Zugriffsschlüssel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Anwenden" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generieren Sie einen Zugriffsschlüssel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Fügen Sie hier Ihren Zugangsschlüssel ein" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Fügen Sie hier Ihre Anwendungs-ID ein" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Bitte überprüfen Sie Ihre Internetverbindung oder wenden Sie sich an den " +"Administrator." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Bild Feld" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Die Suche ist vorübergehend nicht verfügbar" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Etwas ist schief gelaufen" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Die maximale Anzahl von Suchanfragen wird überschritten. Bitte versuchen Sie" +" es in einer Stunde erneut oder erweitern Sie die Suche auf ein besseres " +"Konto." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Nicht autorisierter Schlüssel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Benutzer" diff --git a/addons/web_unsplash/i18n/el.po b/addons/web_unsplash/i18n/el.po new file mode 100644 index 00000000..001ca871 --- /dev/null +++ b/addons/web_unsplash/i18n/el.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Εφαρμογή" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "Κωδικός" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Χρήστες" diff --git a/addons/web_unsplash/i18n/eo.po b/addons/web_unsplash/i18n/eo.po new file mode 100644 index 00000000..ac2b36e7 --- /dev/null +++ b/addons/web_unsplash/i18n/eo.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/es.po b/addons/web_unsplash/i18n/es.po new file mode 100644 index 00000000..defb80d0 --- /dev/null +++ b/addons/web_unsplash/i18n/es.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: José Cabrera Lozano <jose.cabrera@edukative.es>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr " <i class=\"fa fa-arrow-right\"/>Generar una Clave de Acceso" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Clave de acceso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ERROR: ¡Unsplash URL Desconocido!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ERROR: URL de notificación desconocida de Unsplash!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generar una clave de acceso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "¿Cómo encontrar mi ID de aplicación Unsplash?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Pegue su clave de acceso aquí" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Pegue su ID de aplicación aquí" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Fotos (a través de Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" +"Por favor, compruebe su clave de acceso Unsplash y su ID de aplicación." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Por favor, compruebe su conexión a Internet o póngase en contacto con su " +"administrador." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Imagen de campo Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "La búsqueda no está disponible temporalmente" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Algo salió mal" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"El máximo número de búsquedas ha sido excedido. Por favor intente en una " +"hora o extienda a una cuenta mejor." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Llave no autorizada" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash requiere una clave de acceso y un ID de aplicación" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/addons/web_unsplash/i18n/es_MX.po b/addons/web_unsplash/i18n/es_MX.po new file mode 100644 index 00000000..00231556 --- /dev/null +++ b/addons/web_unsplash/i18n/es_MX.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr " <i class=\"fa fa-arrow-right\"/>Generar una clave de acceso" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Clave de acceso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ERROR: ¡Dirección URL Unsplash desconocida!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ERROR: ¡URL de notificación desconocida de Unsplash!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generar una clave de acceso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "¿Cómo encontrar mi ID de aplicación Unsplash?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Pegue su clave de acceso aquí" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Pegue su ID de aplicación aquí" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Fotos (a través de Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" +"Por favor, compruebe su clave de acceso Unsplash y su ID de aplicación." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Por favor, compruebe su conexión a internet o póngase en contacto con un " +"administrador." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Imagen de campo Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "La búsqueda no está disponible temporalmente" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Algo salió mal" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Se excedió el número máximo de búsquedas. Intente dentro de una hora o use " +"una cuenta mejor." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Clave no autorizada" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash requiere una clave de acceso y un ID de aplicación" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/addons/web_unsplash/i18n/et.po b/addons/web_unsplash/i18n/et.po new file mode 100644 index 00000000..ddce65c6 --- /dev/null +++ b/addons/web_unsplash/i18n/et.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Triine Aavik <triine@avalah.ee>, 2020 +# Martin Trigaux, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Martin Talts <martin.t@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Martin Talts <martin.t@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Kinnita" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Pildi Väli" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Kasutajad" diff --git a/addons/web_unsplash/i18n/eu.po b/addons/web_unsplash/i18n/eu.po new file mode 100644 index 00000000..cb2472d5 --- /dev/null +++ b/addons/web_unsplash/i18n/eu.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplikatu" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Erabiltzaileak" diff --git a/addons/web_unsplash/i18n/fa.po b/addons/web_unsplash/i18n/fa.po new file mode 100644 index 00000000..c7eaca04 --- /dev/null +++ b/addons/web_unsplash/i18n/fa.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> تولید یک کلید دسترسی" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "کلید دسترسی" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "اعمال" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "خطا: Unsplash URL ناشناخته!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "خطای: Unsplash اطلاع URL ناشناخته!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "تولید یک کلید دسترسی" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "چطور شناسه برنامه آن اسپلاش خود بیابیم؟" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "شناسه" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "کلید دسترسی اینجا کپی کنید" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "شناسه برنامه اینجا کپی کنید" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "تصاویر (با Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "لطفا شناسه برنامه و کلید دسترسی آن اسپلش خود چک کنید." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "لطفا ارتباط اینترنت خود را چک کنید یا با مدیر تماس بگیرید." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "تصویر فیلد کیو وب" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "جستجو فعلا در دسترس نیست" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "یک چیزی اشتباه است" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"حداکثر تعداد جستجو تمام شده است. لطفا یک ساعت بعد امتحان کنید یا به یک حسب " +"بهتر توسعه دهید." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "کلید نا معتبر" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "آن اسپلش نیاز به یک کلید دسترسی و شناسه برنامه دارد" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "کاربران" diff --git a/addons/web_unsplash/i18n/fi.po b/addons/web_unsplash/i18n/fi.po new file mode 100644 index 00000000..069db916 --- /dev/null +++ b/addons/web_unsplash/i18n/fi.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Käytä" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb kentän kuva" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Käyttäjät" diff --git a/addons/web_unsplash/i18n/fr.po b/addons/web_unsplash/i18n/fr.po new file mode 100644 index 00000000..8ac7cd73 --- /dev/null +++ b/addons/web_unsplash/i18n/fr.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Pauline Thiry <pth@odoo.com>, 2020 +# Sébastien BÜHL <buhlsebastien@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Sébastien BÜHL <buhlsebastien@gmail.com>, 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Générez une Clé d'Accès" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Clé d'accès" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Appliquer" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ERREUR : URL Unsplash inconnue !" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ERREUR : URL de notification Unsplash inconnue !" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Générer une clé d'accès" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Comment trouver mon ID d’application Unsplash ?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Copiez votre clé d'accès ici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Collez votre ID d'application ici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Photos (via Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" +"Veuillez vérifier votre clé d'accès et votre ID d'application Unsplash." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Vérifiez votre connexion Internet ou contactez votre administrateur. " + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Champ Qweb image" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "La recherche est temporairement indisponible" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Un problème est survenu" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Le nombre maximum de recherches est atteint. Merci de réessayer dans une " +"heure ou de passer au compte supérieur." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Clé non autorisée" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash demande une clé d'accès et un ID d'application" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Utilisateurs" diff --git a/addons/web_unsplash/i18n/gu.po b/addons/web_unsplash/i18n/gu.po new file mode 100644 index 00000000..cf99da45 --- /dev/null +++ b/addons/web_unsplash/i18n/gu.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "ઉમેરો" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "વપરાશકર્તાઓ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/he.po b/addons/web_unsplash/i18n/he.po new file mode 100644 index 00000000..5d47a89b --- /dev/null +++ b/addons/web_unsplash/i18n/he.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "החל" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "הצג שם" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "תעודה מזהה" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "משתמשים" diff --git a/addons/web_unsplash/i18n/hi.po b/addons/web_unsplash/i18n/hi.po new file mode 100644 index 00000000..4a77b4a1 --- /dev/null +++ b/addons/web_unsplash/i18n/hi.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/hr.po b/addons/web_unsplash/i18n/hr.po new file mode 100644 index 00000000..8fee8fee --- /dev/null +++ b/addons/web_unsplash/i18n/hr.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Tina Milas, 2020 +# Igor Krizanovic <krizanovic.igor@gmail.com>, 2020 +# Hrvoje Sić <hrvoje.sic@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Hrvoje Sić <hrvoje.sic@gmail.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Stvorite pristupni ključ" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" +" \n" +"\n" +" \n" +"Pristupni ključ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Primijeni" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Stvorite pristupni ključ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Ovdje zalijepite pristupni ključ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Polje Slika" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/addons/web_unsplash/i18n/hu.po b/addons/web_unsplash/i18n/hu.po new file mode 100644 index 00000000..07349523 --- /dev/null +++ b/addons/web_unsplash/i18n/hu.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# krnkris, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Zsolt Godó <zsolttokio@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Zsolt Godó <zsolttokio@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Alkalmaz" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "Azonosító" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Felhasználók" diff --git a/addons/web_unsplash/i18n/id.po b/addons/web_unsplash/i18n/id.po new file mode 100644 index 00000000..0418e06d --- /dev/null +++ b/addons/web_unsplash/i18n/id.po @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# pnyet <david@zeromail.us>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Terapkan" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Kolom Gambar Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Pengguna" diff --git a/addons/web_unsplash/i18n/is.po b/addons/web_unsplash/i18n/is.po new file mode 100644 index 00000000..5b6e2f99 --- /dev/null +++ b/addons/web_unsplash/i18n/is.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:33+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "Bæta við" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "Virkja" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Notendur" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/it.po b/addons/web_unsplash/i18n/it.po new file mode 100644 index 00000000..7f748c05 --- /dev/null +++ b/addons/web_unsplash/i18n/it.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Genera una chiave di accesso" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Chiave di accesso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Applica" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ERRORE: URL Unsplash sconosciuto." + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ERRORE: URL di notifica Unsplash sconosciuto." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Genera una chiave di accesso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Come trovare l'ID applicazione Unsplash" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Incolla qui la chiave di accesso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Incolla qui l'ID applicazione" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Foto (via Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Controllare la chiave di accesso e l'ID applicazione Unsplash." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Controllare la connessione internet o contattare l'amministratore." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Campo QWeb immagine" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Ricerca temporaneamente non disponibile" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Qualcosa è andato storto" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"È stato superato il numero massimo di ricerche. Riprovare tra un'ora o " +"passare a un'account superiore." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Chiave non autorizzata" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash richiede una chiave di accesso e un ID applicazione" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Utenti" diff --git a/addons/web_unsplash/i18n/ja.po b/addons/web_unsplash/i18n/ja.po new file mode 100644 index 00000000..0d633bdb --- /dev/null +++ b/addons/web_unsplash/i18n/ja.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Tim Siu Lai <tl@roomsfor.hk>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> アクセスキーを生成" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "アクセスキー" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "適用" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "アクセスキーを生成" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb項目イメージ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "ユーザ" diff --git a/addons/web_unsplash/i18n/ka.po b/addons/web_unsplash/i18n/ka.po new file mode 100644 index 00000000..73932d1c --- /dev/null +++ b/addons/web_unsplash/i18n/ka.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "გააქტიურება" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "მომხმარებლები" diff --git a/addons/web_unsplash/i18n/km.po b/addons/web_unsplash/i18n/km.po new file mode 100644 index 00000000..c868b0a5 --- /dev/null +++ b/addons/web_unsplash/i18n/km.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "បន្ថែម" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "កំណត់យក" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "អ្នកប្រើ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/ko.po b/addons/web_unsplash/i18n/ko.po new file mode 100644 index 00000000..d008c70c --- /dev/null +++ b/addons/web_unsplash/i18n/ko.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> 액세스 키 생성" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "액세스 키" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "적용" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "오류 : 알 수 없는 Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "오류 : 알 수 없는 Unsplash 알림 URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "액세스 키 생성" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Unsplash 응용 프로그램 ID를 찾는 방법은?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "여기에 액세스 키 붙여넣기" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "여기에 응용 프로그램 ID 붙여넣기" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Unsplash 액세스 키 및 응용 프로그램 ID를 확인하십시오." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "인터넷 연결을 확인하거나 관리자에게 문의하십시오." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb 이미지 필드" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "검색을 일시적으로 사용할 수 없습니다" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "문제가 발생했습니다" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "최대 검색 횟수를 초과했습니다. 한 시간 후에 다시 시도하거나 더 나은 계정으로 확장하십시오." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "승인되지 않은 키" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash에는 액세스 키와 응용 프로그램 ID가 필요합니다" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "사용자" diff --git a/addons/web_unsplash/i18n/lb.po b/addons/web_unsplash/i18n/lb.po new file mode 100644 index 00000000..b0bdc9e0 --- /dev/null +++ b/addons/web_unsplash/i18n/lb.po @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:57 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:86 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:34 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:52 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:56 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:54 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:84 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:93 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:17 +#, python-format +msgid "Search among my images for:" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:21 +#, python-format +msgid "Search from Unsplash for:" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:90 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:81 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/lt.po b/addons/web_unsplash/i18n/lt.po new file mode 100644 index 00000000..fdb4741a --- /dev/null +++ b/addons/web_unsplash/i18n/lt.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Generuoti prieigos raktą" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Prieigos raktas" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Taikyti" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generuoti prieigos raktą" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Čia įdėkite savo prieigos raktą" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "QWEB lauko paveikslėlis" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Vartotojai" diff --git a/addons/web_unsplash/i18n/lv.po b/addons/web_unsplash/i18n/lv.po new file mode 100644 index 00000000..35e3d60f --- /dev/null +++ b/addons/web_unsplash/i18n/lv.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/mn.po b/addons/web_unsplash/i18n/mn.po new file mode 100644 index 00000000..53c34b44 --- /dev/null +++ b/addons/web_unsplash/i18n/mn.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Хэрэгжүүлэх" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb талбарын зураг" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" diff --git a/addons/web_unsplash/i18n/nb.po b/addons/web_unsplash/i18n/nb.po new file mode 100644 index 00000000..3f9b6433 --- /dev/null +++ b/addons/web_unsplash/i18n/nb.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Bruk" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Felt-bilde" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Brukere" diff --git a/addons/web_unsplash/i18n/nl.po b/addons/web_unsplash/i18n/nl.po new file mode 100644 index 00000000..81dcd322 --- /dev/null +++ b/addons/web_unsplash/i18n/nl.po @@ -0,0 +1,177 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Cas Vissers <casvissers@brahoo.nl>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Genereer een toegangssleutel" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Toegangssleutel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Toepassen" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "FOUT: onbekende Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "FOUT: onbekende Unsplash notify URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Genereer een toegangssleutel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Hoe vind ik mijn Unsplash Application ID?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Plak uw sleutel hier" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Plak uw applicatie ID hier" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Foto's (via Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Controleer uw Unsplash access key en application ID." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"U dient uw internetverbinding te controleren of uw administrator te " +"contacteren." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb veld afbeelding" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Zoeken is tijdelijk onbeschikbaar" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Er is iets misgegaan" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Het maximale aantal van zoekacties is bereikt. Probeer het over een uur " +"opnieuw of breid uw zoekactie uit." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Ongeautoriseerde sleutel" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash heeft een access key en een application ID nodig" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/addons/web_unsplash/i18n/pl.po b/addons/web_unsplash/i18n/pl.po new file mode 100644 index 00000000..9e852a56 --- /dev/null +++ b/addons/web_unsplash/i18n/pl.po @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Karol Rybak <karolrybak85@gmail.com>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Wygeneruj klucz dostępu" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Klucz dostępu" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Zastosuj" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Wklej tutaj swój klucz dostępu" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Obraz pola Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Coś poszło nie tak" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Użytkownicy" diff --git a/addons/web_unsplash/i18n/pt.po b/addons/web_unsplash/i18n/pt.po new file mode 100644 index 00000000..332c1032 --- /dev/null +++ b/addons/web_unsplash/i18n/pt.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Gerar Chave de acesso " + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Chave de acesso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "gerar chave de acesso" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Colar chave de acesso " + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Utilizadores" diff --git a/addons/web_unsplash/i18n/pt_BR.po b/addons/web_unsplash/i18n/pt_BR.po new file mode 100644 index 00000000..1d5cd323 --- /dev/null +++ b/addons/web_unsplash/i18n/pt_BR.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Keli Brugalli <kbr@odoo.com>, 2020 +# PopSolutions Cooperativa Digital <popsolutions.co@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: PopSolutions Cooperativa Digital <popsolutions.co@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplicar" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Field Image" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Usuários" diff --git a/addons/web_unsplash/i18n/ro.po b/addons/web_unsplash/i18n/ro.po new file mode 100644 index 00000000..10889ab8 --- /dev/null +++ b/addons/web_unsplash/i18n/ro.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Dan Stoica <danila@terrabit.ro>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Hongu Cosmin <cosmin513@gmail.com>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Generați o cheie de acces" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Cheie Acces" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Aplică" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Generați o cheie de acces" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Lipiți cheia de acces aici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Lipiți ID-ul cererii aici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Vă rugăm să verificați conexiunea la internet sau să contactați " +"administratorul." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Imagine Câmp Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Căutarea este temporar indisponibilă" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Ceva n-a mers bine" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Numărul maxim de căutări este depășit. Încercați din nou într-o oră sau " +"extindeți-vă la un cont mai bun." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Cheie neautorizată" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Utilizatori" diff --git a/addons/web_unsplash/i18n/ru.po b/addons/web_unsplash/i18n/ru.po new file mode 100644 index 00000000..d44b3968 --- /dev/null +++ b/addons/web_unsplash/i18n/ru.po @@ -0,0 +1,178 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Сергей Шебанин <sergey@shebanin.ru>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Сергей Шебанин <sergey@shebanin.ru>, 2021\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Создать ключ доступа</i>" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Ключ доступа" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Применить" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ОШИБКА: Неизвестное Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ОШИБКА: Неизвестное сообщение Unsplash URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Создать ключ доступа" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Как найти мой ID приложения Unsplash?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "Идентификатор" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Вставьте ваш ключ доступа здесь" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Вставьте ваш ID приложения здесь" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "Фото (из Unsplash)" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Проверьте ключ доступа и ID программы Unsplash." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Проверьте подключение к интернету или обратитесь к администратору." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Изображение поля Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Поиск временно недоступен" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Что-то пошло не так" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Превышен максимальное количество поисков. Повторите попытку через час или " +"расширьте свой аккаунт." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Незарегистрированный ключ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash требует ключ доступа и ID программы" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Пользователи" diff --git a/addons/web_unsplash/i18n/si.po b/addons/web_unsplash/i18n/si.po new file mode 100644 index 00000000..465c5166 --- /dev/null +++ b/addons/web_unsplash/i18n/si.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/sk.po b/addons/web_unsplash/i18n/sk.po new file mode 100644 index 00000000..5b97f7bd --- /dev/null +++ b/addons/web_unsplash/i18n/sk.po @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Vytvoriť prístupový kľúč" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Prístupový kľúč" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Použiť" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "CHYBA: Neznáma Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Vytvoriť prístupový kľúč" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Vložte svoj prístupový kľúč" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Vložte svoje ID aplikácie" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Skontrolujte vaše internetové pripojenie alebo kontaktujte administrátora." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb pole obrázok" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Hľadanie dočasne nedostupné" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Niečo sa pokazilo" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Užívatelia" diff --git a/addons/web_unsplash/i18n/sl.po b/addons/web_unsplash/i18n/sl.po new file mode 100644 index 00000000..44639c93 --- /dev/null +++ b/addons/web_unsplash/i18n/sl.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Ustvari dostopni ključ" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Ključ za dostop" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Uporabi" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Ustvari dostopni ključ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Uporabniki" diff --git a/addons/web_unsplash/i18n/sr.po b/addons/web_unsplash/i18n/sr.po new file mode 100644 index 00000000..67c4294e --- /dev/null +++ b/addons/web_unsplash/i18n/sr.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "Dodaj" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "" diff --git a/addons/web_unsplash/i18n/sv.po b/addons/web_unsplash/i18n/sv.po new file mode 100644 index 00000000..eba62ea7 --- /dev/null +++ b/addons/web_unsplash/i18n/sv.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Chrille Hedberg <hedberg.chrille@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Chrille Hedberg <hedberg.chrille@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Verkställ" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Användare" diff --git a/addons/web_unsplash/i18n/th.po b/addons/web_unsplash/i18n/th.po new file mode 100644 index 00000000..1b8c84e2 --- /dev/null +++ b/addons/web_unsplash/i18n/th.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# Somchart Jabsung <jabsung.s@gmail.com>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:33+0000\n" +"Last-Translator: Somchart Jabsung <jabsung.s@gmail.com>, 2018\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:36 +#, python-format +msgid "Access key is not set" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:66 +#, python-format +msgid "Add" +msgstr "เพิ่ม" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:44 +#, python-format +msgid "Apply" +msgstr "นำไปใช้" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:40 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:43 +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:65 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:27 +#, python-format +msgid "Photos not found" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:61 +#, python-format +msgid "Please check your unsplash api key." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:8 +#, python-format +msgid "Search from Unsplash" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:50 +#, python-format +msgid "Search is temporary unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:58 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "ผู้ใช้งาน" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7 +#, python-format +msgid "— or —" +msgstr "— หรือ —" diff --git a/addons/web_unsplash/i18n/tr.po b/addons/web_unsplash/i18n/tr.po new file mode 100644 index 00000000..c58fd93b --- /dev/null +++ b/addons/web_unsplash/i18n/tr.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Erdinç Akın, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Murat Durmuş <muratd@projetgrup.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Murat Durmuş <muratd@projetgrup.com>, 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/>Bir Erişim Anahtarı Oluşturun" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Erişim anahtarı" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Uygula" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "HATA: Bilinmeyen Unsplash URL'si!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "HATA: Bilinmeyen Unsplash URL'sini bildir!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Bir erişim anahtarı oluşturun" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Unsplash Uygulama Kimliğimi nasıl bulabilirim?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Erişim anahtarınızı buraya yapıştırın" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Uygulama kimliğinizi buraya yapıştırın" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" +"Lütfen Unsplash erişim anahtarınızı ve uygulama kimliğinizi kontrol edin." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Lütfen internet bağlantınızı kontrol edin veya yöneticinize başvurun." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb Görsel Alanı" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Arama geçici olarak kullanılamıyor" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Bir şeyler yanlış gitti" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Maksimum arama sayısı aşıldı. Lütfen bir saat içinde tekrar deneyin veya " +"daha iyi bir hesaba uzatın." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Yetkisiz Anahtar" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash, bir erişim anahtarı ve bir uygulama kimliği gerektirir" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Kullanıcılar" diff --git a/addons/web_unsplash/i18n/uk.po b/addons/web_unsplash/i18n/uk.po new file mode 100644 index 00000000..75d86cfe --- /dev/null +++ b/addons/web_unsplash/i18n/uk.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Створити ключ доступу" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Ключ доступу" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Застосувати" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "ПОМИЛКА: Невідома Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "ПОМИЛКА: Невідоме сповіщення Unsplash URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Створити ключ доступу" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Як знайти мій ID додатку Unsplash?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Вставте ваш ключ доступу тут" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Вставте ваш ID додатку тут" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Перевірте ключ доступу та ID додатку Unsplash." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "Перевірте підключення до інтернету або зверніться до адміністратора." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Зображення поля Qweb " + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Пошук тимчасово недоступний" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Щось пішло не так" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Перевищено максимальну кількість пошуків. Повторіть спробу через годину або " +"розширте свій обліковий запис." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Незареєстрований ключ" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash вимагає ключ доступу та ID програми" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Користувачі" diff --git a/addons/web_unsplash/i18n/ur.po b/addons/web_unsplash/i18n/ur.po new file mode 100644 index 00000000..eff75d69 --- /dev/null +++ b/addons/web_unsplash/i18n/ur.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/vi.po b/addons/web_unsplash/i18n/vi.po new file mode 100644 index 00000000..a50bb664 --- /dev/null +++ b/addons/web_unsplash/i18n/vi.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> Tạo khóa truy cập" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "Khóa truy cập" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "Áp dụng" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "LRI: URL không xác định!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "LRI: URL thông báo Unsplash không xác định!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "Tạo khóa truy cập" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "Làm cách nào để tìm ID Unsplash của tôi?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "Dán khóa truy cập ở đây" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "Dán ID của bạn tại đây" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "Vui lòng kiểm tra khóa truy cập của bạn và ID." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" +"Vui lòng kiểm tra kết nối internet của bạn hoặc liên hệ với quản trị viên." + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Trường ảnh Qweb" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "Chức năng tìm kiếm tạm thời không khả dụng" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "Đã xảy ra lỗi" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" +"Số lượng tìm kiếm đã vượt quá giới hạn. Vui lòng thử lại trong một giờ hoặc " +"mở rộng đến một tài khoản tốt hơn." + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "Khóa trái phép" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash yêu cầu khóa truy cập và ID" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "Người dùng" diff --git a/addons/web_unsplash/i18n/web_unsplash.pot b/addons/web_unsplash/i18n/web_unsplash.pot new file mode 100644 index 00000000..c6af07ab --- /dev/null +++ b/addons/web_unsplash/i18n/web_unsplash.pot @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-29 13:46+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/web_unsplash/i18n/zh_CN.po b/addons/web_unsplash/i18n/zh_CN.po new file mode 100644 index 00000000..9dd81ee6 --- /dev/null +++ b/addons/web_unsplash/i18n/zh_CN.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# snow wang <147156565@qq.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> 生成访问密钥" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "访问秘钥" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "应用" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "错误: 未知 Unsplash URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "错误: 未知 Unsplash 通知URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "生成访问密钥" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "如何找到我的 Unsplash 应用 ID?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "在此粘贴您的访问密钥" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "将您的应用ID粘贴至此处" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "请检查您的 Unsplash 访问密钥及应用ID。" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "请检查你的互联网连接或联系管理员。" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb图像字段" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "搜索功能暂时不可用" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "出了问题" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "超过最大搜索次数。请在一小时内重试,或扩展到一个更高级的账户。" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "未认证密钥" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "Unsplash 需要访问密钥及应用ID" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "用户" diff --git a/addons/web_unsplash/i18n/zh_TW.po b/addons/web_unsplash/i18n/zh_TW.po new file mode 100644 index 00000000..c50bd7bd --- /dev/null +++ b/addons/web_unsplash/i18n/zh_TW.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_unsplash +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-29 13:46+0000\n" +"PO-Revision-Date: 2020-09-07 08:20+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: web_unsplash +#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form +msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key" +msgstr "<i class=\"fa fa-arrow-right\"/> 生成訪問密鑰" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key +msgid "Access Key" +msgstr "訪問秘鑰" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Apply" +msgstr "應用" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash URL!" +msgstr "錯誤:未知取消初始 URL!" + +#. module: web_unsplash +#: code:addons/web_unsplash/controllers/main.py:0 +#, python-format +msgid "ERROR: Unknown Unsplash notify URL!" +msgstr "錯誤: 未知取消初始通知 URL!" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Generate an access key" +msgstr "產生一個訪問密鑰" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "How to find my Unsplash Application ID?" +msgstr "如何查找我的取消初始應用程式 ID?" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__id +#: model:ir.model.fields,field_description:web_unsplash.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: web_unsplash +#: model:ir.model.fields,field_description:web_unsplash.field_ir_qweb_field_image____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:web_unsplash.field_res_users____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your access key here" +msgstr "貼上您的訪問密鑰在這裡" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Paste your application ID here" +msgstr "在此處粘貼應用程式 ID" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Photos (via Unsplash)" +msgstr "" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your Unsplash access key and application ID." +msgstr "請檢查您的取消初始訪問金鑰和應用程式 ID。" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Please check your internet connection or contact administrator." +msgstr "請檢查您的網路連接或聯繫管理員。" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image +msgid "Qweb Field Image" +msgstr "Qweb圖像字段" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Search is temporarily unavailable" +msgstr "搜索暫時不可用" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Something went wrong" +msgstr "出了問題" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "" +"The max number of searches is exceeded. Please retry in an hour or extend to" +" a better account." +msgstr "超過最大搜尋次數。請在一小時內重試,或擴展到一個更高級的帳戶。" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unauthorized Key" +msgstr "未認證密鑰" + +#. module: web_unsplash +#. openerp-web +#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:0 +#, python-format +msgid "Unsplash requires an access key and an application ID" +msgstr "取消初始應用需要訪問金鑰和應用程式 ID" + +#. module: web_unsplash +#: model:ir.model,name:web_unsplash.model_res_users +msgid "Users" +msgstr "使用者" diff --git a/addons/web_unsplash/models/__init__.py b/addons/web_unsplash/models/__init__.py new file mode 100644 index 00000000..ffce8229 --- /dev/null +++ b/addons/web_unsplash/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import res_config_settings +from . import res_users +from . import ir_qweb diff --git a/addons/web_unsplash/models/ir_qweb.py b/addons/web_unsplash/models/ir_qweb.py new file mode 100644 index 00000000..9b0f60a4 --- /dev/null +++ b/addons/web_unsplash/models/ir_qweb.py @@ -0,0 +1,30 @@ +from werkzeug import urls + +from odoo import models, api + + +class Image(models.AbstractModel): + _inherit = 'ir.qweb.field.image' + + @api.model + def from_html(self, model, field, element): + if element.find('.//img') is None: + return False + url = element.find('.//img').get('src') + url_object = urls.url_parse(url) + + if url_object.path.startswith('/unsplash/'): + res_id = element.get('data-oe-id') + if res_id: + res_id = int(res_id) + res_model = model._name + attachment = self.env['ir.attachment'].search([ + '&', '|', '&', + ('res_model', '=', res_model), + ('res_id', '=', res_id), + ('public', '=', True), + ('url', '=', url_object.path), + ], limit=1) + return attachment.datas + + return super(Image, self).from_html(model, field, element) diff --git a/addons/web_unsplash/models/res_config_settings.py b/addons/web_unsplash/models/res_config_settings.py new file mode 100644 index 00000000..2eca06a5 --- /dev/null +++ b/addons/web_unsplash/models/res_config_settings.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + unsplash_access_key = fields.Char("Access Key", config_parameter='unsplash.access_key') diff --git a/addons/web_unsplash/models/res_users.py b/addons/web_unsplash/models/res_users.py new file mode 100644 index 00000000..375a0ce3 --- /dev/null +++ b/addons/web_unsplash/models/res_users.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import api, models + + +class ResUsers(models.Model): + _inherit = 'res.users' + + def _has_unsplash_key_rights(self): + self.ensure_one() + return self.has_group('base.group_erp_manager') diff --git a/addons/web_unsplash/static/description/icon.png b/addons/web_unsplash/static/description/icon.png Binary files differnew file mode 100644 index 00000000..54f5c717 --- /dev/null +++ b/addons/web_unsplash/static/description/icon.png diff --git a/addons/web_unsplash/static/description/icon.svg b/addons/web_unsplash/static/description/icon.svg new file mode 100644 index 00000000..09999b47 --- /dev/null +++ b/addons/web_unsplash/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#7CC098"/><stop offset="100%" stop-color="#5F8A71"/></linearGradient><path id="d" d="M35 24c1.653 0 3.066.538 4.24 1.614C40.413 26.69 41 27.985 41 29.5c0 1.515-.587 2.81-1.76 3.886C38.066 34.462 36.653 35 35 35s-3.066-.538-4.24-1.614C29.587 32.31 29 31.015 29 29.5c0-1.515.587-2.81 1.76-3.886C31.934 24.538 33.347 24 35 24zm11.733-5.154c1.178 0 2.184.376 3.017 1.127.833.751 1.25 1.658 1.25 2.72v13.46c0 1.063-.417 1.969-1.25 2.72-.833.751-1.839 1.127-3.017 1.127H23.267c-1.178 0-2.184-.376-3.017-1.127-.833-.751-1.25-1.657-1.25-2.72v-13.46c0-1.062.417-1.969 1.25-2.72.833-.751 1.839-1.127 3.017-1.127H27l.85-2.043c.211-.49.597-.914 1.158-1.27.561-.355 1.136-.533 1.725-.533h8.534c.589 0 1.164.178 1.725.533.56.356.947.78 1.158 1.27l.85 2.043h3.733zM35 37c2.202 0 4.086-.734 5.652-2.201C42.217 33.33 43 31.565 43 29.5c0-2.065-.783-3.83-2.348-5.299C39.086 22.734 37.202 22 35 22s-4.086.734-5.652 2.201C27.783 25.67 27 27.435 27 29.5c0 2.065.783 3.83 2.348 5.299C30.914 36.266 32.798 37 35 37zM19.699 50.884c0 1.063-.297 1.853-.891 2.37-.594.518-1.415.776-2.464.776-1.063 0-1.886-.257-2.47-.77-.583-.513-.874-1.305-.874-2.376V46h1.727v4.884c0 .213.018.422.055.627.037.205.114.387.231.544.117.158.28.286.49.386.209.099.489.148.841.148.616 0 1.041-.137 1.276-.413.235-.275.352-.705.352-1.292V46h1.727v4.884zm.956-2.717h1.485v.792h.033c.198-.33.454-.57.77-.72.315-.15.638-.226.968-.226.418 0 .76.057 1.028.17.268.114.479.272.633.474.154.201.262.447.324.737.063.29.094.61.094.962v3.498h-1.562v-3.212c0-.47-.074-.82-.22-1.05-.147-.232-.407-.347-.781-.347-.426 0-.734.126-.924.38-.191.253-.286.669-.286 1.248v2.981h-1.562v-5.687zm7.368 3.839a.857.857 0 0 0 .374.731c.11.078.237.134.38.171a1.67 1.67 0 0 0 .792.017c.12-.026.23-.066.33-.122a.75.75 0 0 0 .247-.22.578.578 0 0 0 .1-.346c0-.235-.156-.41-.468-.528a9.336 9.336 0 0 0-1.304-.352 7.71 7.71 0 0 1-.665-.181 2.274 2.274 0 0 1-.578-.276 1.337 1.337 0 0 1-.407-.428 1.216 1.216 0 0 1-.154-.633c0-.367.072-.667.215-.902.143-.235.332-.42.566-.555.235-.136.5-.231.792-.286.294-.056.594-.083.902-.083.308 0 .607.03.897.088.29.059.548.158.775.297.228.14.417.324.567.555.15.232.24.523.27.875h-1.486c-.022-.3-.135-.504-.34-.61a1.559 1.559 0 0 0-.727-.16c-.088 0-.183.005-.286.017a.955.955 0 0 0-.28.071.578.578 0 0 0-.215.16.421.421 0 0 0-.088.28c0 .14.052.253.154.341.103.088.237.16.402.215.165.055.354.104.566.148.213.044.43.092.65.143.227.051.449.114.665.187.216.073.409.17.577.291.17.122.305.272.407.451.103.18.154.402.154.666 0 .374-.075.687-.225.94-.15.254-.347.457-.589.611a2.412 2.412 0 0 1-.83.325 4.84 4.84 0 0 1-1.92-.006 2.555 2.555 0 0 1-.841-.33 1.887 1.887 0 0 1-.605-.61c-.158-.254-.244-.57-.259-.952h1.485zm7.204.825c.257 0 .471-.051.644-.154.172-.103.311-.236.418-.401.106-.166.181-.358.225-.578.044-.22.066-.444.066-.671a3.16 3.16 0 0 0-.071-.671 1.786 1.786 0 0 0-.237-.589 1.317 1.317 0 0 0-.423-.418 1.183 1.183 0 0 0-.633-.159c-.257 0-.471.053-.643.16a1.284 1.284 0 0 0-.418.412 1.712 1.712 0 0 0-.226.583 3.47 3.47 0 0 0-.066.682c0 .227.024.451.072.671.047.22.124.412.23.578.107.165.248.298.424.401.176.103.389.154.638.154zm-2.87-4.664h1.484v.726h.022c.19-.308.433-.532.726-.671.293-.14.616-.209.968-.209.447 0 .832.084 1.155.253.323.169.59.392.803.671.213.279.37.603.473.974.103.37.154.757.154 1.16 0 .381-.051.748-.154 1.1a2.8 2.8 0 0 1-.467.935c-.21.271-.47.488-.781.649-.312.161-.677.242-1.095.242-.352 0-.676-.071-.973-.215a1.843 1.843 0 0 1-.732-.632h-.022v2.695h-1.562v-7.678zm6.4-2.167h1.562v7.854h-1.562V46zm2.364 3.916c.022-.367.113-.671.275-.913.16-.242.366-.436.616-.583.249-.147.53-.251.841-.314.312-.062.625-.093.94-.093.287 0 .576.02.87.06.293.04.56.12.803.237.242.117.44.28.594.49.154.209.23.485.23.83v2.959c0 .257.015.502.045.737.029.235.08.41.154.528h-1.584a2.241 2.241 0 0 1-.11-.55c-.25.257-.543.436-.88.539a3.532 3.532 0 0 1-1.034.154c-.272 0-.525-.033-.76-.099a1.738 1.738 0 0 1-.615-.308 1.434 1.434 0 0 1-.413-.528 1.785 1.785 0 0 1-.148-.759c0-.323.056-.588.17-.797.114-.21.26-.376.44-.501s.385-.218.616-.28c.231-.063.464-.112.699-.149.234-.037.465-.066.693-.088.227-.022.429-.055.605-.099.176-.044.315-.108.418-.193.102-.084.15-.207.143-.368a.829.829 0 0 0-.083-.402.607.607 0 0 0-.22-.23.865.865 0 0 0-.319-.11 2.61 2.61 0 0 0-.39-.028c-.308 0-.55.066-.726.198-.176.132-.28.352-.308.66H41.12zm3.608 1.155a.7.7 0 0 1-.248.138c-.099.033-.205.06-.319.082-.114.022-.233.04-.357.055-.125.015-.25.033-.374.055a2.82 2.82 0 0 0-.347.088 1.024 1.024 0 0 0-.297.149.706.706 0 0 0-.203.236.76.76 0 0 0-.077.363c0 .14.025.257.077.352a.59.59 0 0 0 .209.226c.088.055.19.093.308.115.117.022.238.033.363.033.308 0 .546-.051.715-.154a1.03 1.03 0 0 0 .374-.368c.08-.144.13-.288.148-.435.018-.147.028-.264.028-.352v-.583zm3.617.935a.857.857 0 0 0 .374.731c.11.078.237.134.38.171a1.67 1.67 0 0 0 .792.017c.12-.026.23-.066.33-.122a.75.75 0 0 0 .247-.22.578.578 0 0 0 .1-.346c0-.235-.157-.41-.468-.528a9.336 9.336 0 0 0-1.304-.352 7.71 7.71 0 0 1-.665-.181 2.274 2.274 0 0 1-.578-.276 1.337 1.337 0 0 1-.407-.428 1.216 1.216 0 0 1-.154-.633c0-.367.072-.667.215-.902.143-.235.332-.42.566-.555.235-.136.499-.231.792-.286.294-.056.594-.083.902-.083.308 0 .607.03.897.088.29.059.548.158.775.297.228.14.416.324.567.555.15.232.24.523.27.875H50.49c-.022-.3-.135-.504-.34-.61a1.559 1.559 0 0 0-.727-.16c-.088 0-.183.005-.286.017a.955.955 0 0 0-.28.071.578.578 0 0 0-.215.16.421.421 0 0 0-.088.28c0 .14.052.253.154.341.103.088.237.16.402.215.165.055.354.104.566.148.213.044.43.092.65.143.227.051.448.114.665.187.216.073.409.17.577.291.169.122.305.272.407.451.103.18.154.402.154.666 0 .374-.075.687-.225.94-.15.254-.347.457-.589.611a2.412 2.412 0 0 1-.83.325 4.84 4.84 0 0 1-1.92-.006 2.555 2.555 0 0 1-.841-.33 1.887 1.887 0 0 1-.605-.61c-.158-.254-.244-.57-.259-.952h1.485zM52.68 46h1.562v2.959h.033c.198-.33.451-.57.759-.72.308-.15.609-.226.902-.226.418 0 .76.057 1.028.17.268.114.479.272.633.474.154.201.262.447.324.737.063.29.094.61.094.962v3.498h-1.562v-3.212c0-.47-.073-.82-.22-1.05-.147-.232-.407-.347-.781-.347-.425 0-.733.126-.924.38-.19.253-.286.669-.286 1.248v2.981h-1.562V46zM14.036 57.642H13V57h2.833v.642h-1.037v2.832h-.76v-2.832zM16 57h1.07l.809 2.389h.01L18.652 57h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438H16V57z"/><path id="e" d="M35 22c1.653 0 3.066.538 4.24 1.614C40.413 24.69 41 25.985 41 27.5c0 1.515-.587 2.81-1.76 3.886C38.066 32.462 36.653 33 35 33s-3.066-.538-4.24-1.614C29.587 30.31 29 29.015 29 27.5c0-1.515.587-2.81 1.76-3.886C31.934 22.538 33.347 22 35 22zm11.733-5.154c1.178 0 2.184.376 3.017 1.127.833.751 1.25 1.658 1.25 2.72v13.46c0 1.063-.417 1.969-1.25 2.72-.833.751-1.839 1.127-3.017 1.127H23.267c-1.178 0-2.184-.376-3.017-1.127-.833-.751-1.25-1.657-1.25-2.72v-13.46c0-1.062.417-1.969 1.25-2.72.833-.751 1.839-1.127 3.017-1.127H27l.85-2.043c.211-.49.597-.914 1.158-1.27.561-.355 1.136-.533 1.725-.533h8.534c.589 0 1.164.178 1.725.533.56.356.947.78 1.158 1.27l.85 2.043h3.733zM35 35c2.202 0 4.086-.734 5.652-2.201C42.217 31.33 43 29.565 43 27.5c0-2.065-.783-3.83-2.348-5.299C39.086 20.734 37.202 20 35 20s-4.086.734-5.652 2.201C27.783 23.67 27 25.435 27 27.5c0 2.065.783 3.83 2.348 5.299C30.914 34.266 32.798 35 35 35zM19.699 48.884c0 1.063-.297 1.853-.891 2.37-.594.518-1.415.776-2.464.776-1.063 0-1.886-.257-2.47-.77-.583-.513-.874-1.305-.874-2.376V44h1.727v4.884c0 .213.018.422.055.627.037.205.114.387.231.544.117.158.28.286.49.386.209.099.489.148.841.148.616 0 1.041-.137 1.276-.413.235-.275.352-.705.352-1.292V44h1.727v4.884zm.956-2.717h1.485v.792h.033c.198-.33.454-.57.77-.72.315-.15.638-.226.968-.226.418 0 .76.057 1.028.17.268.114.479.272.633.474.154.201.262.447.324.737.063.29.094.61.094.962v3.498h-1.562v-3.212c0-.47-.074-.82-.22-1.05-.147-.232-.407-.347-.781-.347-.426 0-.734.126-.924.38-.191.253-.286.669-.286 1.248v2.981h-1.562v-5.687zm7.368 3.839a.857.857 0 0 0 .374.731c.11.078.237.134.38.171a1.67 1.67 0 0 0 .792.017c.12-.026.23-.066.33-.122a.75.75 0 0 0 .247-.22.578.578 0 0 0 .1-.346c0-.235-.156-.41-.468-.528a9.336 9.336 0 0 0-1.304-.352 7.71 7.71 0 0 1-.665-.181 2.274 2.274 0 0 1-.578-.276 1.337 1.337 0 0 1-.407-.428 1.216 1.216 0 0 1-.154-.633c0-.367.072-.667.215-.902.143-.235.332-.42.566-.555.235-.136.5-.231.792-.286.294-.056.594-.083.902-.083.308 0 .607.03.897.088.29.059.548.158.775.297.228.14.417.324.567.555.15.232.24.523.27.875h-1.486c-.022-.3-.135-.504-.34-.61a1.559 1.559 0 0 0-.727-.16c-.088 0-.183.005-.286.017a.955.955 0 0 0-.28.071.578.578 0 0 0-.215.16.421.421 0 0 0-.088.28c0 .14.052.253.154.341.103.088.237.16.402.215.165.055.354.104.566.148.213.044.43.092.65.143.227.051.449.114.665.187.216.073.409.17.577.291.17.122.305.272.407.451.103.18.154.402.154.666 0 .374-.075.687-.225.94-.15.254-.347.457-.589.611a2.412 2.412 0 0 1-.83.325 4.84 4.84 0 0 1-1.92-.006 2.555 2.555 0 0 1-.841-.33 1.887 1.887 0 0 1-.605-.61c-.158-.254-.244-.57-.259-.952h1.485zm7.204.825c.257 0 .471-.051.644-.154.172-.103.311-.236.418-.401.106-.166.181-.358.225-.578.044-.22.066-.444.066-.671a3.16 3.16 0 0 0-.071-.671 1.786 1.786 0 0 0-.237-.589 1.317 1.317 0 0 0-.423-.418 1.183 1.183 0 0 0-.633-.159c-.257 0-.471.053-.643.16a1.284 1.284 0 0 0-.418.412 1.712 1.712 0 0 0-.226.583 3.47 3.47 0 0 0-.066.682c0 .227.024.451.072.671.047.22.124.412.23.578.107.165.248.298.424.401.176.103.389.154.638.154zm-2.87-4.664h1.484v.726h.022c.19-.308.433-.532.726-.671.293-.14.616-.209.968-.209.447 0 .832.084 1.155.253.323.169.59.392.803.671.213.279.37.603.473.974.103.37.154.757.154 1.16 0 .381-.051.748-.154 1.1a2.8 2.8 0 0 1-.467.935c-.21.271-.47.488-.781.649-.312.161-.677.242-1.095.242-.352 0-.676-.071-.973-.215a1.843 1.843 0 0 1-.732-.632h-.022v2.695h-1.562v-7.678zm6.4-2.167h1.562v7.854h-1.562V44zm2.364 3.916c.022-.367.113-.671.275-.913.16-.242.366-.436.616-.583.249-.147.53-.251.841-.314.312-.062.625-.093.94-.093.287 0 .576.02.87.06.293.04.56.12.803.237.242.117.44.28.594.49.154.209.23.485.23.83v2.959c0 .257.015.502.045.737.029.235.08.41.154.528h-1.584a2.241 2.241 0 0 1-.11-.55c-.25.257-.543.436-.88.539a3.532 3.532 0 0 1-1.034.154c-.272 0-.525-.033-.76-.099a1.738 1.738 0 0 1-.615-.308 1.434 1.434 0 0 1-.413-.528 1.785 1.785 0 0 1-.148-.759c0-.323.056-.588.17-.797.114-.21.26-.376.44-.501s.385-.218.616-.28c.231-.063.464-.112.699-.149.234-.037.465-.066.693-.088.227-.022.429-.055.605-.099.176-.044.315-.108.418-.193.102-.084.15-.207.143-.368a.829.829 0 0 0-.083-.402.607.607 0 0 0-.22-.23.865.865 0 0 0-.319-.11 2.61 2.61 0 0 0-.39-.028c-.308 0-.55.066-.726.198-.176.132-.28.352-.308.66H41.12zm3.608 1.155a.7.7 0 0 1-.248.138c-.099.033-.205.06-.319.082-.114.022-.233.04-.357.055-.125.015-.25.033-.374.055a2.82 2.82 0 0 0-.347.088 1.024 1.024 0 0 0-.297.149.706.706 0 0 0-.203.236.76.76 0 0 0-.077.363c0 .14.025.257.077.352a.59.59 0 0 0 .209.226c.088.055.19.093.308.115.117.022.238.033.363.033.308 0 .546-.051.715-.154a1.03 1.03 0 0 0 .374-.368c.08-.144.13-.288.148-.435.018-.147.028-.264.028-.352v-.583zm3.617.935a.857.857 0 0 0 .374.731c.11.078.237.134.38.171a1.67 1.67 0 0 0 .792.017c.12-.026.23-.066.33-.122a.75.75 0 0 0 .247-.22.578.578 0 0 0 .1-.346c0-.235-.157-.41-.468-.528a9.336 9.336 0 0 0-1.304-.352 7.71 7.71 0 0 1-.665-.181 2.274 2.274 0 0 1-.578-.276 1.337 1.337 0 0 1-.407-.428 1.216 1.216 0 0 1-.154-.633c0-.367.072-.667.215-.902.143-.235.332-.42.566-.555.235-.136.499-.231.792-.286.294-.056.594-.083.902-.083.308 0 .607.03.897.088.29.059.548.158.775.297.228.14.416.324.567.555.15.232.24.523.27.875H50.49c-.022-.3-.135-.504-.34-.61a1.559 1.559 0 0 0-.727-.16c-.088 0-.183.005-.286.017a.955.955 0 0 0-.28.071.578.578 0 0 0-.215.16.421.421 0 0 0-.088.28c0 .14.052.253.154.341.103.088.237.16.402.215.165.055.354.104.566.148.213.044.43.092.65.143.227.051.448.114.665.187.216.073.409.17.577.291.169.122.305.272.407.451.103.18.154.402.154.666 0 .374-.075.687-.225.94-.15.254-.347.457-.589.611a2.412 2.412 0 0 1-.83.325 4.84 4.84 0 0 1-1.92-.006 2.555 2.555 0 0 1-.841-.33 1.887 1.887 0 0 1-.605-.61c-.158-.254-.244-.57-.259-.952h1.485zM52.68 44h1.562v2.959h.033c.198-.33.451-.57.759-.72.308-.15.609-.226.902-.226.418 0 .76.057 1.028.17.268.114.479.272.633.474.154.201.262.447.324.737.063.29.094.61.094.962v3.498h-1.562v-3.212c0-.47-.073-.82-.22-1.05-.147-.232-.407-.347-.781-.347-.425 0-.733.126-.924.38-.19.253-.286.669-.286 1.248v2.981h-1.562V44zM14.036 55.642H13V55h2.833v.642h-1.037v2.832h-.76v-2.832zM16 55h1.07l.809 2.389h.01L18.652 55h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438H16V55z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M4 69c-2 0-4-1-4-4V33.916L25 18l11.4-3 11.016 3.802 3.209 19.927L46.5 47.19l1.345-.833h2.78l2.135-2.198L54 47.19l3-.19 1.014 4.854L39.224 69H4z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
\ No newline at end of file diff --git a/addons/web_unsplash/static/description/icon2.png b/addons/web_unsplash/static/description/icon2.png Binary files differnew file mode 100644 index 00000000..62615241 --- /dev/null +++ b/addons/web_unsplash/static/description/icon2.png diff --git a/addons/web_unsplash/static/description/index.html b/addons/web_unsplash/static/description/index.html new file mode 100644 index 00000000..f8c1d62d --- /dev/null +++ b/addons/web_unsplash/static/description/index.html @@ -0,0 +1,22 @@ +<section class="oe_container"> + <div class="oe_row oe_spaced"> + <h2 class="oe_slogan" style="color:#875A7B;">Free high-resolution image library</h2> + <h3 class="oe_slogan">An Unsplash search bar is added to the image library modal...</h3> + <div class="oe_span12"> + <div class="oe_demo oe_picture oe_screenshot"> + <img src="unsplash_interface_bar.png"> + </div> + </div> + </div> +</section> +<section class="oe_container"> + <div class="oe_row oe_spaced"> + <h3 class="oe_slogan">...to explore <a href="https://unsplash.com/">Unsplash.com</a> and find images to use in Odoo.</h3> + <div class="oe_span12"> + <div class="oe_demo oe_picture oe_screenshot"> + <img src="unsplash_interface.png"> + </div> + </div> + </div> +</section> + diff --git a/addons/web_unsplash/static/description/unsplash_interface.png b/addons/web_unsplash/static/description/unsplash_interface.png Binary files differnew file mode 100644 index 00000000..841ebb6d --- /dev/null +++ b/addons/web_unsplash/static/description/unsplash_interface.png diff --git a/addons/web_unsplash/static/description/unsplash_interface_bar.png b/addons/web_unsplash/static/description/unsplash_interface_bar.png Binary files differnew file mode 100644 index 00000000..db4b161d --- /dev/null +++ b/addons/web_unsplash/static/description/unsplash_interface_bar.png diff --git a/addons/web_unsplash/static/src/js/unsplash_beacon.js b/addons/web_unsplash/static/src/js/unsplash_beacon.js new file mode 100644 index 00000000..c15ff027 --- /dev/null +++ b/addons/web_unsplash/static/src/js/unsplash_beacon.js @@ -0,0 +1,34 @@ +odoo.define('web_unsplash.beacon', function (require) { +'use strict'; + +var publicWidget = require('web.public.widget'); + +publicWidget.registry.UnsplashBeacon = publicWidget.Widget.extend({ + // /!\ To adapt the day the beacon makes sense for backend customizations + selector: '#wrapwrap', + + /** + * @override + */ + start: function () { + var unsplashImages = _.map(this.$('img[src*="/unsplash/"]'), function (img) { + // get image id from URL (`http://www.domain.com:1234/unsplash/xYdf5feoI/lion.jpg` -> `xYdf5feoI`) + return img.src.split('/unsplash/')[1].split('/')[0]; + }); + if (unsplashImages.length) { + this._rpc({ + route: '/web_unsplash/get_app_id', + }).then(function (appID) { + if (!appID) { + return; + } + $.get('https://views.unsplash.com/v', { + 'photo_id': unsplashImages.join(','), + 'app_id': appID, + }); + }); + } + return this._super.apply(this, arguments); + }, +}); +}); diff --git a/addons/web_unsplash/static/src/js/unsplash_image_widget.js b/addons/web_unsplash/static/src/js/unsplash_image_widget.js new file mode 100644 index 00000000..e638806d --- /dev/null +++ b/addons/web_unsplash/static/src/js/unsplash_image_widget.js @@ -0,0 +1,259 @@ +odoo.define('web_unsplash.image_widgets', function (require) { +'use strict'; + +var core = require('web.core'); +var UnsplashAPI = require('unsplash.api'); +var widgetsMedia = require('wysiwyg.widgets.media'); + +var unsplashAPI = null; + +// Prevent base class from treating unsplash images like regular attachments +const originalEvents = widgetsMedia.ImageWidget.prototype.events; +const clickHandler = originalEvents['click .o_existing_attachment_cell']; +if (!clickHandler) { + throw new Error(`Couldn't find a handler for o_existing_attachment_cell clicks. +The unsplash image widget needs to prevent this handler from executing on unsplash attachments.`); +} +_.extend(originalEvents, { + 'click .o_existing_attachment_cell:not(.o_unsplash_attachment_cell)': clickHandler, +}); +delete originalEvents['click .o_existing_attachment_cell']; + +widgetsMedia.ImageWidget.include({ + xmlDependencies: widgetsMedia.ImageWidget.prototype.xmlDependencies.concat( + ['/web_unsplash/static/src/xml/unsplash_image_widget.xml'] + ), + events: _.extend({}, widgetsMedia.ImageWidget.prototype.events, { + 'click .o_unsplash_attachment_cell[data-imgid]': '_onUnsplashImgClick', + 'click button.save_unsplash': '_onSaveUnsplashCredentials', + }), + + /** + * @override + */ + init: function () { + this._super.apply(this, arguments); + + this._unsplash = { + selectedImages: {}, + isMaxed: false, + query: false, + error: false, + records: [], + }; + + // TODO improve this + // + // This is a `hack` to prevent the UnsplashAPI to be destroyed every + // time the media dialog is closed. Indeed, UnsplashAPI has a cache + // system to recude unsplash call, it is then better to keep its state + // to take advantage from it from one media dialog call to another. + // + // Unsplash API will either be (it's still being discussed): + // * a service (ideally coming with an improvement to not auto load + // the service) + // * initialized in the website_root (trigger_up) + if (unsplashAPI === null) { + this.unsplashAPI = new UnsplashAPI(this); + unsplashAPI = this.unsplashAPI; + } else { + this.unsplashAPI = unsplashAPI; + this.unsplashAPI.setParent(this); + } + }, + /** + * @override + */ + destroy: function () { + // TODO See `hack` explained in `init`. This prevent the media dialog destroy + // to destroy unsplashAPI when destroying the children + this.unsplashAPI.setParent(undefined); + this._super.apply(this, arguments); + }, + + // -------------------------------------------------------------------------- + // Public + // -------------------------------------------------------------------------- + + /** + * @override + */ + _save: async function () { + const _super = this._super; + if (Object.keys(this._unsplash.selectedImages).length) { + this.saved = true; + const images = await this._rpc({ + route: '/web_unsplash/attachment/add', + params: { + unsplashurls: this._unsplash.selectedImages, + res_model: this.options.res_model, + res_id: this.options.res_id, + query: this._unsplash.query, + }, + }); + this.attachments.push(...images); + this.selectedAttachments.push(...images); + } + return _super.apply(this, arguments); + }, + /** + * @override + */ + search: async function (needle) { + var self = this; + await this._super(...arguments); + + this._unsplash.query = needle; + if (!needle) { + this._unsplash.records = []; + return; + } + + await this.unsplashAPI.getImages(needle, this.numberOfAttachmentsToDisplay).then(function (res) { + self._unsplash.isMaxed = res.isMaxed; + self._unsplash.records = res.images; + self._unsplash.error = false; + }, function (err) { + self._unsplash.error = err; + }); + }, + /** + * @override + */ + hasContent() { + if (this.searchService === 'all') { + return this._super(...arguments) || (this.unsplashRecords && this.unsplashRecords.length); + } else if (this.searchService === 'unsplash') { + return (this.unsplashRecords && this.unsplashRecords.length); + } + return this._super(...arguments); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + */ + _highlightSelected: function () { + this._super.apply(this, arguments); + + const $select = this.$('.o_unsplash_attachment_cell[data-imgid]').filter((i, el) => { + return $(el).data('imgid') in this._unsplash.selectedImages; + }).addClass('o_we_attachment_selected'); + return $select; + }, + /** + * @private + */ + _loadMoreImages: function (forceSearch) { + if (!this.$('.o_we_search').val()) { + return this._super(forceSearch); + } + this.numberOfAttachmentsToDisplay += 10; + this.search(this.$('.o_we_search').val()).then(() => this._renderThumbnails()); + }, + /** + * @override + */ + _renderThumbnails: function () { + this._super(...arguments); + this.$('.unsplash_error').empty(); + if (!['all', 'unsplash'].includes(this.searchService)) { + return; + } + if (this._unsplash.query && this._unsplash.error) { + this.$('.unsplash_error').html( + core.qweb.render('web_unsplash.dialog.error.content', { + status: this._unsplash.error, + }) + ); + return; + } + + if (['all', 'unsplash'].includes(this.searchService) && this._unsplash.query && !this._unsplash.isMaxed) { + this.$('.o_load_more').removeClass('d-none'); + this.$('.o_load_done_msg').addClass('d-none'); + } + }, + /** + * @override + */ + _renderExisting: function (attachments) { + this.unsplashRecords = this._unsplash.records.map(record => { + const url = new URL(record.urls.regular); + // In small windows, row height could get quite a bit larger than the min, so we keep some leeway. + url.searchParams.set('h', 2 * this.MIN_ROW_HEIGHT); + url.searchParams.delete('w'); + return Object.assign({}, record, { + url: url.toString(), + }); + }); + return this._super(...arguments); + }, + /** + * @override + */ + _selectAttachement: function (attachment, save) { + if (!this.options.multiImages) { + this._unsplash.selectedImages = {}; + } + this._super(...arguments); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + */ + _onSaveUnsplashCredentials: function () { + var self = this; + var key = this.$('#accessKeyInput').val().trim(); + var appId = this.$('#appIdInput').val().trim(); + + this.$('#accessKeyInput').toggleClass('is-invalid', !key); + this.$('#appIdInput').toggleClass('is-invalid', !appId); + + if (key && appId) { + if (!this.$el.find('.is-invalid').length) { + this._rpc({ + route: '/web_unsplash/save_unsplash', + params: {key: key, appId: appId}, + }).then(function () { + self.unsplashAPI.clientId = key; + self._unsplash.error = false; + self.search(self._unsplash.query).then(() => self._renderThumbnails()); + }); + } + } + }, + /** + * @private + */ + _onUnsplashImgClick: function (ev) { + if (this.saved) { + // already saved, probably a double click. Ignore. + return; + } + const {imgid, url, downloadUrl, description} = ev.currentTarget.dataset; + if (!this.options.multiImages) { + this._unsplash.selectedImages = {}; + this.selectedAttachments = []; + } + if (imgid in this._unsplash.selectedImages) { + delete this._unsplash.selectedImages[imgid]; + } else { + const _1920Url = new URL(url); + _1920Url.searchParams.set('w', '1920'); + this._unsplash.selectedImages[imgid] = {url: _1920Url.href, download_url: downloadUrl, description: description}; + } + this._highlightSelected(); + if (!this.options.multiImages) { + this.trigger_up('save_request'); + } + }, +}); +}); diff --git a/addons/web_unsplash/static/src/js/unsplashapi.js b/addons/web_unsplash/static/src/js/unsplashapi.js new file mode 100644 index 00000000..8156be6c --- /dev/null +++ b/addons/web_unsplash/static/src/js/unsplashapi.js @@ -0,0 +1,89 @@ +odoo.define('unsplash.api', function (require) { +'use strict'; + +var Class = require('web.Class'); +var rpc = require('web.rpc'); +var Mixins = require('web.mixins'); +var ServicesMixin = require('web.ServicesMixin'); + +var UnsplashCore = Class.extend(Mixins.EventDispatcherMixin, ServicesMixin, { + /** + * @constructor + */ + init: function (parent) { + Mixins.EventDispatcherMixin.init.call(this, arguments); + this.setParent(parent); + + this._cache = {}; + this.clientId = false; + }, + + //-------------------------------------------------------------------------- + // Public + //-------------------------------------------------------------------------- + + /** + * Gets unsplash images from query string. + * + * @param {String} query search terms + * @param {Integer} pageSize number of image to display per page + * @returns {Promise} + */ + getImages: function (query, pageSize) { + var from = 0; + var to = pageSize; + var cachedData = this._cache[query]; + + if (cachedData && (cachedData.images.length >= to || (cachedData.totalImages !== 0 && cachedData.totalImages < to))) { + return Promise.resolve({ images: cachedData.images.slice(from, to), isMaxed: to > cachedData.totalImages }); + } + return this._fetchImages(query).then(function (cachedData) { + return { images: cachedData.images.slice(from, to), isMaxed: to > cachedData.totalImages }; + }); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * Fetches images from unsplash and stores it in cache + * + * @param {String} query search terms + * @returns {Promise} + * @private + */ + _fetchImages: function (query) { + if (!this._cache[query]) { + this._cache[query] = { + images: [], + maxPages: 0, + totalImages: 0, + pageCached: 0 + }; + } + var cachedData = this._cache[query]; + var payload = { + query: query, + page: cachedData.pageCached + 1, + per_page: 30, // max size from unsplash API + }; + return this._rpc({ + route: '/web_unsplash/fetch_images', + params: payload, + }).then(function (result) { + if (result.error) { + return Promise.reject(result.error); + } + cachedData.pageCached++; + cachedData.images.push.apply(cachedData.images, result.results); + cachedData.maxPages = result.total_pages; + cachedData.totalImages = result.total; + return cachedData; + }); + }, +}); + +return UnsplashCore; + +}); diff --git a/addons/web_unsplash/static/src/scss/unsplash.scss b/addons/web_unsplash/static/src/scss/unsplash.scss new file mode 100644 index 00000000..9e0267c2 --- /dev/null +++ b/addons/web_unsplash/static/src/scss/unsplash.scss @@ -0,0 +1,11 @@ +.unsplash_error { + padding: 30px 0; + .access_key_box { + padding: 9px; + background-color: #fcfcfc; + border: 1px solid #ededee; + input { + min-width: 300px; + } + } +} diff --git a/addons/web_unsplash/static/src/xml/unsplash_image_widget.xml b/addons/web_unsplash/static/src/xml/unsplash_image_widget.xml new file mode 100644 index 00000000..0bd4a70f --- /dev/null +++ b/addons/web_unsplash/static/src/xml/unsplash_image_widget.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="utf-8"?> +<templates id="template" xml:space="preserve"> + +<t t-extend="wysiwyg.widgets.file"> + <t t-jquery=".o_we_load_more" t-operation="after"> + <div class="unsplash_error"></div> + </t> +</t> +<t t-extend="wysiwyg.widgets.image"> + <t t-jquery="option[value='media-library']" t-operation="after"> + <option value="unsplash">Photos (via Unsplash)</option> + </t> +</t> +<t t-extend="wysiwyg.widgets.image.existing.attachments"> + <t t-jquery="t[t-foreach='libraryMedia']" t-operation="after"> + <t t-if="['all', 'unsplash'].includes(widget.searchService)" t-foreach="widget.unsplashRecords" t-as="record"> + <t t-call="web_unsplash.dialog.image.content"/> + </t> + </t> +</t> + +<t t-name="web_unsplash.dialog.image.content"> + <div class="o_existing_attachment_cell o_unsplash_attachment_cell position-relative align-items-center justify-content-center bg-light" t-att-data-imgid="record.id" t-att-data-id="record.id" t-att-data-url="record.urls.regular" t-att-data-download-url="record.links.download_location" t-att-data-description="record.alt_description"> + <img class="img img-fluid o_we_attachment_highlight" t-att-src="record.url" t-att-alt="record.alt_description" style="max-height: 100%;"/> + <a class="o_we_media_author" t-att-href="record.user.links.html" target="_blank" t-esc="record.user.name" t-att-title="record.user.name"/> + </div> +</t> + +<t t-name="web_unsplash.dialog.error.credentials"> + <h4><t t-esc="title"/></h4> + <div class="details"> + <t t-esc="subtitle"/> + <div class="form-group mt-4 access_key_box"> + <input type="text" class="form-control w-100" id="accessKeyInput" placeholder="Paste your access key here"/> + </div> + <a href="https://www.odoo.com/documentation/14.0/applications/general/unsplash/unsplash_access_key.html" target="_blank"><i class="fa fa-arrow-right"/> Generate an access key</a> + <div class="form-group mt-4 access_key_box"> + <input type="text" class="form-control w-100" id="appIdInput" placeholder="Paste your application ID here"/> + </div> + <a href="https://www.odoo.com/documentation/14.0/applications/general/unsplash/unsplash_application_id.html" target="_blank"> + <i class="fa fa-arrow-right"/> How to find my Unsplash Application ID?</a> + <button type="button" class="btn btn-primary btn-block mt-4 save_unsplash">Apply</button> + </div> +</t> + +<t t-name="web_unsplash.dialog.error.content"> + <div class="d-flex mt-2 unsplash_error"> + <div class="mx-auto text-center"> + <t t-if="status == 'key_not_found'"> + <t t-call="web_unsplash.dialog.error.credentials"> + <t t-set="title"> + Unsplash requires an access key and an application ID + </t> + </t> + </t> + <t t-elif="status == 403"> + <h4 class="text-muted"> + Search is temporarily unavailable + </h4> + <div class="details"> + The max number of searches is exceeded. Please retry in an hour or extend to a better account. + </div> + </t> + <t t-elif="status == 401"> + <t t-call="web_unsplash.dialog.error.credentials"> + <t t-set="title"> + Unauthorized Key + </t> + <t t-set="subtitle"> + Please check your Unsplash access key and application ID. + </t> + </t> + </t> + <t t-else=""> + <h4 class="text-muted"> + Something went wrong + </h4> + <div class="details"> + Please check your internet connection or contact administrator. + </div> + </t> + </div> + </div> +</t> + +</templates> diff --git a/addons/web_unsplash/views/res_config_settings_view.xml b/addons/web_unsplash/views/res_config_settings_view.xml new file mode 100644 index 00000000..5f61ee8e --- /dev/null +++ b/addons/web_unsplash/views/res_config_settings_view.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.view.form.inherit.web.unsplash</field> + <field name="model">res.config.settings</field> + <field name="inherit_id" ref="base_setup.res_config_settings_view_form"/> + <field name="arch" type="xml"> + <div id="web_unsplash_warning" position="replace"> + <div attrs="{'invisible': [('module_web_unsplash', '=', False)]}"> + <div class="content-group mt16"> + <label for="unsplash_access_key" class="o_light_label"/> + <field name="unsplash_access_key"/> + </div> + <div> + <a href="https://www.odoo.com/documentation/14.0/applications/general/unsplash/unsplash_access_key.html" class="oe_link" target="_blank"> + <i class="fa fa-arrow-right"/> Generate an Access Key + </a> + </div> + </div> + </div> + </field> + </record> +</odoo> diff --git a/addons/web_unsplash/views/web_unsplash_templates.xml b/addons/web_unsplash/views/web_unsplash_templates.xml new file mode 100644 index 00000000..e6201eaa --- /dev/null +++ b/addons/web_unsplash/views/web_unsplash_templates.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="web_unsplash_assets" inherit_id="web_editor.assets_wysiwyg" name="Unsplash Images Editor Assets"> + <xpath expr="." position="inside"> + <link rel="stylesheet" type="text/scss" href="/web_unsplash/static/src/scss/unsplash.scss"/> + <script type="text/javascript" src="/web_unsplash/static/src/js/unsplashapi.js"></script> + <script type="text/javascript" src="/web_unsplash/static/src/js/unsplash_image_widget.js"></script> + </xpath> + </template> + <template id="assets_frontend" inherit_id="web.assets_frontend" name="Unsplash Images Assets"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/web_unsplash/static/src/js/unsplash_beacon.js"></script> + </xpath> + </template> +</odoo> |
