From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/web_unsplash/__init__.py | 5 + addons/web_unsplash/__manifest__.py | 16 ++ addons/web_unsplash/controllers/__init__.py | 3 + addons/web_unsplash/controllers/main.py | 149 ++++++++++++ addons/web_unsplash/i18n/ar.po | 177 ++++++++++++++ addons/web_unsplash/i18n/az.po | 137 +++++++++++ addons/web_unsplash/i18n/bg.po | 174 ++++++++++++++ addons/web_unsplash/i18n/bn.po | 171 ++++++++++++++ addons/web_unsplash/i18n/bs.po | 141 +++++++++++ addons/web_unsplash/i18n/ca.po | 174 ++++++++++++++ addons/web_unsplash/i18n/ckb.po | 171 ++++++++++++++ addons/web_unsplash/i18n/cs.po | 177 ++++++++++++++ addons/web_unsplash/i18n/da.po | 179 ++++++++++++++ addons/web_unsplash/i18n/de.po | 178 ++++++++++++++ addons/web_unsplash/i18n/el.po | 172 ++++++++++++++ addons/web_unsplash/i18n/eo.po | 167 +++++++++++++ addons/web_unsplash/i18n/es.po | 177 ++++++++++++++ addons/web_unsplash/i18n/es_MX.po | 177 ++++++++++++++ addons/web_unsplash/i18n/et.po | 174 ++++++++++++++ addons/web_unsplash/i18n/eu.po | 174 ++++++++++++++ addons/web_unsplash/i18n/fa.po | 176 ++++++++++++++ addons/web_unsplash/i18n/fi.po | 176 ++++++++++++++ addons/web_unsplash/i18n/fr.po | 181 ++++++++++++++ addons/web_unsplash/i18n/gu.po | 140 +++++++++++ addons/web_unsplash/i18n/he.po | 172 ++++++++++++++ addons/web_unsplash/i18n/hi.po | 167 +++++++++++++ addons/web_unsplash/i18n/hr.po | 180 ++++++++++++++ addons/web_unsplash/i18n/hu.po | 174 ++++++++++++++ addons/web_unsplash/i18n/id.po | 175 ++++++++++++++ addons/web_unsplash/i18n/is.po | 143 ++++++++++++ addons/web_unsplash/i18n/it.po | 173 ++++++++++++++ addons/web_unsplash/i18n/ja.po | 174 ++++++++++++++ addons/web_unsplash/i18n/ka.po | 173 ++++++++++++++ addons/web_unsplash/i18n/km.po | 140 +++++++++++ addons/web_unsplash/i18n/ko.po | 172 ++++++++++++++ addons/web_unsplash/i18n/lb.po | 160 +++++++++++++ addons/web_unsplash/i18n/lt.po | 174 ++++++++++++++ addons/web_unsplash/i18n/lv.po | 167 +++++++++++++ addons/web_unsplash/i18n/mn.po | 172 ++++++++++++++ addons/web_unsplash/i18n/nb.po | 172 ++++++++++++++ addons/web_unsplash/i18n/nl.po | 177 ++++++++++++++ addons/web_unsplash/i18n/pl.po | 175 ++++++++++++++ addons/web_unsplash/i18n/pt.po | 174 ++++++++++++++ addons/web_unsplash/i18n/pt_BR.po | 176 ++++++++++++++ addons/web_unsplash/i18n/ro.po | 179 ++++++++++++++ addons/web_unsplash/i18n/ru.po | 178 ++++++++++++++ addons/web_unsplash/i18n/si.po | 167 +++++++++++++ addons/web_unsplash/i18n/sk.po | 175 ++++++++++++++ addons/web_unsplash/i18n/sl.po | 176 ++++++++++++++ addons/web_unsplash/i18n/sr.po | 140 +++++++++++ addons/web_unsplash/i18n/sv.po | 173 ++++++++++++++ addons/web_unsplash/i18n/th.po | 143 ++++++++++++ addons/web_unsplash/i18n/tr.po | 179 ++++++++++++++ addons/web_unsplash/i18n/uk.po | 174 ++++++++++++++ addons/web_unsplash/i18n/ur.po | 167 +++++++++++++ addons/web_unsplash/i18n/vi.po | 176 ++++++++++++++ addons/web_unsplash/i18n/web_unsplash.pot | 167 +++++++++++++ addons/web_unsplash/i18n/zh_CN.po | 179 ++++++++++++++ addons/web_unsplash/i18n/zh_TW.po | 171 ++++++++++++++ addons/web_unsplash/models/__init__.py | 6 + addons/web_unsplash/models/ir_qweb.py | 30 +++ addons/web_unsplash/models/res_config_settings.py | 9 + addons/web_unsplash/models/res_users.py | 11 + addons/web_unsplash/static/description/icon.png | Bin 0 -> 6629 bytes addons/web_unsplash/static/description/icon.svg | 1 + addons/web_unsplash/static/description/icon2.png | Bin 0 -> 16456 bytes addons/web_unsplash/static/description/index.html | 22 ++ .../static/description/unsplash_interface.png | Bin 0 -> 380543 bytes .../static/description/unsplash_interface_bar.png | Bin 0 -> 11799 bytes .../web_unsplash/static/src/js/unsplash_beacon.js | 34 +++ .../static/src/js/unsplash_image_widget.js | 259 +++++++++++++++++++++ addons/web_unsplash/static/src/js/unsplashapi.js | 89 +++++++ addons/web_unsplash/static/src/scss/unsplash.scss | 11 + .../static/src/xml/unsplash_image_widget.xml | 86 +++++++ .../views/res_config_settings_view.xml | 23 ++ .../web_unsplash/views/web_unsplash_templates.xml | 15 ++ 76 files changed, 10096 insertions(+) create mode 100644 addons/web_unsplash/__init__.py create mode 100644 addons/web_unsplash/__manifest__.py create mode 100644 addons/web_unsplash/controllers/__init__.py create mode 100644 addons/web_unsplash/controllers/main.py create mode 100644 addons/web_unsplash/i18n/ar.po create mode 100644 addons/web_unsplash/i18n/az.po create mode 100644 addons/web_unsplash/i18n/bg.po create mode 100644 addons/web_unsplash/i18n/bn.po create mode 100644 addons/web_unsplash/i18n/bs.po create mode 100644 addons/web_unsplash/i18n/ca.po create mode 100644 addons/web_unsplash/i18n/ckb.po create mode 100644 addons/web_unsplash/i18n/cs.po create mode 100644 addons/web_unsplash/i18n/da.po create mode 100644 addons/web_unsplash/i18n/de.po create mode 100644 addons/web_unsplash/i18n/el.po create mode 100644 addons/web_unsplash/i18n/eo.po create mode 100644 addons/web_unsplash/i18n/es.po create mode 100644 addons/web_unsplash/i18n/es_MX.po create mode 100644 addons/web_unsplash/i18n/et.po create mode 100644 addons/web_unsplash/i18n/eu.po create mode 100644 addons/web_unsplash/i18n/fa.po create mode 100644 addons/web_unsplash/i18n/fi.po create mode 100644 addons/web_unsplash/i18n/fr.po create mode 100644 addons/web_unsplash/i18n/gu.po create mode 100644 addons/web_unsplash/i18n/he.po create mode 100644 addons/web_unsplash/i18n/hi.po create mode 100644 addons/web_unsplash/i18n/hr.po create mode 100644 addons/web_unsplash/i18n/hu.po create mode 100644 addons/web_unsplash/i18n/id.po create mode 100644 addons/web_unsplash/i18n/is.po create mode 100644 addons/web_unsplash/i18n/it.po create mode 100644 addons/web_unsplash/i18n/ja.po create mode 100644 addons/web_unsplash/i18n/ka.po create mode 100644 addons/web_unsplash/i18n/km.po create mode 100644 addons/web_unsplash/i18n/ko.po create mode 100644 addons/web_unsplash/i18n/lb.po create mode 100644 addons/web_unsplash/i18n/lt.po create mode 100644 addons/web_unsplash/i18n/lv.po create mode 100644 addons/web_unsplash/i18n/mn.po create mode 100644 addons/web_unsplash/i18n/nb.po create mode 100644 addons/web_unsplash/i18n/nl.po create mode 100644 addons/web_unsplash/i18n/pl.po create mode 100644 addons/web_unsplash/i18n/pt.po create mode 100644 addons/web_unsplash/i18n/pt_BR.po create mode 100644 addons/web_unsplash/i18n/ro.po create mode 100644 addons/web_unsplash/i18n/ru.po create mode 100644 addons/web_unsplash/i18n/si.po create mode 100644 addons/web_unsplash/i18n/sk.po create mode 100644 addons/web_unsplash/i18n/sl.po create mode 100644 addons/web_unsplash/i18n/sr.po create mode 100644 addons/web_unsplash/i18n/sv.po create mode 100644 addons/web_unsplash/i18n/th.po create mode 100644 addons/web_unsplash/i18n/tr.po create mode 100644 addons/web_unsplash/i18n/uk.po create mode 100644 addons/web_unsplash/i18n/ur.po create mode 100644 addons/web_unsplash/i18n/vi.po create mode 100644 addons/web_unsplash/i18n/web_unsplash.pot create mode 100644 addons/web_unsplash/i18n/zh_CN.po create mode 100644 addons/web_unsplash/i18n/zh_TW.po create mode 100644 addons/web_unsplash/models/__init__.py create mode 100644 addons/web_unsplash/models/ir_qweb.py create mode 100644 addons/web_unsplash/models/res_config_settings.py create mode 100644 addons/web_unsplash/models/res_users.py create mode 100644 addons/web_unsplash/static/description/icon.png create mode 100644 addons/web_unsplash/static/description/icon.svg create mode 100644 addons/web_unsplash/static/description/icon2.png create mode 100644 addons/web_unsplash/static/description/index.html create mode 100644 addons/web_unsplash/static/description/unsplash_interface.png create mode 100644 addons/web_unsplash/static/description/unsplash_interface_bar.png create mode 100644 addons/web_unsplash/static/src/js/unsplash_beacon.js create mode 100644 addons/web_unsplash/static/src/js/unsplash_image_widget.js create mode 100644 addons/web_unsplash/static/src/js/unsplashapi.js create mode 100644 addons/web_unsplash/static/src/scss/unsplash.scss create mode 100644 addons/web_unsplash/static/src/xml/unsplash_image_widget.xml create mode 100644 addons/web_unsplash/views/res_config_settings_view.xml create mode 100644 addons/web_unsplash/views/web_unsplash_templates.xml (limited to 'addons/web_unsplash') 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 , 2020 +# Mustafa Rawi , 2020 +# Akram Alfusayal , 2020 +# Ghaith Gammar , 2020 +# Osama Ahmaro , 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 , 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 " 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 "خطأ: رابط 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 " 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 , 2020 +# aleksandar ivanov, 2020 +# Maria Boyadjieva , 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 , 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 " 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 , 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 , 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 " 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ć , 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ć , 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 " 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 , 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 " 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 , 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 , 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 " 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/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 , 2020 +# karolína schusterová , 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 " Generate an Access Key" +msgstr " 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 , 2020 +# Jesper Carstensen , 2020 +# Sanne Kristensen , 2020 +# lhmflexerp , 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2020 +# Chris Egal , 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 , 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 " Generate an Access Key" +msgstr "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 , 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 , 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 " 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 " 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 , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2021 +# Patricia Gutiérrez Capetillo , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2020 +# Martin Trigaux, 2020 +# Arma Gedonsky , 2020 +# Martin Talts , 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 , 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 " 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 , 2021 +# Eneko , 2021 +# Maialen Rodriguez , 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 , 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 " 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 , 2020 +# Mohsen Mohammadi , 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 , 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 " 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 "خطا: 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 , 2020 +# Miku Laitinen , 2020 +# Jarmo Kortetjärvi , 2020 +# Tuomo Aura , 2020 +# Jussi Heikkilä , 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ä , 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 " 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 , 2020 +# Martin Trigaux, 2020 +# Aurélien Pillevesse , 2020 +# Eloïse Stilmant , 2020 +# Cécile Collart , 2020 +# Gilles Mangin , 2020 +# Pauline Thiry , 2020 +# Sébastien BÜHL , 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 , 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 " Generate an Access Key" +msgstr " 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 " 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 , 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 , 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 " 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 " 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 , 2020 +# Vladimir Olujić , 2020 +# Tina Milas, 2020 +# Igor Krizanovic , 2020 +# Hrvoje 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: Hrvoje Sić , 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 " Generate an Access Key" +msgstr " 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 , 2021 +# Ákos Nagy , 2021 +# Zsolt Godó , 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ó , 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 " 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 , 2020 +# pnyet , 2020 +# Bonny Useful , 2020 +# Altela Eleviansyah Pramardhika , 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 , 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 " 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 , 2018 +# Bjorn Ingvarsson , 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 , 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 " 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 , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2020 +# Yoshi Tashiro , 2020 +# Tim Siu Lai , 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 " 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/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 , 2021 +# Mari Khomeriki , 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 " 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 , 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 , 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 " 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 , 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 , 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 " 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 "오류 : 알 수 없는 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 " 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" , 2021 +# Monika Raciunaite , 2021 +# Linas Versada , 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 , 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 " Generate an Access Key" +msgstr "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 " 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 , 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 " 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 , 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 , 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 " 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 , 2020 +# Cas Vissers , 2020 +# Erwin van der Ploeg , 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 , 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 " Generate an Access Key" +msgstr "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 , 2020 +# Karol Rybak , 2020 +# Maksym , 2020 +# Piotr Strębski , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2020 +# Reinaldo Ramos , 2020 +# Diogo Fonseca , 2020 +# Pedro Filipe , 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 , 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 " Generate an Access Key" +msgstr "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 , 2020 +# Martin Trigaux, 2020 +# Mateus Lopes , 2020 +# André Augusto Firmino Cordeiro , 2020 +# Keli Brugalli , 2020 +# PopSolutions Cooperativa Digital , 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 , 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 " 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 , 2020 +# Dan Stoica , 2020 +# Foldi Robert , 2020 +# Hongu Cosmin , 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 , 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 " Generate an Access Key" +msgstr "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 , 2020 +# Vasiliy Korobatov , 2020 +# ILMIR , 2020 +# Irina Fedulova , 2020 +# Сергей Шебанин , 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: Сергей Шебанин , 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 " 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 "ОШИБКА: Неизвестное 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 " 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 , 2020 +# Jan Prokop, 2020 +# Rastislav Brencic , 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 , 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 " Generate an Access Key" +msgstr " 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 , 2021 +# matjaz k , 2021 +# Grega Vavtar , 2021 +# Tadej Lupšina , 2021 +# Jasmina Macur , 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 , 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 " Generate an Access Key" +msgstr " 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 " 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 , 2021 +# Chrille Hedberg , 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 , 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 " 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 , 2018 +# Somchart Jabsung , 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 , 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 " 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ş , 2020 +# Murat Kaplan , 2020 +# Ertuğrul Güreş , 2020 +# Erdinç Akın, 2020 +# abc Def , 2020 +# Murat Durmuş , 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ş , 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 " Generate an Access Key" +msgstr "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 , 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 , 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 " 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 "ПОМИЛКА: Невідома 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 " 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 , 2020 +# Duy BQ , 2020 +# Trinh Tran Thi Phuong , 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 , 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 " Generate an Access Key" +msgstr " 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 " 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 , 2020 +# liAnGjiA , 2020 +# guohuadeng , 2020 +# 敬雲 林 , 2020 +# snow wang <147156565@qq.com>, 2020 +# inspur qiuguodong , 2020 +# John An , 2020 +# Felix Yang - Elico Corp , 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 , 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 " 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 "错误: 未知 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: +# 敬雲 林 , 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: 敬雲 林 , 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 " 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 "錯誤:未知取消初始 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 new file mode 100644 index 00000000..54f5c717 Binary files /dev/null and b/addons/web_unsplash/static/description/icon.png differ 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 @@ + \ No newline at end of file diff --git a/addons/web_unsplash/static/description/icon2.png b/addons/web_unsplash/static/description/icon2.png new file mode 100644 index 00000000..62615241 Binary files /dev/null and b/addons/web_unsplash/static/description/icon2.png differ 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 @@ +
+
+

Free high-resolution image library

+

An Unsplash search bar is added to the image library modal...

+
+
+ +
+
+
+
+
+
+

...to explore Unsplash.com and find images to use in Odoo.

+
+
+ +
+
+
+
+ diff --git a/addons/web_unsplash/static/description/unsplash_interface.png b/addons/web_unsplash/static/description/unsplash_interface.png new file mode 100644 index 00000000..841ebb6d Binary files /dev/null and b/addons/web_unsplash/static/description/unsplash_interface.png differ diff --git a/addons/web_unsplash/static/description/unsplash_interface_bar.png b/addons/web_unsplash/static/description/unsplash_interface_bar.png new file mode 100644 index 00000000..db4b161d Binary files /dev/null and b/addons/web_unsplash/static/description/unsplash_interface_bar.png differ 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 @@ + + + + + +
+
+
+ + + + + + + + + + + + + + +
+ + +
+
+ + +

+
+
+ + +
+
+ + + + Unsplash requires an access key and an application ID + + + + +

+ Search is temporarily unavailable +

+
+ The max number of searches is exceeded. Please retry in an hour or extend to a better account. +
+
+ + + + Unauthorized Key + + + Please check your Unsplash access key and application ID. + + + + +

+ Something went wrong +

+
+ Please check your internet connection or contact administrator. +
+
+
+
+
+ +
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 @@ + + + + res.config.settings.view.form.inherit.web.unsplash + res.config.settings + + +
+ +
+
+
+
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 @@ + + + + + -- cgit v1.2.3