19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:32:58 +01:00
parent 20e6dadd87
commit 4b94f0abc5
205 changed files with 24700 additions and 14614 deletions

View file

@ -6,20 +6,25 @@
'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'],
'depends': ['base_setup', 'html_editor'],
'data': [
'views/res_config_settings_view.xml',
],
'auto_install': False,
'auto_install': True,
'assets': {
'web.assets_frontend': [
'web_unsplash/static/src/js/unsplash_beacon.js',
'web_unsplash/static/src/frontend/unsplash_beacon.js',
],
'web_editor.assets_media_dialog': [
'web_unsplash/static/src/components/media_dialog/*.js',
'web_unsplash/static/src/components/media_dialog/*.xml',
'web_unsplash/static/src/services/unsplash_service.js',
'html_editor.assets_media_dialog': [
'web_unsplash/static/src/media_dialog/**/*',
'web_unsplash/static/src/unsplash_credentials/**/*',
'web_unsplash/static/src/unsplash_error/**/*',
'web_unsplash/static/src/unsplash_service.js',
],
'web.assets_unit_tests': [
'web_unsplash/static/tests/**/*',
],
},
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
@ -7,11 +6,12 @@ import requests
import werkzeug.utils
from werkzeug.urls import url_encode
from odoo import http, tools, _
from odoo import http, modules, _
from odoo.http import request
from odoo.tools.image import image_process
from odoo.tools.mimetypes import guess_mimetype
from odoo.addons.web_editor.controllers.main import Web_Editor
from odoo.addons.html_editor.controllers.main import HTML_Editor
logger = logging.getLogger(__name__)
@ -31,7 +31,7 @@ class Web_Unsplash(http.Controller):
view counter.
'''
try:
if not url.startswith('https://api.unsplash.com/photos/') and not request.env.registry.in_test_mode():
if not url.startswith('https://api.unsplash.com/photos/') and not modules.module.current_test:
raise Exception(_("ERROR: Unknown Unsplash notify URL!"))
access_key = self._get_access_key()
requests.get(url, params=url_encode({'client_id': access_key}))
@ -41,7 +41,7 @@ class Web_Unsplash(http.Controller):
# ------------------------------------------------------
# add unsplash image url
# ------------------------------------------------------
@http.route('/web_unsplash/attachment/add', type='json', auth='user', methods=['POST'])
@http.route('/web_unsplash/attachment/add', type='jsonrpc', auth='user', methods=['POST'])
def save_unsplash_url(self, unsplashurls=None, **kwargs):
"""
unsplashurls = {
@ -81,7 +81,7 @@ class Web_Unsplash(http.Controller):
for key, value in unsplashurls.items():
url = value.get('url')
try:
if not url.startswith(('https://images.unsplash.com/', 'https://plus.unsplash.com/')) and not request.env.registry.in_test_mode():
if not url.startswith(('https://images.unsplash.com/', 'https://plus.unsplash.com/')) and not modules.module.current_test:
logger.exception("ERROR: Unknown Unsplash URL!: " + url)
raise Exception(_("ERROR: Unknown Unsplash URL!"))
@ -98,7 +98,7 @@ class Web_Unsplash(http.Controller):
logger.exception("Timeout: " + str(e))
continue
image = tools.image_process(image, verify_resolution=True)
image = image_process(image, verify_resolution=True)
mimetype = guess_mimetype(image)
# append image extension in name
query += mimetypes.guess_extension(mimetype) or ''
@ -113,7 +113,7 @@ class Web_Unsplash(http.Controller):
'res_id': res_id,
'res_model': res_model,
}
attachment = Web_Editor._attachment_create(self, **attachment_data)
attachment = HTML_Editor._attachment_create(self, **attachment_data)
if value.get('description'):
attachment.description = value.get('description')
attachment.generate_access_token()
@ -124,7 +124,7 @@ class Web_Unsplash(http.Controller):
return uploads
@http.route("/web_unsplash/fetch_images", type='json', auth="user")
@http.route("/web_unsplash/fetch_images", type='jsonrpc', auth="user")
def fetch_unsplash_images(self, **post):
access_key = self._get_access_key()
app_id = self.get_unsplash_app_id()
@ -141,11 +141,11 @@ class Web_Unsplash(http.Controller):
return {'error': 'no_access'}
return {'error': response.status_code}
@http.route("/web_unsplash/get_app_id", type='json', auth="public")
@http.route("/web_unsplash/get_app_id", type='jsonrpc', 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")
@http.route("/web_unsplash/save_unsplash", type='jsonrpc', auth="user")
def save_unsplash(self, **post):
if request.env.user._can_manage_unsplash_settings():
request.env['ir.config_parameter'].sudo().set_param('unsplash.app_id', post.get('appId'))

View file

@ -1,189 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: am\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Malaz Abuidris <msea@odoo.com>, 2022
# Martin Trigaux, 2022
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-13 12:16+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> إنشاء مفتاح وصول"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +31,14 @@ msgstr "مفتاح الوصول"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "مُعرف الوصول "
msgstr "مُعرف الوصول"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "تطبيق"
@ -53,63 +50,76 @@ msgstr "مرفق"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "تهيئة الإعدادات "
msgstr "تهيئة الإعدادات"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "خطأ: رابط Unsplash غير معروف!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "خطأ: رابط إشعار Unsplash غير معروف!"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr "احصل على مفتاح الوصول "
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "إنشاء مفتاح الوصول"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "احصل على مفتاح الوصول"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "الصق مفتاح وصولك هنا"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "الصق معرف تطبيقك هنا"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "الصور (بواسطة Unsplash) "
msgstr "الصور (بواسطة Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "يرجى مراجعة مفتاح وصولك ومعرف التطبيق المستخدمان للولوج لـUnsplash. "
msgstr "يرجى مراجعة مفتاح وصولك ومعرف التطبيق المستخدمان للولوج لـUnsplash."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "يرجى التأكد من اتصالك بالإنترنت أو تواصل مع مدير النظام. "
msgstr "يرجى التأكد من اتصالك بالإنترنت أو تواصل مع مدير النظام."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
@ -118,56 +128,49 @@ msgstr "صورة حقل Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "البحث غير متاح مؤقتًا"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "قم بإعداد Unsplash حتى تتمكن من الوصول إلى صور خالية من حقوق النشر. "
msgstr "قم بإعداد Unsplash حتى تتمكن من الوصول إلى صور خالية من حقوق النشر."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "حدث خطأ ما"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"لقد وصلت إلى الحد الأقصى المسموح به لعمليات البحث. يرجى إعادة المحاولة "
"مجدداً بعد ساعة أو ترقية حسابك لحساب أفضل. "
"لقد وصلت إلى الحد الأقصى المسموح به لعمليات البحث. يرجى إعادة المحاولة مجدداً "
"بعد ساعة أو ترقية حسابك لحساب أفضل."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "مفتاح غير مصرح به "
msgstr "مفتاح غير مصرح به"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr " رفع صور %s '%s'. "
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "جاري رفع %(count)s '%(query)s' صور."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "رفع صورة '%s'. "
msgstr "رفع صورة '%s'."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
@ -176,21 +179,21 @@ msgstr "المستخدم"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "ولصقه "
msgstr "ولصقه"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "ولصقه هنا: "
msgstr "ولصقه هنا:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "هنا: "
msgstr "هنا:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr " رفع صور %s '%s'. "

View file

@ -1,29 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# erpgo translator <jumshud@erpgo.az>, 2022
# Jumshud Sultanov <cumshud@gmail.com>, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/az/>\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Giriş açarını generasiya et"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +29,14 @@ msgstr "Giriş Düyməsi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Tətbiq edin"
@ -55,59 +50,72 @@ msgstr "Qoşma"
msgid "Config Settings"
msgstr "Parametrləri Konfiqurasiya edin"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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östəriləcək Ad"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "XƏTA: Naməlum Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "XƏTA: Naməlum Unsplash URLni bildir!"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Giriş düymənizi bura yapışdırın"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Tətbiq ID-nizi bura yapışdırın"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Zəhmət olmasa Unsplash giriş düyməsini və tətbiq İD-sini yoxlayın."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Zəhmət olmasa internet əlaqənizi yoxlayın və ya administratorla əlaqə "
@ -120,54 +128,47 @@ msgstr "Qweb Təsvir Sahəsi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Axtarış müvəqqəti olaraq mövcud deyil"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Xəta baş verdi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Maksimum axtarış sayııldı. Xahiş edirik bir saatdan sonra yenidən cəhd "
"edin və ya daha yaxşı hesaba keçin."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "İcazəsiz Kod"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -178,21 +179,18 @@ msgstr "İstifadəçi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,193 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Ivan Shakh, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Ivan Shakh, 2024\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "Прымяніць"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Прымацаванне"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Налады канфігурацыі"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Карыстальнік"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,30 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# KeyVillage, 2023
# aleksandar ivanov, 2023
# Petko Karamotchev, 2024
#
# * web_unsplash
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Petko Karamotchev, 2024\n"
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:59+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +26,14 @@ msgstr "Ключ за достъп"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID на приложение"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Приложи"
@ -54,61 +45,74 @@ msgstr "Прикачен файл"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Настройки"
msgstr "Конфигурационни настройки"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -119,52 +123,45 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -175,21 +172,18 @@ msgstr "Потребител"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,207 +1,190 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2018
# Boško Stojaković <bluesoft83@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~11.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2025-05-08 20:35+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n"
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \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"
# taken from hr.po
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Stvorite pristupni ključ"
# taken from hr.po
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr "Pristupni ključ"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
msgid "Application ID"
msgstr "ID aplikacije"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Primjeni"
# taken from hr.po
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Prilog"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Postavke"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py
#, python-format
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash URL!"
msgstr "GREŠKA: Nepoznat Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py
#, python-format
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "GREŠKA: Nepoznat Unsplash obavještenje URL!"
msgstr ""
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Nabavite pristupni ključ"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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 ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Ovdje zalijepite pristupni ključ"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Ovdje zalijepite svoj ID aplikacije"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Pristupni ključ nije postavljen"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Molimo provjerite vaš Unsplash pristupni ključ i ID aplikacije."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Molimo provjerite vašu internet konekciju ili kontaktirajte administratora."
# taken from hr.po
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
msgid "Search is temporarily unavailable"
msgstr "Pretraga je privremeno nedostupna"
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr "Postavi Unsplash za pristup fotografijama bez autorskih prava."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
msgid "Something went wrong"
msgstr "Fotografije nisu pronađene"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgstr ""
"Maksimalan broj pretraga je premašen. Molimo pokušajte ponovo za sat vremena"
" ili proširite na bolji nalog."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Neautorizovan ključ"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Uploading '%s' image."
msgstr ""
# taken from hr.po
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Korisnik"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "i zalijepite"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "Pretraživanje je privremeno nedostupno"
msgstr ""
# taken from hr.po
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "ovdje:"
msgstr ""

View file

@ -1,32 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Arnau Ros, 2022
# jabelchi, 2022
# marcescu, 2022
# Óscar Fonseca <tecnico@extreme-micro.com>, 2022
# Martin Trigaux, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Genera una clau d'accés"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -35,16 +33,14 @@ msgstr "Clau d'accés"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID de l'aplicació"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplica"
@ -56,62 +52,75 @@ msgstr "Adjunt"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Ajustos de configuració"
msgstr "Paràmetres de configuració"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERROR: URL d'Unsplash desconegut!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERROR: URL de notificació d'Unsplash desconegut!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obtenir una clau d'accés"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Enganxa la clau d'accés aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Enganxa l'ID de l'aplicació aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
"Si us plau, comprova la teva clau d'accés a Unsplash i el ID de l'aplicació."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Si us plau, comprovi la seva connexió a Internet o posi's en contacte amb "
@ -124,54 +133,47 @@ msgstr "Camp d'imatge Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "La cerca no està disponible temporalment"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Configura Unsplash per a accedir a fotos lliures de drets."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Alguna cosa ha fallat"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"S'ha excedit el nombre màxim de cerques. Torneu-ho a provar en una hora o "
"amplieu-ho a un compte millor."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Clau no autoritzada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "S'està pujant %s '%s' imatges."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "S'està pujant %(count)s '%(query)s' imatges."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "S'està pujant '%s' imatge."
@ -182,21 +184,21 @@ msgstr "Usuari"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "i enganxar"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "i enganxar-ho aquí:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "aquí:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "S'està pujant %s '%s' imatges."

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
# Jiří Podhorecký, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Jiří Podhorecký, 2022\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Vytvoření přístupového klíče"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +31,14 @@ msgstr "Přístupový klíč"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Použít"
@ -53,61 +50,74 @@ msgstr "Příloha"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Nastavení konfigurace"
msgstr "Konfigurační nastavení"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Zobrazovací název"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotky (přes Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Zkontrolujte prosím přístupový klíč Unsplash a ID aplikace."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Zkontrolujte prosím připojení k internetu nebo kontaktujte administrátora."
@ -115,58 +125,51 @@ msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Obrázek pole Qweb"
msgstr "QWeb pole obrázek"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Hledání je dočasně nedostupné"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Něco se pokazilo"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Neoprávněný klíč"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -177,21 +180,18 @@ msgstr "Uživatel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,28 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Generer en Adgangs nøgle"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -31,16 +30,14 @@ msgstr "Adgangs nøgle"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
msgstr "Anvendelses-ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Anvend"
@ -52,61 +49,74 @@ msgstr "Vedhæftning"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigurer opsætning"
msgstr "Konfigurationsindstillinger"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "FEJL: Ukendt Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Generér adgangsnøgle"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Få en adgangsnøgle"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Indsæt din adgangs nøgle her"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Indsæt dit applikations ID her"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Tjek venligst din internetforbindelse eller kontakt administrator."
@ -117,56 +127,51 @@ msgstr "Qweb felt billede"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Søgning er midlertidigt utilgængelig"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
"Konfigurér Unsplash for at få adgang til et bibliotek med royaltyfrie "
"billeder."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Noget gik galt"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Uautoriseret nøgle"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Uploade %(count)s '%(query)s' billeder."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
msgstr "Uploade '%s' billede."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
@ -175,21 +180,18 @@ msgstr "Bruger"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
msgstr "og indsæt"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
msgstr "og indsæt det her:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""
msgstr "her:"

View file

@ -1,29 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2023
# Larissa Manderfeld, 2023
#
# Martin Trigaux, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Larissa Manderfeld, 2023\n"
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-28 09:08+0000\n"
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Einen Zugriffsschlüssel generieren"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.14.3\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +30,14 @@ msgstr "Zugriffsschlüssel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Anwendungs-ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Anwenden"
@ -55,61 +51,73 @@ msgstr "Dateianhang"
msgid "Config Settings"
msgstr "Konfigurationseinstellungen"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "FEHLER: Unbekannte Unsplash-URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "FEHLER: Unbekannte Unsplash-Benachrichtigungs-URL!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Einen Zugriffsschlüssel generieren"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Erhalten Sie einen Zugriffsschlüssel"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Ihren Zugriffsschlüssel hier einfügen"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Ihre Anwendungs-ID hier einfügen"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (über Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
"Bitte überprüfen Sie Ihren Unsplash-Zugriffsschlüssel und Ihre Anwendungs-"
"ID."
"Bitte überprüfen Sie Ihren Unsplash-Zugriffsschlüssel und Ihre Anwendungs-ID."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Bitte überprüfen Sie Ihre Internetverbindung oder wenden Sie sich an den "
@ -122,55 +130,48 @@ msgstr "Qweb-Feld Bild"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Die Suche ist vorübergehend nicht verfügbar"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Unsplash einrichten, um Zugriff auf lizenzfreie Fotos zu erhalten"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Etwas ist schief gelaufen"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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 "
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Unautorisierter Schlüssel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "%s „%s“-Bilder werden hochgeladen."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s Bilder für „%(query)s“ werden hochgeladen."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Bild „%s“ wird hochgeladen."
@ -181,21 +182,21 @@ msgstr "Benutzer"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "und fügen Sie"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "und fügen Sie ihn hier ein:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "hier ein:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "%s '%s' Bilder werden hochgeladen."

View file

@ -1,28 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
#
# Translators:
# Martin Trigaux, 2018
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
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: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -30,112 +29,165 @@ 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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
msgid "Application ID"
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Εφαρμογή"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
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_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash URL!"
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"
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash notify URL!"
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
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:75
#, python-format
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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."
#: 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:8
#, python-format
msgid "Search from Unsplash"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:72
#, python-format
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:53
#, python-format
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "Users"
msgstr "Χρήστες"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:7
#, python-format
msgid "— or —"
msgstr "— ή —"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Χρήστης"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Wil Odoo, 2024
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/es/>\n"
"Language: 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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr " <i class=\"fa fa-arrow-right\"/>Generar una Clave de Acceso"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
"0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +31,14 @@ msgstr "Clave de acceso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID de aplicación"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplicar"
@ -55,60 +52,73 @@ msgstr "Archivo adjunto"
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 para mostrar"
#. module: web_unsplash
#. odoo-python
#: 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
#. odoo-python
#: 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
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obtenga una clave de acceso"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Pegue su clave de acceso aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Pegue su ID de aplicación aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (a través de Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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 "
@ -121,54 +131,47 @@ msgstr "Imagen de campo Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "La búsqueda no está disponible temporalmente"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Configure Unsplash para acceder a fotos libres de derechos."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Algo salió mal"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Llave no autorizada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Subiendo %s '%s' imágenes."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Subiendo %(count)s imágenes “%(query)s”."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Subiendo '%s' imagen."
@ -179,21 +182,21 @@ msgstr "Usuario"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "y pegue"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "y péguela aquí:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "aquí:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Subiendo %s '%s' imágenes."

View file

@ -1,29 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Fernanda Alvarez, 2025
#
# * web_unsplash
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Fernanda Alvarez, 2025\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-09-17 07:46+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
"odoo-19/web_unsplash/es_419/>\n"
"Language: es_419\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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr " <i class=\"fa fa-arrow-right\"/>Generar una clave de acceso"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +26,14 @@ msgstr "Clave de acceso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID de aplicación"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplicar"
@ -55,59 +47,72 @@ msgstr "Archivo adjunto"
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Mostrar nombre"
#. module: web_unsplash
#. odoo-python
#: 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
#. odoo-python
#: 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
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obtener una clave de acceso"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Pega tu clave de acceso aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Pega tu ID de aplicación aquí"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (a través de Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Compruebe su clave de acceso Unsplash y su ID de aplicación."
msgstr "Compruebe su clave de acceso a Unsplash y su ID de aplicación."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Compruebe su conexión a internet o póngase en contacto con un administrador."
@ -115,58 +120,51 @@ msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Imagen de campo Qweb"
msgstr "Campo Qweb de imagen"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "La búsqueda no está disponible por el momento"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Configure Unsplash para tener acceso a fotos libres de regalías."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Algo salió mal"
msgstr "Ocurrió un error"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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."
"Excedió el número máximo de búsquedas. Intente dentro de una hora o cambie "
"su cuenta."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Clave no autorizada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Subiendo %s \"%s\" imágenes."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Subiendo %(count)s imágenes %(query)s."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Subiendo \"%s\" imagen."
@ -177,21 +175,18 @@ msgstr "Usuario"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "y pegar"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "y pegar aquí:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "aquí:"

View file

@ -1,32 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Triine Aavik <triine@avalah.ee>, 2022
# Martin Talts <martin.t@avalah.ee>, 2022
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
# Martin Trigaux, 2022
# Anna, 2023
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Anna, 2023\n"
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 13:02+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/et/>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Loo ligipääsuvõti"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -35,16 +32,14 @@ msgstr "Ligipääsuvõti"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Rakenduse ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Kinnita"
@ -58,59 +53,72 @@ msgstr "Manus"
msgid "Config Settings"
msgstr "Seadistused"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Kuvatav nimi"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "Viga: Tundmatu Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "Viga: Tundmatu unsplash teavituse URL!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Hangi juurdepääsuvõti"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Kleebi enda juurdepääsuvõti siia"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Kleebi enda rakenduse ID siia"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotod (Unsplash'i abiga)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Palun kontrolli enda Unsplashi juurdepääsuvõtit ja rakenduse ID-d."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Kontrollige internetiühendust või võtke ühendust administraatoriga."
@ -121,52 +129,45 @@ msgstr "Qweb Pildi Väli"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Otsingut ei saa ajutiselt kasutada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Seadistage Unsplash, et tekiks juurdepääs autoritasuta fotodele"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Midagi läks valesti."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr "Maksimaalne otsingute arv on ületatud. Proovige tunni pärast uuesti."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Autoriseerimata võti"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Piltide %s '%s' üleslaadimine.."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Piltide %(count)s '%(query)s' üleslaadimine.."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Piltide '%s' üleslaadimine.."
@ -177,21 +178,21 @@ msgstr "Kasutaja"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "ja kleebi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "ja kleebi siia:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "siia:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Piltide %s '%s' üleslaadimine.."

View file

@ -1,31 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
# Hamed Mohammadi <hamed@dehongi.com>, 2023
# Martin Trigaux, 2023
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/fa/>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> تولید یک کلید دسترسی"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -34,16 +30,14 @@ msgstr "کلید دسترسی"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "شناسه برنامه"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "اعمال"
@ -57,59 +51,72 @@ msgstr "پیوست"
msgid "Config Settings"
msgstr "تنظیمات پیکربندی"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "خطا: Unsplash URL ناشناخته!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "خطای: Unsplash اطلاع URL ناشناخته!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "دریافت کلید دسترسی"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "کلید دسترسی اینجا کپی کنید"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "شناسه برنامه اینجا کپی کنید"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "تصاویر (با Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "لطفا شناسه برنامه و کلید دسترسی آن اسپلش خود چک کنید."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "لطفا ارتباط اینترنت خود را چک کنید یا با مدیر تماس بگیرید."
@ -120,54 +127,47 @@ msgstr "تصویر فیلد کیو وب"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "جستجو فعلا در دسترس نیست"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "راه‌اندازی Unsplash برای دسترسی به عکس‌های رایگان حق امتیاز."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "یک چیزی اشتباه است"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"حداکثر تعداد جستجو تمام شده است. لطفا یک ساعت بعد امتحان کنید یا به یک حسب "
"بهتر توسعه دهید."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "کلید نا معتبر"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "بارگذاری تصاویر '%s' به تعداد %s."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "بارگذاری تصاویر '%(count)s' به تعداد %(query)s."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "در حال آپلود تصویر '%s'."
@ -178,21 +178,18 @@ msgstr "کاربر"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "و جای‌گذاری کنید"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "و آن را اینجا بچسبانید:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "متن اصلی:"

View file

@ -1,31 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Martin Trigaux, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/fi/>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Luo pääsyavain"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -34,18 +32,16 @@ msgstr "Pääsyavain"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Sovellustunnus"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Muuta"
msgstr "Käytä"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
@ -57,117 +53,123 @@ msgstr "Liite"
msgid "Config Settings"
msgstr "Asetukset"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "VIRHE: Tuntematon Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "VIRHE: Tuntematon Unsplash-ilmoituksen URL-osoite!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Luo pääsyavain"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Hanki pääsyavain"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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 "Tunnus"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Liitä käyttöoikeusavaimesi tähän"
msgstr "Liitä pääsyavaimesi tähän"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Liitä sovelluksesi tunnus tähän"
msgstr "Liitä sovellustunnus tähän"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Kuvat (Unsplashin kautta)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Tarkista Unsplash-avaimesi ja sovellustunnuksesi."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Tarkista internetyhteytesi tai ota yhteyttä ylläpitäjään."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Qweb kentän kuva"
msgstr "Qweb-kenttä, Kuva"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Haku ei ole tilapäisesti käytettävissä"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Asenna Unsplash, jotta saat käyttöösi rojaltivapaita kuvia."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Jokin meni vikaan"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Hakujen enimmäismäärä on ylitetty. Yritä uudelleen tunnin kuluttua tai "
"vaihda parempaan tiliin."
"laajenna parempaan tiliin."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Luvaton avain"
msgstr "Valtuuttamaton avain"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Kuvien lataaminen %s '%s'."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Kuvien lataaminen %(count)s '%(query)s'."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Kuvan '%s' lataaminen."
@ -178,21 +180,21 @@ msgstr "Käyttäjä"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "ja liitä"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "ja liitä se tänne:"
msgstr "ja liitä se tähän:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "täällä:"
msgstr "tähän:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Kuvien lataaminen %s '%s'."

View file

@ -1,30 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Cécile Collart <cco@odoo.com>, 2022
# Martin Trigaux, 2022
# Jolien De Paepe, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Manon Rondou (ronm)" <ronm@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Jolien De Paepe, 2023\n"
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-15 12:13+0000\n"
"Last-Translator: \"Manon Rondou (ronm)\" <ronm@odoo.com>\n"
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/fr/>\n"
"Language: 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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Générer une clé d'accès"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +32,14 @@ msgstr "Clé d'accès"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID d'application"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Appliquer"
@ -56,120 +53,126 @@ msgstr "Pièce jointe"
msgid "Config Settings"
msgstr "Paramètres de configuration"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 d'affichage"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERREUR : URL Unsplash inconnue !"
#. module: web_unsplash
#. odoo-python
#: 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
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Générer une clé d'accès"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obtenir une clé d'accès"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Coller votre clé d'accès ici"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Coller votre ID d'application ici"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Photos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Vérifiez votre connexion internet ou contacter votre administrateur. "
msgstr "Vérifiez votre connexion internet ou contacter votre administrateur."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Champ Qweb image"
msgstr "Qweb Champ Image"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "La recherche est temporairement indisponible"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Configurez Unsplash pour accéder à des photos libres de droits."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Un problème est survenu"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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. Veuillez réessayer dans une "
"heure ou passer au compte supérieur."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Clé non autorisée"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Téléchargement de %s images '%s'."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Ajout de %(count)s images '%(query)s '."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Téléchargement de l'image '%s'."
msgstr "Ajout de l'image '%s'."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
@ -178,21 +181,21 @@ msgstr "Utilisateur"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "et collez"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "et collez-le ici :"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "ici :"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Téléchargement de %s images '%s'."

View file

@ -1,27 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
#
# Translators:
# Qaidjohar Barbhaya, 2023
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
@ -33,14 +33,12 @@ msgstr ""
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "Apply"
@ -57,56 +55,48 @@ msgstr "Config Settings"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -118,51 +108,42 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgid "The max number of searches is exceeded. Please retry in an hour or extend to a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
@ -174,20 +155,17 @@ msgstr "User"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,30 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
# Yihya Hugirat <hugirat@gmail.com>, 2022
# Martin Trigaux, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/he/>\n"
"Language: 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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
"n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +31,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "החל"
@ -56,59 +52,72 @@ msgstr "קובץ מצורף"
msgid "Config Settings"
msgstr "הגדר הגדרות"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -119,52 +128,45 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -175,21 +177,18 @@ msgstr "משתמש"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,29 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Wil Odoo, 2024
# Ujjawal Pathak, 2025
#
# * web_unsplash
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:59+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +26,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "अप्लाई करें"
@ -55,59 +47,72 @@ msgstr "अटैचमेंट"
msgid "Config Settings"
msgstr "कॉन्फ़िगरेशन सेटिंग"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -118,52 +123,45 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -174,21 +172,18 @@ msgstr "उपयोगकर्ता"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,55 +1,47 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Tina Milas, 2022
# Bole <bole@dajmi5.com>, 2022
# Igor Krizanovic <krizanovic.igor@gmail.com>, 2022
# hrvoje sić <hrvoje.sic@gmail.com>, 2022
# Hrvoje Sić <hrvoje.sic@gmail.com>, 2022
# Martin Trigaux, 2022
# Luka Carević <luka@uvid.hr>, 2025
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Luka Carević <luka@uvid.hr>, 2025\n"
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Stvorite pristupni ključ"
"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"
"X-Generator: Weblate 5.12.2\n"
#. 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č"
msgstr "Pristupni ključ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID aplikacije"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Primijeni"
@ -63,59 +55,72 @@ msgstr "Prilog"
msgid "Config Settings"
msgstr "Postavke"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Generirajte pristupni ključ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Nabavite pristupni ključ"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Ovdje zalijepite pristupni ključ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Ovdje zalijepite svoj ID aplikacije"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotografije (preko Unsplasha)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -126,52 +131,45 @@ msgstr "Qweb polje slika"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Postavi Unsplash za pristup fotografijama bez autorskih prava."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -182,21 +180,18 @@ msgstr "Korisnik"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "i zalijepite"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "i zalijepite ga ovdje:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "ovdje:"

View file

@ -1,32 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
# Zsolt Godó <zsolttokio@gmail.com>, 2022
# Tamás Dombos, 2022
# krnkris, 2022
# Martin Trigaux, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -35,16 +33,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Alkalmazás"
@ -56,61 +52,74 @@ msgstr "Melléklet"
#. 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"
msgstr "Beállítások"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Megjelenített név"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -121,52 +130,45 @@ msgstr "Qweb mező kép"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -177,21 +179,18 @@ msgstr "Felhasználó"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,189 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,29 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Abe Manyo, 2022
# Martin Trigaux, 2022
#
# * web_unsplash
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-09-16 04:48+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/id/>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Buat Kunci Akses"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +26,14 @@ msgstr "Kunci Akses"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID Aplikasi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Terapkan"
@ -55,142 +47,145 @@ msgstr "Lampiran"
msgid "Config Settings"
msgstr "Pengaturan Konfigurasi"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERROR: URL Unsplash Tidak Dikenali!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERROR: URL notifikasi Unsplash Tidak Dikenali!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Buat Access Key"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Dapatkan kunci Akses"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Tempel kunci akses Anda di sini"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Tempel ID aplikasi Anda di sini"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Photo (melalui Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Mohon periksa kunci akses Unsplash dan ID aplikasi Anda."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Silakan periksa jaringan internet Anda atau hubungi administrator."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Field Gambar Qweb"
msgstr "Kolom Gambar Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Pencarian sementara tidak tersedia"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Setup Unsplash untuk mengakses foto bebas royalti."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Terjadi kesalahan"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Jumlah pencarian maksimal sudah dilewati. Silakan coba lagi dalam satu jam "
"atau mengganti menjadi akun yang lebih baik."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Kunci Tidak Sah"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Mengunggah %s gambar '%s'."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Mengungah %(count)s gambar '%(query)s'"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Mengungah gambar '%s'."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "User"
msgstr "Pengguna"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "dan tempel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "dan tempel di sini:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "di sini:"

View file

@ -1,28 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# jonasyngvi, 2024
# Kristófer Arnþórsson, 2024
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 16.0beta\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Kristófer Arnþórsson, 2024\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
@ -34,80 +29,70 @@ msgstr ""
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "Virkja"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Viðhengi"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Stillingarvalkostir"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -119,76 +104,64 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgid "The max number of searches is exceeded. Please retry in an hour or extend to a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Notandi"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Sergio Zanchetta <primes2h@gmail.com>, 2022
# Martin Trigaux, 2022
# Sergio Zanchetta <primes2h@gmail.com>, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Marianna Ciofani (cima)" <cima@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-23 15:40+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/it/>\n"
"Language: 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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Genera una chiave di accesso"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
"0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +31,14 @@ msgstr "Chiave di accesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID applicazione"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Applica"
@ -55,59 +52,72 @@ msgstr "Allegato"
msgid "Config Settings"
msgstr "Impostazioni di configurazione"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERRORE: URL Unsplash sconosciuto."
#. module: web_unsplash
#. odoo-python
#: 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
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Genera chiave di accesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Ottieni una Access Key"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Incolla qui la chiave di accesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Incolla qui l'ID applicazione"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Foto (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Controllare la chiave di accesso e l'ID applicazione Unsplash."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Controllare la connessione internet o contattare l'amministratore."
@ -118,54 +128,47 @@ msgstr "Campo QWeb immagine"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Ricerca temporaneamente non disponibile"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Imposta Unsplash per accedere alle foto gratuite."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Chiave non autorizzata"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Caricamento di %s '%s' in corso."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Caricamento %(count)s immagini '%(query)s'."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Caricamento di '%s' in corso."
@ -176,21 +179,24 @@ msgstr "Utente"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "e incolla"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "e incolla qui:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "qui:"
#~ msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
#~ msgstr "<i class=\"oi oi-arrow-right\"/> Genera una chiave di accesso"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Caricamento di %s '%s' in corso."

View file

@ -1,29 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Junko Augias, 2023
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Junko Augias, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-07 10:15+0000\n"
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> アクセスキーを生成"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,138 +30,144 @@ msgstr "アクセスキー"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "アプリケーションID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "適用"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "添付"
msgstr "添付ファイル"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "コンフィグ設定"
msgstr "構成設定"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "エラー: 不明なUnsplash URLです"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "エラー: 不明なUnsplash通知URLです"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "アクセスキーを取得"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "アクセスキーをここに貼り付けて下さい。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "アプリケーションIDをここに貼り付けて下さい。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "写真 (Unsplash経由)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "アクセスキーとアプリケーションIDを確認して下さい。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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項目イメージ"
msgstr "Qwebフィールド画像"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "検索は一時的に利用できません"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Unsplashを設定して、ロイヤリティフリーの写真にアクセスしましょう。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "何かの問題が発生しました。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgstr "最大検索数を超えています。1時間後に再試行するか、より良いアカウントに変更して下さい。"
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"最大検索数を超えています。1時間後に再試行するか、より良いアカウントに変更して"
"下さい。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "未承認キー"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "画像 %s '%s' アップロード中"
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s '%(query)s' 画像をアップロードしています。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "画像 '%s' アップロード中"
@ -174,21 +178,18 @@ msgstr "ユーザ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "と貼付け"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "そしてここに貼付け"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "ここ:"

View file

@ -1,24 +1,21 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sw\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -27,16 +24,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr ""
@ -50,59 +45,72 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -113,52 +121,45 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -169,21 +170,18 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,196 +1,170 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Sengtha Chay <sengtha@gmail.com>, 2023
# Lux Sok <sok.lux@gmail.com>, 2023
#
# Sengtha Chay <sengtha@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server saas~11.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n"
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
"Language: km\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: km\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>បង្កើតសោរចូល"
msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr "សោរចូល"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "កំណត់យក"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "ឯកសារ​ភ្ជាប់"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "កំណត់រចនាសម្ព័ន្ធ"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "កំហុស: មិនស្គាល់ Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "កំហុស: មិនស្គាល់Unsplash URLប្រាប់ដំនឹង !"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr "ចម្លងសោរចូលរបស់អ្នកទីនេះ"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr "ចម្លង អត្តសញ្ញាណពាក្យសុំរបស់អ្នកទីនេះ"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr "សូមពិនិត្យមើលសោរចូល Unsplashនិងអត្តសញ្ញាណពាក្យសុំ របស់អ្នក។"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your internet connection or contact administrator."
msgstr "សូមពិនិត្យបណ្តាញអិនធើនិតរបស់អ្នកឬទាក់ទងអ្នកចាត់ការ"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "បណ្តាញរូបភាព Qweb"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr "ការស្វែងរកគឺជាបណ្តោះអាសន្នមិនមាន"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr "មានបញ្ហាខ្លះកើតឡើង"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
msgid "Unauthorized Key"
msgstr "សោរគ្មានការអនុញ្ញាត"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "អ្នកប្រើប្រាស់"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,30 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Daye Jeong, 2023
# Sarah Park, 2025
#
# Sarah Park, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Sarah Park, 2025\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 19:01+0000\n"
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ko/>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> 액세스 키 생성"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +32,14 @@ msgstr "액세스 키"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "애플리케이션 ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "적용"
@ -54,61 +51,74 @@ msgstr "첨부 파일"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "설정 구성"
msgstr "환경 설정"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "오류 : 알 수 없는 Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "오류 : 알 수 없는 Unsplash 알림 URL!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "액세스 키 얻기"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "여기에 액세스 키를 입력하세요"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "여기에 응용 프로그램 ID를 입력하세요"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "사진 (Unsplash를 통해 제공)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Unsplash 액세스 키 및 응용 프로그램 ID를 다시 확인하세요"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "인터넷 연결을 확인하거나 관리자에게 문의하세요"
@ -119,52 +129,47 @@ msgstr "Qweb 이미지 필드"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "검색을 일시적으로 사용할 수 없습니다"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "저작권이 없는 사진에 액세스하려면 Unsplash를 설정하세요."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "문제가 발생했습니다"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgstr "최대 검색 횟수를 초과했습니다. 한 시간 후에 다시 시도하거나 더 나은 계정으로 확장하십시오."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"최대 검색 횟수를 초과했습니다. 한 시간 후에 다시 시도하거나 더 나은 계정으로 "
"확장하십시오."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "승인되지 않은 키"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "%s '%s' 이미지 파일을 업로드하는 중입니다."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s의 '%(query)s' 이미지를 업로드 중입니다."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "'%s' 이미지 파일을 업로드하는 중입니다."
@ -175,21 +180,18 @@ msgstr "사용자"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "및 붙여넣기"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "및 여기에 붙여넣기:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "여기:"

View file

@ -1,28 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
#
# * web_unsplash
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:59+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
"odoo-19/web_unsplash/ckb/>\n"
"Language: ku\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -31,82 +26,93 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr ""
msgstr "جێبەجێکردن"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
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_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -117,77 +123,67 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Gebruiker"
msgstr "بەکارهێنەر"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,23 +1,23 @@
# 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"
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
"PO-Revision-Date: 2019-08-26 09:15+0000\n"
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
"Language: lb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
@ -26,75 +26,73 @@ msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:57
#, python-format
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "Apply"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#: code:addons/web_unsplash/controllers/main.py:34
#, python-format
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "Get 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. openerp-web
#: code:addons/web_unsplash/static/src/xml/unsplash_image_widget.xml:84
#, python-format
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -104,57 +102,66 @@ 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
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."
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
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"
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "Users"
msgid "User"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
msgid "here:"
msgstr ""

View file

@ -1,30 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2022
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\n"
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>Generuoti prieigos raktą"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +32,14 @@ msgstr "Prieigos raktas"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Taikyti"
@ -56,59 +53,72 @@ msgstr "Prisegtukas"
msgid "Config Settings"
msgstr "Konfigūracijos nustatymai"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Čia įdėkite savo prieigos raktą"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -119,52 +129,45 @@ msgstr "QWEB lauko paveikslėlis"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -175,21 +178,18 @@ msgstr "Vartotojas"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,30 +1,20 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# ievaputnina <ievai.putninai@gmail.com>, 2022
# Arnis Putniņš <arnis@allegro.lv>, 2022
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: \n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,82 +23,93 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Pielietot"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Pielikums"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Konfigurācijas uzstādījumi"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -119,77 +120,67 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Lietotājs"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,193 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Niyas Raphy, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Niyas Raphy, 2023\n"
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ml\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "അപ്ലൈ"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "അറ്റാച്ച്മെന്റ്"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "കോൺഫിഗറേഷൻ സെറ്റിങ്‌സ്"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "യൂസർ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,29 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
# Martin Trigaux, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/mn/>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +29,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Хэрэгжүүлэх"
@ -55,59 +50,72 @@ msgstr "Хавсралт"
msgid "Config Settings"
msgstr "Тохиргооны тохируулга"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -118,52 +126,45 @@ msgstr "Qweb талбарын зураг"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -174,21 +175,18 @@ msgstr "Хэрэглэгч"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,193 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Mehjabin Farsana, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Mehjabin Farsana, 2023\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "Mohon"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Lampiran"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Tetapan Konfigurasi"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "pengguna"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,29 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# sackda chanthasombath, 2023
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
#
# * web_unsplash
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:59+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/my/>\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,82 +26,93 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr ""
msgstr "လုပ်ဆောင်"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
msgstr "ပူးတွဲ"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "ການຕັ້ງຄ່າ"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -118,77 +123,67 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "ຜູ້ໃຊ້"
msgstr "အသုံးပြုသူ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,29 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
# Martin Trigaux, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/nb_NO/>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +29,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Bruk"
@ -55,59 +50,72 @@ msgstr "Vedlegg"
msgid "Config Settings"
msgstr "Innstillinger"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -118,52 +126,45 @@ msgstr "Qweb Felt-bilde"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -174,21 +175,18 @@ msgstr "Bruker"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,30 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
# Martin Trigaux, 2022
# Jolien De Paepe, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Bren Driesen <brdri@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Jolien De Paepe, 2023\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-14 08:18+0000\n"
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/nl/>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Genereer een toegangssleutel"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -33,16 +31,14 @@ msgstr "Toegangssleutel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Applicatie ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Toepassen"
@ -54,61 +50,74 @@ msgstr "Bijlage"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Configuratie instellingen"
msgstr "Configuratie-instellingen"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Weergavenaam"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "FOUTMELDiNG: onbekende Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "FOUTMELDING: onbekende Unsplash notify URL!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Een toegangssleutel genereren"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Een toegangssleutel verkrijgen"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Plak je toegangssleutel hier"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Plak je applicatie ID hier"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Foto's (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Controleer je Unsplash toegangssleutel en application ID."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Je dient je internetverbinding te controleren of je administrator te "
@ -121,54 +130,47 @@ msgstr "Qweb veld afbeelding"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Zoeken is tijdelijk onbeschikbaar"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Stel Unsplash in voor toegang tot royaltyvrije foto's."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Er is iets misgegaan"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Het maximale aantal zoekopdrachten is bereikt. Probeer het over een uur "
"opnieuw of breid je account uit."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Ongeautoriseerde sleutel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Uploaden %s '%s' afbeeldingen."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s '%(query)s' afbeeldingen aan het uploaden."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Uploaden '%s' afbeelding."
@ -179,21 +181,21 @@ msgstr "Gebruiker"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "en plakken"
msgstr "en plak"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "en hier plakken:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "hier"
msgstr "hier:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Uploaden %s '%s' afbeeldingen."

View file

@ -1,189 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: no\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Maksym <ms@myodoo.pl>, 2022
# Karol Rybak <karolrybak85@gmail.com>, 2022
@ -9,25 +9,25 @@
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
# Martin Trigaux, 2022
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Marta (wacm)" <wacm@odoo.com>, 2025, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2026-02-25 14:50+0000\n"
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/pl/>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Wygeneruj klucz dostępu"
"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"
"X-Generator: Weblate 5.14.3\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -36,16 +36,14 @@ msgstr "Klucz dostępu"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID aplikacji"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Zastosuj"
@ -57,61 +55,74 @@ msgstr "Załącznik"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Ustawienia konfiguracji"
msgstr "Konfiguracja ustawień"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "BŁĄD: nieznany Url Unsplash!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "BŁĄD: nieznany Url powiadomienia Unsplash"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Generuj klucz dostępu"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Uzyskaj klucz dostępu"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Wklej tutaj swój klucz dostępu"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Wklej tutaj ID Twojej aplikacji"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Zdjęcia (przez Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Sprawdź proszę klucz dostępowy Unsplash i ID aplikacji."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Sprawdź połączenie z internetem lub skontaktuj się z administratorem."
@ -122,54 +133,47 @@ msgstr "Obraz pola Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Wyszukiwanie jest tymczasowo niedostępne"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Skonfiguruj Unsplash aby uzyskać dostęp do darmowych zdjęć."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Coś poszło nie tak"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Maksymalna liczba wyszukań została osiągnięta. Proszę spróbuj ponownie za "
"godzinę lub rozszerz konto."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Nieautoryzowany klucz"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Przesyłanie obrazów %s '%s'"
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Przesyłanie obrazów %(count)s '%(query)s'"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Przesyłanie obrazu '%s'"
@ -180,21 +184,21 @@ msgstr "Użytkownik"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "i wklej"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "i wklej tutaj"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "tutaj:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Przesyłanie obrazów %s '%s'"

View file

@ -1,31 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2022
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
# Manuela Silva <mmsrs@sky.com>, 2023
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2023\n"
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/pt/>\n"
"Language: 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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>Gerar Chave de acesso "
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -34,16 +33,14 @@ msgstr "Chave de acesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
msgstr "ID do aplicativo"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplicar"
@ -57,115 +54,124 @@ msgstr "Anexo"
msgid "Config Settings"
msgstr "Configurações"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
msgstr "ERRO: URL do Unplash desconhecida."
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERRO: URL de notificação do Unsplash desconhecida."
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
msgstr "Obter chave de acesso"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Colar chave de acesso "
msgstr "Colar chave de acesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
msgstr "Copie o ID do seu aplicativo aqui"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
msgstr "Fotos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
msgstr "Verifique a chave de acesso do Unsplash e o ID de aplicativo."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Verifique sua conexão com a internet ou entre em contato com o administrador."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr ""
msgstr "Campo Qweb Imagem"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
msgstr "A pesquisa está temporariamente indisponível"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
msgstr "Instale o Unsplash ter acesso a fotos sem direitos autorias."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
msgstr "Algo deu errado"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"O número máximo de buscas foi ultrapassado. Tente novamente em uma hora ou "
"passe para uma conta melhor."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
msgstr "Chave não autorizada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "A enviar %s '%s' imagens."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "A enviar %(count)s '%(query)s' imagens."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "A enviar '%s' imagem."
@ -176,21 +182,21 @@ msgstr "Utilizador"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
msgstr "e cole"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
msgstr "e cole aqui:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""
msgstr "aqui:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "A enviar %s '%s' imagens."

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Maitê Dietze, 2023
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Maitê Dietze (madi)" <madi@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Maitê Dietze, 2023\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-13 17:15+0000\n"
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
"odoo-19/web_unsplash/pt_BR/>\n"
"Language: 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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +31,14 @@ msgstr "Chave de acesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID do aplicativo"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplicar"
@ -56,118 +53,123 @@ msgid "Config Settings"
msgstr "Configurações"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERRO: URL do Unplash desconhecida!"
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Exibir nome"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERRO: URL do Unplash desconhecida."
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERRO: URL de notificação do Unsplash desconhecida."
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Gerar uma chave de acesso"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obter chave de acesso"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Cole sua chave de acesso aqui"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Copie o ID do seu aplicativo aqui"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Verifique a chave de acesso do Unsplash e o ID de aplicativo."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Verifique sua conexão com a internet ou entre em contato com o "
"administrador."
"Verifique sua conexão com a internet ou entre em contato com o administrador."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Qweb Field Image"
msgstr "Campo Qweb Imagem"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "A busca está temporariamente indisponível"
msgstr "A pesquisa está temporariamente indisponível"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Instale o Unsplash para acessar fotos sem direitos autorias."
msgstr "Instale o Unsplash ter acesso a fotos sem direitos autorias."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Algo deu errado"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"O número máximo de pesquisas foi ultrapassado. Tente novamente em uma hora "
"ou passe para uma conta melhor."
"O número máximo de buscas foi ultrapassado. Tente novamente em uma hora ou "
"passe para uma conta melhor."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Chave não autorizada"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Carregando %s \"%s\" imagens."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Carregando %(count)s '%(query)s' imagens."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Carregando \"%s\" imagem."
@ -178,21 +180,24 @@ msgstr "Usuário"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "e cole"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "e cole aqui:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "aqui:"
#~ msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
#~ msgstr "<i class=\"oi oi-arrow-right\"/> Gerar uma chave de acesso"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Carregando %s \"%s\" imagens."

View file

@ -1,33 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Dan Stoica <danila@terrabit.ro>, 2022
# Dorin Hongu <dhongu@gmail.com>, 2022
# Foldi Robert <foldirobert@nexterp.ro>, 2022
# Hongu Cosmin <cosmin513@gmail.com>, 2022
# Martin Trigaux, 2022
# Larisa_nexterp, 2025
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Larisa_nexterp, 2025\n"
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>Generați o cheie de acces"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -36,16 +33,14 @@ msgstr "Cheie Acces"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID aplicație"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Aplică"
@ -59,59 +54,72 @@ msgstr "Atașament"
msgid "Config Settings"
msgstr "Setări de configurare"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "EROARE: URL Unsplash necunoscut!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "EROARE: URL de notificare Unsplash necunoscut!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Generează o cheie de acces"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Obține o cheie de acces"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Lipiți cheia de acces aici"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Lipiți ID-ul cererii aici"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotografii (prin Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Vă rugăm să verificați cheia de acces Unsplash și ID-ul aplicației."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Vă rugăm să verificați conexiunea la internet sau să contactați "
@ -124,55 +132,48 @@ msgstr "Imagine Câmp Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Căutarea este temporar indisponibilă"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
"Configurați Unsplash pentru a accesa fotografii fără drepturi de autor."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Ceva n-a mers bine"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Cheie neautorizată"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Se încarcă %s imagini '%s'."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Se încarcă %(count)s imagini '%(query)s'."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Se încarcă imaginea '%s'."
@ -183,21 +184,18 @@ msgstr "Operator"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "și lipiți"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "și lipiți aici:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "aici:"

View file

@ -1,34 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Irina Fedulova <istartlin@gmail.com>, 2022
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
# Сергей Шебанин <sergey@shebanin.ru>, 2022
# Martin Trigaux, 2022
# ILMIR <karamov@it-projects.info>, 2022
# Wil Odoo, 2024
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>Создать ключ доступа</i>"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -37,16 +30,14 @@ msgstr "Ключ доступа"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID приложения"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Применить"
@ -58,119 +49,128 @@ msgstr "Вложение"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Конфигурационные настройки"
msgstr "Параметры конфигурации"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "Display Name"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ОШИБКА: Неизвестное Unsplash URL!"
msgstr "ОШИБКА: Неизвестная ссылка Unsplash!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ОШИБКА: Неизвестное сообщение Unsplash URL!"
msgstr "ОШИБКА: Неизвестная ссылка уведомления Unsplash!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Получить ключ доступа"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Вставьте ваш ключ доступа здесь"
msgstr "Вставьте здесь ваш ключ доступа"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Вставьте ваш ID приложения здесь"
msgstr "Вставьте здесь ваш идентификатор приложения"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Фотоз Unsplash)"
msgstr "Фотографии (через Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Проверьте ключ доступа и ID программы Unsplash."
msgstr ""
"Пожалуйста, проверьте свой ключ доступа Unsplash и идентификатор приложения."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Проверьте подключение к интернету или обратитесь к администратору."
msgstr ""
"Пожалуйста, проверьте подключение к Интернету или свяжитесь с "
"администратором."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
msgid "Qweb Field Image"
msgstr "Поле с изображением"
msgstr "Поле изображения Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Поиск временно недоступен"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Установите Unsplash, чтобы получить доступ к бесплатным фотографиям."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Что-то пошло не так"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Превышен максимальное количество поисков. Повторите попытку через час или "
"расширьте свой аккаунт."
"Превышено максимальное число поисков. Пожалуйста, повторите через час или "
"приобретите улучшенный аккаунт."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Незарегистрированный ключ"
msgstr "Неавторизованный ключ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Загрузка %s '%s' изображений."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Загрузка %(count)s '%(query)s' изображений."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Загрузка изображения '%s'."
@ -181,21 +181,24 @@ msgstr "Пользователь"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "и вставить"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "и вставьте его сюда:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "здесь:"
#~ msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
#~ msgstr "<i class=\"oi oi-arrow-right\"/> Сгенерируйте ключ доступа"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Загрузка %s '%s' изображений."

View file

@ -1,28 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
#
# Translators:
# Martin Trigaux, 2022
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Vytvoriť prístupový kľúč"
"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:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -31,16 +27,14 @@ msgstr "Prístupový kľúč"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Použiť"
@ -54,59 +48,72 @@ msgstr "Príloha"
msgid "Config Settings"
msgstr "Nastavenia konfigurácie"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "CHYBA: Neznáma Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Vložte svoj prístupový kľúč"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Vložte svoje ID aplikácie"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Skontrolujte vaše internetové pripojenie alebo kontaktujte administrátora."
@ -118,52 +125,45 @@ msgstr "Qweb pole obrázok"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Hľadanie dočasne nedostupné"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Niečo sa pokazilo"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -174,21 +174,18 @@ msgstr "Užívateľ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,34 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Jasmina Macur <jasmina@hbs.si>, 2022
# Tadej Lupšina <tadej@hbs.si>, 2022
# Martin Trigaux, 2022
# Grega Vavtar <grega@hbs.si>, 2022
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Tomaž Jug <tomaz@editor.si>, 2023
# Katja Deržič, 2024
#
# * web_unsplash
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Katja Deržič, 2024\n"
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-09-16 21:26+0000\n"
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/sl/>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Ustvari dostopni ključ"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
"n%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -37,16 +27,14 @@ msgstr "Ključ za dostop"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Uporabi"
@ -60,59 +48,72 @@ msgstr "Priponka"
msgid "Config Settings"
msgstr "Uredi nastavitve"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Tukaj prilepite svoj ključ za dostop"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Preverite internetno povezavo ali se obrnite na skrbnika."
@ -123,54 +124,47 @@ msgstr "Qweb polje - slika"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Iskanje začasno ni na voljo"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Nekaj je šlo narobe"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Največje število iskanj je preseženo. Ponovno poskusite čez eno uro ali pa "
"preklopite na boljši račun."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Nalaganje '%s' slike"
@ -181,21 +175,18 @@ msgstr "Uporabnik"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "in prilepite tukaj:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "tukaj:"

View file

@ -1,24 +1,20 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-12-30 18:37+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: \n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -27,16 +23,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr ""
@ -50,59 +44,72 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -113,52 +120,45 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -169,21 +169,18 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,198 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
# Martin Trigaux, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# コフスタジオ, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: コフスタジオ, 2024\n"
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr "Access Key"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Application ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr "Primenite"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Prilog"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Podešavanje konfiguracije"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ERROR: Unknown Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERROR: Unknown Unsplash notify URL!"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr "Get an Access key"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr "Paste your access key here"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr "Paste your application ID here"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr "Photos (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr "Please check your Unsplash access key and application ID."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your internet connection or contact administrator."
msgstr "Please check your internet connection or contact administrator."
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr "Search is temporarily unavailable"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr "Setup Unsplash to access royalty free photos."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr "Something went wrong"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgstr ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr "Unauthorized Key"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Uploading %s '%s' images."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr "Uploading '%s' image."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Korisnik"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr "and paste"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr "and paste it here:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr "here:"

View file

@ -0,0 +1,194 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
# Martin Trigaux, 2022
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
"odoo-19/web_unsplash/sr_Latn/>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \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"
"X-Generator: Weblate 5.12.2\n"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Primenite"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Prilog"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Podešavanje konfiguracije"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 za prikaz"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr "Korisnik"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,31 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# Translators:
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
# Martin Trigaux, 2022
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
#
# * web_unsplash
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Hanna Kharraziha <hakha@odoo.com>, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2026-03-06 17:51+0000\n"
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/sv/>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.16.1\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -34,16 +27,14 @@ msgstr "Åtkomstnyckel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Applikations-ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Verkställ"
@ -57,59 +48,72 @@ msgstr "Bilaga"
msgid "Config Settings"
msgstr "Inställningar"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "FEL: Okänd Unsplash-URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ERROR: Okänd URL för Unsplash-meddelande!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Skapa en åtkomstnyckel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Skaffa en åtkomstnyckel"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Klistra in din åtkomstnyckel här"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Klistra in ditt ansöknings-ID här"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Foton (via Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Kontrollera din Unsplash-åtkomstnyckel och ditt applikations-ID."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Kontrollera din internetanslutning eller kontakta administratören."
@ -120,54 +124,47 @@ msgstr "Qweb fältbild"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Sökningen är tillfälligt otillgänglig"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Installera Unsplash för att få tillgång till royaltyfria foton."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Något gick fel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Det maximala antalet sökningar har överskridits. Försök igen om en timme "
"eller förläng till ett bättre konto."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Obehörig nyckel"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Laddar upp %s '%s' bilder."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Laddar upp %(count)s '%(query)s' bilder."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Laddar upp bilden \"%s\"."
@ -178,21 +175,18 @@ msgstr "Användare"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "och klistra in"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "och klistra in den här:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "här:"

View file

@ -1,189 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Apply"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js: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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading '%s' image."
msgstr ""
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
msgid "User"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "here:"
msgstr ""

View file

@ -1,28 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
#
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Wichanon Jamwutthipreecha, 2022\n"
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/th/>\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> สร้างคีย์การเข้าถึง"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -31,16 +29,14 @@ msgstr "คีย์การเข้าถึง"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ไอดีแอปพลิเคชัน"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "นำไปใช้"
@ -54,59 +50,72 @@ msgstr "การแนบ"
msgid "Config Settings"
msgstr "ตั้งค่าการกำหนดค่า"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ข้อผิดพลาด: Unsplash URL ที่ไม่รู้จัก!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ข้อผิดพลาด: Unsplash notify URL ที่ไม่รู้จัก!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "รับคีย์การเข้าถึง"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "วางคีย์การเข้าถึงของคุณที่นี่"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "วางไอดีแอปพลิเคชันของคุณที่นี่"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "ภาพถ่าย (ผ่าน Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "โปรดตรวจสอบรหัสการเข้าถึง Unsplash และรหัสแอปพลิเคชันของคุณ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "โปรดตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณหรือติดต่อผู้ดูแลระบบ"
@ -117,54 +126,45 @@ msgstr "ฟิลด์รูปภาพ QWeb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "การค้นหาไม่สามารถใช้ได้ชั่วคราว"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "ตั้งค่า Unsplash เพื่อเข้าถึงภาพถ่ายปลอดค่าลิขสิทธิ์"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "อะไรบางอย่างผิดปกติ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
msgstr ""
"เกินจำนวนสูงสุดของการค้นหา "
"โปรดลองอีกครั้งในอีกหนึ่งชั่วโมงหรือขยายไปยังบัญชีที่ดีกว่า"
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr "เกินจำนวนสูงสุดของการค้นหา โปรดลองอีกครั้งในอีกหนึ่งชั่วโมงหรือขยายไปยังบัญชีที่ดีกว่า"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "คีย์ที่ไม่ได้รับอนุญาต"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "กำลังอัปโหลด %s '%s' รูปภาพ"
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "กำลังอัปโหลด %(count)s '%(query)s' รูปภาพ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "อัปโหลด '%s' รูปภาพ"
@ -175,21 +175,21 @@ msgstr "ผู้ใช้"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "ิและวาง"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "และวางที่นี่:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "ที่นี่:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "กำลังอัปโหลด %s '%s' รูปภาพ"

View file

@ -1,7 +1,7 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# abc Def <hdogan1974@gmail.com>, 2022
# Erdinç Akın, 2022
@ -9,25 +9,24 @@
# Murat Kaplan <muratk@projetgrup.com>, 2022
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2022
# Martin Trigaux, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
# DeepL <noreply-mt-deepl@weblate.org>, 2025.
# Odoo Turkish Import <dyki+tr@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-15 12:45+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-21 14:46+0000\n"
"Last-Translator: Odoo Turkish Import <dyki+tr@odoo.com>\n"
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/tr/>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/>Bir Erişim Anahtarı Oluşturun"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -36,16 +35,14 @@ msgstr "Erişim anahtarı"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Uygulama Kimliği"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Uygula"
@ -59,60 +56,73 @@ msgstr "Ek"
msgid "Config Settings"
msgstr "Yapılandırma Ayarları"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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 "İsim Göster"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "HATA: Bilinmeyen Unsplash URL'si!"
#. module: web_unsplash
#. odoo-python
#: 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
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Erişim Anahtarı Oluşturma"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Erişim anahtarı alın"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Erişim anahtarınızı buraya yapıştırın"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Uygulama kimliğinizi buraya yapıştırın"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Fotoğraflar (Unsplash aracılığıyla)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "Lütfen internet bağlantınızı kontrol edin veya yöneticinize başvurun."
@ -123,54 +133,47 @@ msgstr "Qweb Görsel Alanı"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Arama geçici olarak kullanılamıyor"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Telifsiz fotoğraflara erişmek için Unsplash'ı kurun."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Bir şeyler yanlış gitti"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Maksimum arama sayısııldı. Lütfen bir saat içinde tekrar deneyin veya "
"daha iyi bir hesaba uzatın."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Yetkisiz Anahtar"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "%s '%s' resim yükleme."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s '%(query)s' resim yükleme."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "\"%s\" resmi yükleme."
@ -181,21 +184,21 @@ msgstr "Kullanıcı"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "ve yapıştır"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "ve buraya yapıştırın:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "burada:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "%s '%s' resim yükleme."

View file

@ -1,28 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
#
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:55+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/uk/>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: uk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Створити ключ доступу"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -31,16 +33,14 @@ msgstr "Ключ доступу"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID додатку"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Застосувати"
@ -54,117 +54,123 @@ msgstr "Прикріплення"
msgid "Config Settings"
msgstr "Налаштування"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "ПОМИЛКА: Невідома Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "ПОМИЛКА: Невідоме сповіщення Unsplash URL!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Отримати ключ доступу"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Вставте ваш ключ доступу тут"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Вставте ваш ID додатку тут"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Фото (через Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "Перевірте ключ доступу та ID додатку Unsplash."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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 "
msgstr "Зображення поля Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "Пошук тимчасово недоступний"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Встановіть Unsplash, щоб отримати доступ до безкоштовних фото."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Щось пішло не так"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Перевищено максимальну кількість пошуків. Повторіть спробу через годину або "
"розширте свій обліковий запис."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Незареєстрований ключ"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Завантаження зображень %s '%s'."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Завантаження зображень %(count)s '%(query)s'."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Завантаження зображення '%s'."
@ -175,21 +181,21 @@ msgstr "Користувач"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "і вставте"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "і вставте тут:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "тут:"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "Завантаження зображень %s '%s'."

View file

@ -0,0 +1,226 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
#
# Translated by:
# Deepvision - info@deepvision.uz | +998 77-093-0007
# Amon Olimov - amon.bars@gmail.com
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-10-08 18:39+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
#, fuzzy
msgid "Access Key"
msgstr "Kirish kaliti"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, fuzzy
msgid "Application ID"
msgstr "Ilova identifikatori"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "Apply"
msgstr "Qollash"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
#, fuzzy
msgid "Attachment"
msgstr "Ilova"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
#, fuzzy
msgid "Config Settings"
msgstr "Konfiguratsiya sozlamalari"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#, fuzzy
msgid "Display Name"
msgstr "Korsatiladigan nom"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, fuzzy
msgid "ERROR: Unknown Unsplash URL!"
msgstr "XATO: Noma'lum Unsplash URL manzili!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, fuzzy
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "XATO: Noma'lum Unsplash xabarnoma URL manzili!"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
#, fuzzy
msgid "Generate an Access Key"
msgstr "Kirish kalitini yaratish"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "Get an Access key"
msgstr "Kirish kalitini olish"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#, fuzzy
msgid "ID"
msgstr "ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "Paste your access key here"
msgstr "Kirish kalitingizni bu yerga joylang"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "Paste your application ID here"
msgstr "Ilova identifikatoringizni bu yerga joylang"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
#, fuzzy
msgid "Photos (via Unsplash)"
msgstr "Rasmlar (Unsplash orqali)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Please check your Unsplash access key and application ID."
msgstr ""
"Iltimos, Unsplash kirish kalitingiz va ilova identifikatoringizni tekshiring."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Please check your internet connection or contact administrator."
msgstr ""
"Iltimos, internet aloqangizni tekshiring yoki administrator bilan boglaning."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_qweb_field_image
#, fuzzy
msgid "Qweb Field Image"
msgstr "Qweb maydon tasviri"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Search is temporarily unavailable"
msgstr "Qidiruv vaqtincha mavjud emas"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Setup Unsplash to access royalty free photos."
msgstr "Mualliflik huquqisiz rasmlarga kirish uchun Unsplash-ni sozlang."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Something went wrong"
msgstr "Xatolik yuz berdi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr ""
"Qidiruvlar maksimal soniga yetildi. Iltimos, bir soatdan song qayta urining "
"yoki yaxshiroq hisobga oting."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
#, fuzzy
msgid "Unauthorized Key"
msgstr "Ruxsatsiz kalit"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
#, fuzzy
msgid "Uploading %(count)s '%(query)s' images."
msgstr "%(count)s ta '%(query)s' rasmini yuklash."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
#, fuzzy
msgid "Uploading '%s' image."
msgstr "'%s' rasmini yuklash."
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_users
#, fuzzy
msgid "User"
msgstr "Foydalanuvchi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "and paste"
msgstr "va joylashtiring"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "and paste it here:"
msgstr "va uni bu yerga joylashtiring:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#, fuzzy
msgid "here:"
msgstr "shu yerga:"

View file

@ -1,29 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2024
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Thi Huong Nguyen (thng)" <thng@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Thi Huong Nguyen, 2024\n"
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:56+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
"web_unsplash/vi/>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> Tạo khóa truy cập"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,82 +31,93 @@ msgstr "Khóa truy cập"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "ID ứng dụng"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "Áp dụng"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_ir_attachment
msgid "Attachment"
msgstr "Đính kèm"
msgstr "Tệp đính kèm"
#. module: web_unsplash
#: model:ir.model,name:web_unsplash.model_res_config_settings
msgid "Config Settings"
msgstr "Cấu hình"
msgstr "Cài đặt cấu hình"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: 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
#. odoo-python
#: 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
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr "Tạo Khoá truy cập"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "Lấy khoá truy cập"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "Dán khóa truy cập ở đây"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "Dán ID của bạn tại đây"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Hình ảnh (thông qua Unsplash)"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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."
@ -119,54 +129,47 @@ msgstr "Trường ảnh Qweb"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "Thiết lập Unsplash để truy cập ảnh miễn phí bản quyền."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "Đã xảy ra lỗi"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "Khóa trái phép"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "Đang tải %s '%s' hình ảnh."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "Đang tải %(count)s '%(query)s' hình ảnh."
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "Đang tải lên '%s' hình ảnh."
@ -177,21 +180,18 @@ msgstr "Người dùng"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "và dán"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "và dán tại đây:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "tại đây:"

View file

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2025-05-08 20:35+0000\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2026-01-25 18:37+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,11 +15,6 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
msgid "Access Key"
@ -27,16 +22,14 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr ""
@ -50,59 +43,72 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr ""
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
msgid "Get an Access key"
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "Generate an Access Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr ""
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr ""
@ -113,29 +119,25 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
@ -143,22 +145,19 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr ""
@ -169,21 +168,18 @@ msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr ""
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr ""

View file

@ -1,29 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Jeffery CHEN <jeffery9@gmail.com>, 2022
# Martin Trigaux, 2022
#
# "Chloe Wang (chwa)" <chwa@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 16.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-11-17 12:56+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
"projects/odoo-19/web_unsplash/zh_Hans/>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> 生成访问密钥"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +30,14 @@ msgstr "访问秘钥"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "应用程序ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "应用"
@ -55,59 +51,72 @@ msgstr "附件"
msgid "Config Settings"
msgstr "配置设置"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "错误: 未知 Unsplash URL!"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "错误: 未知 Unsplash 通知URL!"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "获得一个访问密钥"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "在此粘贴您的访问密钥"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "将您的应用ID粘贴至此处"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "照片通过Unsplash"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "请检查您的 Unsplash 访问密钥及应用ID。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your internet connection or contact administrator."
msgstr "请检查您的互联网连接或联系管理员。"
@ -118,52 +127,45 @@ msgstr "Qweb 图像字段"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "搜索功能暂时不可用"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "设置Unsplash以获取免版税照片。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "出了问题"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr "超过最大搜索计数。请在一小时内重试,或扩展到一个更高级的账户。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "未认证密钥"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "上传%s'%s'图像。"
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "正在上传 %(count)s 张'%(query)s' 图片。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "上传’%s图像。"
@ -174,21 +176,24 @@ msgstr "用户"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "并粘贴"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "并将其粘贴在这里:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "这里:"
#~ msgid "<i class=\"oi oi-arrow-right\"/> Generate an Access Key"
#~ msgstr "<i class=\"oi oi-arrow-right\"/> 生成访问密钥"
#~ msgid "Uploading %s '%s' images."
#~ msgstr "上传%s'%s'图像。"

View file

@ -1,29 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * web_unsplash
#
# * web_unsplash
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2024
#
# Wil Odoo, 2025
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~18.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-08 20:35+0000\n"
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
"Last-Translator: Tony Ng, 2024\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"POT-Creation-Date: 2026-01-25 18:37+0000\n"
"PO-Revision-Date: 2025-09-16 08:12+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
"projects/odoo-19/web_unsplash/zh_Hant/>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: web_unsplash
#: model_terms:ir.ui.view,arch_db:web_unsplash.res_config_settings_view_form
msgid "<i class=\"fa fa-arrow-right\"/> Generate an Access Key"
msgstr "<i class=\"fa fa-arrow-right\"/> 生成存取密鑰"
"X-Generator: Weblate 5.12.2\n"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_access_key
@ -32,16 +29,14 @@ msgstr "存取秘鑰"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
#: model:ir.model.fields,field_description:web_unsplash.field_res_config_settings__unsplash_app_id
#, python-format
msgid "Application ID"
msgstr "Application ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Apply"
msgstr "套用"
@ -55,115 +50,121 @@ msgstr "附件"
msgid "Config Settings"
msgstr "配置設定"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__display_name
#: 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
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash URL!"
msgstr "錯誤:未知取消初始 URL"
#. module: web_unsplash
#. odoo-python
#: code:addons/web_unsplash/controllers/main.py:0
#, python-format
msgid "ERROR: Unknown Unsplash notify URL!"
msgstr "錯誤: 未知取消初始通知 URL"
#. 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Get an Access key"
msgstr "獲取存取密鑰"
#. module: web_unsplash
#: model:ir.model.fields,field_description:web_unsplash.field_ir_attachment__id
#: 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
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your access key here"
msgstr "貼上您的存取密鑰在這裡"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "Paste your application ID here"
msgstr "在此處貼上應用程式 ID"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/media_dialog.xml:0
msgid "Photos (via Unsplash)"
msgstr "Unsplash 相片"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Please check your Unsplash access key and application ID."
msgstr "請檢查您的取消初始存取金鑰和應用程式 ID。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
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圖像欄位"
msgstr "Qweb 圖像欄位"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Search is temporarily unavailable"
msgstr "搜索暫時不可用"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Setup Unsplash to access royalty free photos."
msgstr "設置 Unsplash 以存取開源照片。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Something went wrong"
msgstr "出了一些問題"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid ""
"The max number of searches is exceeded. Please retry in an hour or extend to"
" a better account."
"The max number of searches is exceeded. Please retry in an hour or extend to "
"a better account."
msgstr "超過最大搜尋次數。請在一小時內重試,或擴展到一個更高級的帳戶。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/media_dialog/image_selector_patch.js:0
msgid "Unauthorized Key"
msgstr "未認證密鑰"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
msgid "Uploading %s '%s' images."
msgstr "正在上載 %s 張「%s」圖片。"
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading %(count)s '%(query)s' images."
msgstr "正在上載 %(count)s 張「%(query)s」圖片。"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.js:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_service.js:0
msgid "Uploading '%s' image."
msgstr "正在上載圖片「%s」。"
@ -174,21 +175,18 @@ msgstr "使用者"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste"
msgstr "並貼上"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "and paste it here:"
msgstr "並將其貼到此處:"
#. module: web_unsplash
#. odoo-javascript
#: code:addons/web_unsplash/static/src/components/media_dialog/image_selector.xml:0
#, python-format
#: code:addons/web_unsplash/static/src/unsplash_credentials/unsplash_credentials.xml:0
msgid "here:"
msgstr "這裡:"

View file

@ -4,8 +4,7 @@
from odoo import models
class Attachment(models.Model):
class IrAttachment(models.Model):
_inherit = "ir.attachment"
def _can_bypass_rights_on_media_dialog(self, **attachment_data):

View file

@ -3,7 +3,7 @@ from werkzeug import urls
from odoo import models, api
class Image(models.AbstractModel):
class IrQwebFieldImage(models.AbstractModel):
_inherit = 'ir.qweb.field.image'
@api.model
@ -27,4 +27,4 @@ class Image(models.AbstractModel):
], limit=1)
return attachment.datas
return super(Image, self).from_html(model, field, element)
return super().from_html(model, field, element)

View file

@ -12,4 +12,5 @@ class ResUsers(models.Model):
# of the overwrite done in 5ef8300.
# So to avoid to create a new module bridge, with a lot of code, we prefer to make a check
# here for website's user.
return self.has_group('base.group_erp_manager') or self.has_group('website.group_website_restricted_editor')
return (self.sudo().has_group('base.group_erp_manager')
or self.sudo().has_group('website.group_website_restricted_editor'))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 336 B

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 367 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,282 +0,0 @@
/** @odoo-module **/
import { patch } from 'web.utils';
import { KeepLast } from "@web/core/utils/concurrency";
import { MediaDialog, TABS } from '@web_editor/components/media_dialog/media_dialog';
import { ImageSelector } from '@web_editor/components/media_dialog/image_selector';
import { useService } from '@web/core/utils/hooks';
import { uploadService, AUTOCLOSE_DELAY } from '@web_editor/components/upload_progress_toast/upload_service';
import { useState, Component } from "@odoo/owl";
class UnsplashCredentials extends Component {
setup() {
this.state = useState({
key: '',
appId: '',
hasKeyError: this.props.hasCredentialsError,
hasAppIdError: this.props.hasCredentialsError,
});
}
submitCredentials() {
if (this.state.key === '') {
this.state.hasKeyError = true;
} else if (this.state.appId === '') {
this.state.hasAppIdError = true;
} else {
this.props.submitCredentials(this.state.key, this.state.appId);
}
}
}
UnsplashCredentials.template = 'web_unsplash.UnsplashCredentials';
export class UnsplashError extends Component {}
UnsplashError.template = 'web_unsplash.UnsplashError';
UnsplashError.components = {
UnsplashCredentials,
};
patch(ImageSelector.prototype, 'image_selector_unsplash', {
setup() {
this._super();
this.unsplash = useService('unsplash');
this.keepLastUnsplash = new KeepLast();
this.state.unsplashRecords = [];
this.state.isFetchingUnsplash = false;
this.state.isMaxed = false;
this.state.unsplashError = null;
this.state.useUnsplash = true;
this.NUMBER_OF_RECORDS_TO_DISPLAY = 30;
this.errorMessages = {
'key_not_found': {
title: this.env._t("Setup Unsplash to access royalty free photos."),
subtitle: "",
},
401: {
title: this.env._t("Unauthorized Key"),
subtitle: this.env._t("Please check your Unsplash access key and application ID."),
},
403: {
title: this.env._t("Search is temporarily unavailable"),
subtitle: this.env._t("The max number of searches is exceeded. Please retry in an hour or extend to a better account."),
},
};
},
get canLoadMore() {
if (this.state.searchService === 'all') {
return this._super() || this.state.needle && !this.state.isMaxed && !this.state.unsplashError;
} else if (this.state.searchService === 'unsplash') {
return this.state.needle && !this.state.isMaxed && !this.state.unsplashError;
}
return this._super();
},
get hasContent() {
if (this.state.searchService === 'all') {
return this._super() || !!this.state.unsplashRecords.length;
} else if (this.state.searchService === 'unsplash') {
return !!this.state.unsplashRecords.length;
}
return this._super();
},
get errorTitle() {
if (this.errorMessages[this.state.unsplashError]) {
return this.errorMessages[this.state.unsplashError].title;
}
return this.env._t("Something went wrong");
},
get errorSubtitle() {
if (this.errorMessages[this.state.unsplashError]) {
return this.errorMessages[this.state.unsplashError].subtitle;
}
return this.env._t("Please check your internet connection or contact administrator.");
},
get selectedRecordIds() {
return this.props.selectedMedia[this.props.id].filter(media => media.mediaType === 'unsplashRecord').map(({ id }) => id);
},
get isFetching() {
return this._super() || this.state.isFetchingUnsplash;
},
// It seems that setters are mandatory when patching a component that
// extends another component.
set canLoadMore(_) {},
set hasContent(_) {},
set isFetching(_) {},
set selectedMediaIds(_) {},
set attachmentsDomain(_) {},
set errorTitle(_) {},
set errorSubtitle(_) {},
set selectedRecordIds(_) {},
async fetchUnsplashRecords(offset) {
if (!this.state.needle) {
return { records: [], isMaxed: false };
}
this.state.isFetchingUnsplash = true;
try {
const { isMaxed, images } = await this.unsplash.getImages(this.state.needle, offset, this.NUMBER_OF_RECORDS_TO_DISPLAY, this.props.orientation);
this.state.isFetchingUnsplash = false;
this.state.unsplashError = false;
// Ignore duplicates.
const existingIds = this.state.unsplashRecords.map(existing => existing.id);
const newImages = images.filter(record => !existingIds.includes(record.id));
const records = newImages.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(),
mediaType: 'unsplashRecord',
});
});
return { isMaxed, records };
} catch (e) {
this.state.isFetchingUnsplash = false;
if (e === 'no_access') {
this.state.useUnsplash = false;
} else {
this.state.unsplashError = e;
}
return { records: [], isMaxed: true };
}
},
async loadMore(...args) {
await this._super(...args);
return this.keepLastUnsplash.add(this.fetchUnsplashRecords(this.state.unsplashRecords.length)).then(({ records, isMaxed }) => {
// This is never reached if another search or loadMore occurred.
this.state.unsplashRecords.push(...records);
this.state.isMaxed = isMaxed;
});
},
async search(...args) {
await this._super(...args);
await this.searchUnsplash();
},
async searchUnsplash() {
if (!this.state.needle) {
this.state.unsplashError = false;
this.state.unsplashRecords = [];
this.state.isMaxed = false;
}
return this.keepLastUnsplash.add(this.fetchUnsplashRecords(0)).then(({ records, isMaxed }) => {
// This is never reached if a new search occurred.
this.state.unsplashRecords = records;
this.state.isMaxed = isMaxed;
});
},
async onClickRecord(media) {
this.props.selectMedia({ ...media, mediaType: 'unsplashRecord', query: this.state.needle });
if (!this.props.multiSelect) {
await this.props.save();
}
},
async submitCredentials(key, appId) {
this.state.unsplashError = null;
await this.rpc('/web_unsplash/save_unsplash', { key, appId });
await this.searchUnsplash();
},
});
ImageSelector.components = {
...ImageSelector.components,
UnsplashError,
};
patch(MediaDialog.prototype, 'media_dialog_unsplash', {
setup() {
this._super();
this.uploadService = useService('upload');
},
async save() {
const _super = this._super.bind(this);
const selectedImages = this.selectedMedia[TABS.IMAGES.id];
if (selectedImages) {
const unsplashRecords = selectedImages.filter(media => media.mediaType === 'unsplashRecord');
if (unsplashRecords.length) {
await this.uploadService.uploadUnsplashRecords(unsplashRecords, { resModel: this.props.resModel, resId: this.props.resId }, (attachments) => {
this.selectedMedia[TABS.IMAGES.id] = this.selectedMedia[TABS.IMAGES.id].filter(media => media.mediaType !== 'unsplashRecord');
this.selectedMedia[TABS.IMAGES.id] = this.selectedMedia[TABS.IMAGES.id].concat(attachments.map(attachment => ({...attachment, mediaType: 'attachment'})));
});
}
}
return _super(...arguments);
},
});
patch(uploadService, 'upload_service_unsplash', {
start(env, { rpc }) {
const service = this._super(...arguments);
return {
...service,
async uploadUnsplashRecords(records, { resModel, resId }, onUploaded) {
service.incrementId();
const file = service.addFile({
id: service.fileId,
name: records.length > 1 ?
_.str.sprintf(env._t("Uploading %s '%s' images."), records.length, records[0].query) :
_.str.sprintf(env._t("Uploading '%s' image."), records[0].query),
size: null,
progress: 0,
});
try {
const urls = {};
for (const record of records) {
const _1920Url = new URL(record.urls.regular);
_1920Url.searchParams.set('w', '1920');
urls[record.id] = {
url: _1920Url.href,
download_url: record.links.download_location,
description: record.alt_description,
};
}
const xhr = new XMLHttpRequest();
xhr.upload.addEventListener('progress', ev => {
const rpcComplete = ev.loaded / ev.total * 100;
file.progress = rpcComplete;
});
xhr.upload.addEventListener('load', function () {
// Don't show yet success as backend code only starts now
file.progress = 100;
});
const attachments = await rpc('/web_unsplash/attachment/add', {
'res_id': resId,
'res_model': resModel,
'unsplashurls': urls,
'query': records[0].query,
}, {xhr});
if (attachments.error) {
file.hasError = true;
file.errorMessage = attachments.error;
} else {
file.uploaded = true;
await onUploaded(attachments);
}
setTimeout(() => service.deleteFile(file.id), AUTOCLOSE_DELAY);
} catch (error) {
file.hasError = true;
setTimeout(() => service.deleteFile(file.id), AUTOCLOSE_DELAY);
throw error;
}
}
};
}
});

View file

@ -1,82 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<templates id="template" xml:space="preserve">
<t t-name="web_unsplash.UnsplashError" owl="1">
<div class="alert alert-info w-100">
<h4><t t-esc="props.title"/></h4>
<p><t t-esc="props.subtitle"/></p>
<UnsplashCredentials t-if="props.showCredentials" submitCredentials="props.submitCredentials" hasCredentialsError="props.hasCredentialsError"/>
</div>
</t>
<t t-name="web_unsplash.UnsplashCredentials" owl="1">
<div class="d-flex align-items-center flex-wrap">
<a href="https://www.odoo.com/documentation/16.0/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-access-key"
class="mx-2" target="_blank">Get an Access key</a>
and paste it here:
<input type="text"
class="o_input form-control w-auto mx-2"
id="accessKeyInput"
placeholder="Paste your access key here"
t-model="state.key"
t-on-input="() => this.state.hasKeyError = false"
t-att-class="{ 'is-invalid': state.hasKeyError }"/>
and paste
<a href="https://www.odoo.com/documentation/16.0/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-application-id"
class="mx-2" target="_blank">Application ID</a>
here:
<div class="input-group d-flex justify-content-end align-items-center w-auto mx-2">
<input type="text"
class="o_input form-control w-auto"
placeholder="Paste your application ID here"
t-model="state.appId"
t-on-input="() => this.state.hasAppIdError = false"
t-att-class="{ 'is-invalid': state.hasAppIdError }"/>
<button type="button" class="btn btn-primary btn-block w-auto p-auto save_unsplash" t-on-click="() => this.submitCredentials()">Apply</button>
</div>
</div>
</t>
<t t-name="web_unsplash.ImagesListTemplate" t-inherit="web_editor.ImagesListTemplate" t-inherit-mode="extension">
<xpath expr="//t[@id='o_we_media_library_images']" position="after">
<t t-if="['all', 'unsplash'].includes(state.searchService)">
<t t-foreach="state.unsplashRecords" t-as="record" t-key="record.id">
<AutoResizeImage src="record.url"
author="record.user.name"
authorLink="record.user.links.html"
name="record.user.name"
title="record.user.name"
altDescription="record.alt_description"
selected="this.selectedRecordIds.includes(record.id)"
onImageClick="() => this.onClickRecord(record)"
minRowHeight="MIN_ROW_HEIGHT"
onLoaded="(imgEl) => this.onImageLoaded(imgEl, record)"/>
</t>
</t>
</xpath>
</t>
<t t-inherit="web_editor.FileSelector" t-inherit-mode="extension">
<xpath expr="//div[@name='load_more_attachments']" position="after">
<div t-if="state.unsplashError" class="d-flex mt-2 unsplash_error">
<UnsplashError
title="errorTitle"
subtitle="errorSubtitle"
showCredentials="['key_not_found', 401].includes(state.unsplashError)"
submitCredentials="(key, appId) => this.submitCredentials(key, appId)"
hasCredentialsError="state.unsplashError === 401"/>
</div>
</xpath>
</t>
<t t-inherit="web_editor.FileSelectorControlPanel" t-inherit-mode="extension">
<xpath expr="//option[@value='media-library']" position="after">
<option t-if="props.useUnsplash" t-att-selected="props.searchService === 'unsplash'" value="unsplash">Photos (via Unsplash)</option>
</xpath>
</t>
<t t-inherit="web_editor.FileSelector" t-inherit-mode="extension">
<xpath expr="//FileSelectorControlPanel" position="attributes">
<attribute name="useUnsplash">state.useUnsplash</attribute>
</xpath>
</t>
</templates>

View file

@ -0,0 +1,35 @@
import { Interaction } from "@web/public/interaction";
import { registry } from "@web/core/registry";
import { rpc } from "@web/core/network/rpc";
export class UnsplashBeacon extends Interaction {
static selector = "#wrapwrap";
async willStart() {
const unsplashImageEls = this.el.querySelectorAll("img[src*='/unsplash/']");
const unsplashImageIds = [];
for (const unsplashImageEl of unsplashImageEls) {
// extract the image id from URL
// (`http://www.domain.com:1234/unsplash/xYdf5feoI/lion.jpg` -> `xYdf5feoI`)
unsplashImageIds.push(unsplashImageEl.src.split("/unsplash/")[1].split("/")[0]);
}
if (unsplashImageIds.length) {
const appID = await this.waitFor(rpc("/web_unsplash/get_app_id"));
if (appID) {
const fetchURL = new URL("https://views.unsplash.com/v");
fetchURL.search = new URLSearchParams({
"photo_id": unsplashImageIds.join(","),
"app_id": appID,
});
fetch(fetchURL);
}
}
}
}
registry
.category("public.interactions")
.add("web_unsplash.unsplash_beacon", UnsplashBeacon);

View file

@ -1,34 +0,0 @@
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);
},
});
});

View file

@ -0,0 +1,212 @@
import { _t } from "@web/core/l10n/translation";
import { patch } from "@web/core/utils/patch";
import { KeepLast } from "@web/core/utils/concurrency";
import { rpc } from "@web/core/network/rpc";
import { useService } from "@web/core/utils/hooks";
import { ImageSelector } from "@html_editor/main/media/media_dialog/image_selector";
import { UnsplashError } from "../unsplash_error/unsplash_error";
import { useState } from "@odoo/owl";
patch(ImageSelector.prototype, {
setup() {
super.setup();
this.unsplash = useService("unsplash");
this.keepLastUnsplash = new KeepLast();
this.unsplashState = useState({
unsplashRecords: [],
isFetchingUnsplash: false,
isMaxed: false,
unsplashError: null,
useUnsplash: true,
});
this.NUMBER_OF_RECORDS_TO_DISPLAY = 30;
this.errorMessages = {
key_not_found: {
title: _t("Setup Unsplash to access royalty free photos."),
subtitle: "",
},
401: {
title: _t("Unauthorized Key"),
subtitle: _t("Please check your Unsplash access key and application ID."),
},
403: {
title: _t("Search is temporarily unavailable"),
subtitle: _t(
"The max number of searches is exceeded. Please retry in an hour or extend to a better account."
),
},
};
},
get canLoadMore() {
if (this.state.searchService === "all") {
return (
super.canLoadMore ||
(this.state.needle &&
!this.unsplashState.isMaxed &&
!this.unsplashState.unsplashError)
);
} else if (this.state.searchService === "unsplash") {
return (
this.state.needle &&
!this.unsplashState.isMaxed &&
!this.unsplashState.unsplashError
);
}
return super.canLoadMore;
},
get hasContent() {
if (this.state.searchService === "all") {
return super.hasContent || !!this.unsplashState.unsplashRecords.length;
} else if (this.state.searchService === "unsplash") {
return !!this.unsplashState.unsplashRecords.length;
}
return super.hasContent;
},
get errorTitle() {
if (this.errorMessages[this.unsplashState.unsplashError]) {
return this.errorMessages[this.unsplashState.unsplashError].title;
}
return _t("Something went wrong");
},
get errorSubtitle() {
if (this.errorMessages[this.unsplashState.unsplashError]) {
return this.errorMessages[this.unsplashState.unsplashError].subtitle;
}
return _t("Please check your internet connection or contact administrator.");
},
get selectedRecordIds() {
return this.props.selectedMedia[this.props.id]
.filter((media) => media.mediaType === "unsplashRecord")
.map(({ id }) => id);
},
get isFetching() {
return super.isFetching || this.unsplashState.isFetchingUnsplash;
},
get combinedRecords() {
/**
* Creates an array with alternating elements from two arrays.
*
* @param {Array} a
* @param {Array} b
* @returns {Array} alternating elements from a and b, starting with
* an element of a
*/
function alternate(a, b) {
return [a.map((v, i) => (i < b.length ? [v, b[i]] : v)), b.slice(a.length)].flat(2);
}
return alternate(this.unsplashState.unsplashRecords, this.state.libraryMedia);
},
get allAttachments() {
return [...super.allAttachments, ...this.unsplashState.unsplashRecords];
},
async fetchUnsplashRecords(offset) {
if (!this.state.needle) {
return { records: [], isMaxed: false };
}
this.unsplashState.isFetchingUnsplash = true;
try {
const { isMaxed, images } = await this.unsplash.getImages(
this.state.needle,
offset,
this.NUMBER_OF_RECORDS_TO_DISPLAY,
this.props.orientation
);
this.unsplashState.isFetchingUnsplash = false;
this.unsplashState.unsplashError = false;
// Use a set to keep track of every image we've received so far,
// based on their ids. This will allow us to ignore duplicate
// images from Unsplash. We can assume there are no duplicates at
// this point as a precondition.
const existingIds = new Set(this.unsplashState.unsplashRecords.map(r => r.id));
const newImages = images.filter(record => {
if (existingIds.has(record.id)) {
return false;
}
// Mark this image as seen so that we can ignore any duplicates
// from the same Unsplash batch.
existingIds.add(record.id);
return true;
});
const records = newImages.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(),
mediaType: "unsplashRecord",
});
});
return { isMaxed, records };
} catch (e) {
this.unsplashState.isFetchingUnsplash = false;
if (e === "no_access") {
this.unsplashState.useUnsplash = false;
} else {
this.unsplashState.unsplashError = e;
}
return { records: [], isMaxed: true };
}
},
async loadMore(...args) {
await super.loadMore(...args);
return this.keepLastUnsplash
.add(this.fetchUnsplashRecords(this.unsplashState.unsplashRecords.length))
.then(({ records, isMaxed }) => {
// This is never reached if another search or loadMore occurred.
this.unsplashState.unsplashRecords.push(...records);
this.unsplashState.isMaxed = isMaxed;
});
},
async search(...args) {
await super.search(...args);
await this.searchUnsplash();
},
async searchUnsplash() {
if (!this.state.needle) {
this.unsplashState.unsplashError = false;
this.unsplashState.unsplashRecords = [];
this.unsplashState.isMaxed = false;
}
return this.keepLastUnsplash
.add(this.fetchUnsplashRecords(0))
.then(({ records, isMaxed }) => {
// This is never reached if a new search occurred.
this.unsplashState.unsplashRecords = records;
this.unsplashState.isMaxed = isMaxed;
});
},
async onClickRecord(media) {
this.props.selectMedia({ ...media, mediaType: "unsplashRecord", query: this.state.needle });
if (!this.props.multiSelect) {
await this.props.save();
}
},
async submitCredentials(key, appId) {
this.unsplashState.unsplashError = null;
await rpc("/web_unsplash/save_unsplash", { key, appId });
await this.searchUnsplash();
},
});
ImageSelector.components = {
...ImageSelector.components,
UnsplashError,
};

View file

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<templates id="template" xml:space="preserve">
<t t-inherit="html_editor.ExternalImage" t-inherit-mode="extension">
<xpath expr="//t[@t-if]" position="after">
<t t-elif="record.mediaType === 'unsplashRecord'">
<AutoResizeImage src="record.url"
author="record.user.name"
authorLink="record.user.links.html"
name="record.user.name"
title="record.user.name"
altDescription="record.alt_description"
selected="this.selectedRecordIds.includes(record.id)"
onImageClick="() => this.onClickRecord(record)"
minRowHeight="MIN_ROW_HEIGHT"
onLoaded="(imgEl) => this.onImageLoaded(imgEl, record)"/>
</t>
</xpath>
</t>
<t t-inherit="html_editor.ImagesListTemplate" t-inherit-mode="extension">
<xpath expr="//t[@id='o_we_media_library_images']" position="replace">
<t id='o_we_media_library_images' t-if="['all', 'unsplash', 'media-library'].includes(state.searchService)">
<t t-foreach="combinedRecords" t-as="record" t-key="record.id">
<t t-call="html_editor.ExternalImage"/>
</t>
</t>
</xpath>
</t>
<t t-inherit="html_editor.FileSelector" t-inherit-mode="extension">
<xpath expr="//div[@name='load_more_attachments']" position="before">
<div t-if="unsplashState?.unsplashError" class="d-flex mt-2 unsplash_error">
<UnsplashError
title="errorTitle"
subtitle="errorSubtitle"
showCredentials="['key_not_found', 401].includes(unsplashState.unsplashError)"
submitCredentials="(key, appId) => this.submitCredentials(key, appId)"
hasCredentialsError="unsplashState.unsplashError === 401"/>
</div>
</xpath>
</t>
<t t-inherit="html_editor.FileSelectorControlPanel" t-inherit-mode="extension">
<xpath expr="//option[@value='media-library']" position="after">
<option t-if="props.useUnsplash" t-att-selected="props.searchService === 'unsplash'" value="unsplash">Photos (via Unsplash)</option>
</xpath>
</t>
<t t-inherit="html_editor.FileSelector" t-inherit-mode="extension">
<xpath expr="//FileSelectorControlPanel" position="attributes">
<attribute name="useUnsplash">unsplashState?.useUnsplash</attribute>
</xpath>
</t>
</templates>

View file

@ -0,0 +1,39 @@
import { MediaDialog, TABS } from "@html_editor/main/media/media_dialog/media_dialog";
import { patch } from "@web/core/utils/patch";
import { useService } from "@web/core/utils/hooks";
patch(MediaDialog.prototype, {
setup() {
super.setup();
this.unsplashService = useService("unsplash");
},
async save() {
const selectedImages = this.selectedMedia[TABS.IMAGES.id];
if (selectedImages) {
const unsplashRecords = selectedImages.filter(
(media) => media.mediaType === "unsplashRecord"
);
if (unsplashRecords.length) {
await this.unsplashService.uploadUnsplashRecords(
unsplashRecords,
{ resModel: this.props.resModel, resId: this.props.resId },
(attachments) => {
this.selectedMedia[TABS.IMAGES.id] = this.selectedMedia[
TABS.IMAGES.id
].filter((media) => media.mediaType !== "unsplashRecord");
this.selectedMedia[TABS.IMAGES.id] = this.selectedMedia[
TABS.IMAGES.id
].concat(
attachments.map((attachment) => ({
...attachment,
mediaType: "attachment",
}))
);
}
);
}
}
return super.save(...arguments);
},
});

View file

@ -1,59 +0,0 @@
/** @odoo-module **/
import { registry } from '@web/core/registry';
export const unsplashService = {
dependencies: ['rpc'],
async start(env, { rpc }) {
const _cache = {};
return {
async getImages(query, offset = 0, pageSize = 30, orientation) {
const from = offset;
const to = offset + pageSize;
// Use orientation in the cache key to not show images in cache
// when using the same query word but changing the orientation
let cachedData = orientation ? _cache[query + orientation] : _cache[query];
if (cachedData && (cachedData.images.length >= to || (cachedData.totalImages !== 0 && cachedData.totalImages < to))) {
return { images: cachedData.images.slice(from, to), isMaxed: to > cachedData.totalImages };
}
cachedData = await this._fetchImages(query, orientation);
return { images: cachedData.images.slice(from, to), isMaxed: to > cachedData.totalImages };
},
/**
* Fetches images from unsplash and stores it in cache
*/
async _fetchImages(query, orientation) {
const key = orientation ? query + orientation : query;
if (!_cache[key]) {
_cache[key] = {
images: [],
maxPages: 0,
totalImages: 0,
pageCached: 0
};
}
const cachedData = _cache[key];
const payload = {
query: query,
page: cachedData.pageCached + 1,
per_page: 30, // max size from unsplash API
};
if (orientation) {
payload.orientation = orientation;
}
const result = await rpc('/web_unsplash/fetch_images', payload);
if (result.error) {
return Promise.reject(result.error);
}
cachedData.pageCached++;
cachedData.images.push(...result.results);
cachedData.maxPages = result.total_pages;
cachedData.totalImages = result.total;
return cachedData;
},
};
},
};
registry.category('services').add('unsplash', unsplashService);

View file

@ -0,0 +1,27 @@
import { Component, useState } from "@odoo/owl";
export class UnsplashCredentials extends Component {
static template = "web_unsplash.UnsplashCredentials";
static props = {
submitCredentials: Function,
hasCredentialsError: Boolean,
};
setup() {
this.state = useState({
key: "",
appId: "",
hasKeyError: this.props.hasCredentialsError,
hasAppIdError: this.props.hasCredentialsError,
});
}
submitCredentials() {
if (this.state.key === "") {
this.state.hasKeyError = true;
} else if (this.state.appId === "") {
this.state.hasAppIdError = true;
} else {
this.props.submitCredentials(this.state.key, this.state.appId);
}
}
}

View file

@ -0,0 +1,27 @@
<templates id="template" xml:space="preserve">
<t t-name="web_unsplash.UnsplashCredentials">
<div class="d-flex align-items-center flex-wrap">
<a href="https://www.odoo.com/documentation/latest/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-access-key"
class="me-1" target="_blank">Get an Access key</a>
and paste it here:
<input type="text"
class="o_input o_required_modifier form-control w-auto mx-2"
id="accessKeyInput"
placeholder="Paste your access key here"
t-model="state.key"
t-on-input="() => this.state.hasKeyError = false"
t-att-class="{ 'is-invalid': state.hasKeyError }"/>
and paste
<a href="https://www.odoo.com/documentation/latest/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-application-id"
class="mx-1" target="_blank">Application ID</a>
here:
<input type="text"
class="o_input o_required_modifier form-control w-auto ms-2"
placeholder="Paste your application ID here"
t-model="state.appId"
t-on-input="() => this.state.hasAppIdError = false"
t-att-class="{ 'is-invalid': state.hasAppIdError }"/>
<button type="button" class="btn btn-primary w-auto ms-3 p-auto save_unsplash" t-on-click="() => this.submitCredentials()">Apply</button>
</div>
</t>
</templates>

View file

@ -0,0 +1,16 @@
import { Component } from "@odoo/owl";
import { UnsplashCredentials } from "../unsplash_credentials/unsplash_credentials";
export class UnsplashError extends Component {
static template = "web_unsplash.UnsplashError";
static components = {
UnsplashCredentials,
};
static props = {
title: String,
subtitle: String,
showCredentials: Boolean,
submitCredentials: { type: Function, optional: true },
hasCredentialsError: { type: Boolean, optional: true },
};
}

View file

@ -0,0 +1,9 @@
<templates id="template" xml:space="preserve">
<t t-name="web_unsplash.UnsplashError">
<div class="alert alert-info w-100">
<h4><t t-esc="props.title"/></h4>
<p><t t-esc="props.subtitle"/></p>
<UnsplashCredentials t-if="props.showCredentials" submitCredentials="props.submitCredentials" hasCredentialsError="props.hasCredentialsError"/>
</div>
</t>
</templates>

View file

@ -0,0 +1,130 @@
import { rpc } from "@web/core/network/rpc";
import { registry } from "@web/core/registry";
import { _t } from "@web/core/l10n/translation";
import { AUTOCLOSE_DELAY } from "@html_editor/main/media/media_dialog/upload_progress_toast/upload_service";
export const unsplashService = {
dependencies: ["upload"],
async start(env, { upload }) {
const _cache = {};
return {
async uploadUnsplashRecords(records, { resModel, resId }, onUploaded) {
upload.incrementId();
const file = upload.addFile({
id: upload.fileId,
name:
records.length > 1
? _t("Uploading %(count)s '%(query)s' images.", {
count: records.length,
query: records[0].query,
})
: _t("Uploading '%s' image.", records[0].query),
});
try {
const urls = {};
for (const record of records) {
const _1920Url = new URL(record.urls.regular);
_1920Url.searchParams.set("w", "1920");
urls[record.id] = {
url: _1920Url.href,
download_url: record.links.download_location,
description: record.alt_description,
};
}
const xhr = new XMLHttpRequest();
xhr.upload.addEventListener("progress", (ev) => {
const rpcComplete = (ev.loaded / ev.total) * 100;
file.progress = rpcComplete;
});
xhr.upload.addEventListener("load", function () {
// Don't show yet success as backend code only starts now
file.progress = 100;
});
const attachments = await rpc(
"/web_unsplash/attachment/add",
{
res_id: resId,
res_model: resModel,
unsplashurls: urls,
query: records[0].query,
},
{ xhr }
);
if (attachments.error) {
file.hasError = true;
file.errorMessage = attachments.error;
} else {
file.uploaded = true;
await onUploaded(attachments);
}
setTimeout(() => upload.deleteFile(file.id), AUTOCLOSE_DELAY);
} catch (error) {
file.hasError = true;
setTimeout(() => upload.deleteFile(file.id), AUTOCLOSE_DELAY);
throw error;
}
},
async getImages(query, offset = 0, pageSize = 30, orientation) {
const from = offset;
const to = offset + pageSize;
// Use orientation in the cache key to not show images in cache
// when using the same query word but changing the orientation
let cachedData = orientation ? _cache[query + orientation] : _cache[query];
if (
cachedData &&
(cachedData.images.length >= to ||
(cachedData.totalImages !== 0 && cachedData.totalImages < to))
) {
return {
images: cachedData.images.slice(from, to),
isMaxed: to > cachedData.totalImages,
};
}
cachedData = await this._fetchImages(query, orientation);
return {
images: cachedData.images.slice(from, to),
isMaxed: to > cachedData.totalImages,
};
},
/**
* Fetches images from unsplash and stores it in cache
*/
async _fetchImages(query, orientation) {
const key = orientation ? query + orientation : query;
if (!_cache[key]) {
_cache[key] = {
images: [],
maxPages: 0,
totalImages: 0,
pageCached: 0,
};
}
const cachedData = _cache[key];
const payload = {
query: query,
page: cachedData.pageCached + 1,
per_page: 30, // max size from unsplash API
};
if (orientation) {
payload.orientation = orientation;
}
const result = await rpc("/web_unsplash/fetch_images", payload);
if (result.error) {
return Promise.reject(result.error);
}
cachedData.pageCached++;
cachedData.images.push(...result.results);
cachedData.maxPages = result.total_pages;
cachedData.totalImages = result.total;
return cachedData;
},
};
},
};
registry.category("services").add("unsplash", unsplashService);

View file

@ -0,0 +1,117 @@
import { setupEditor } from "@html_editor/../tests/_helpers/editor";
import { insertText } from "@html_editor/../tests/_helpers/user_actions";
import { expectElementCount } from "@html_editor/../tests/_helpers/ui_expectations";
import { expect, test } from "@odoo/hoot";
import { animationFrame, click, Deferred, press, waitFor } from "@odoo/hoot-dom";
import { contains, makeMockEnv, onRpc } from "@web/../tests/web_test_helpers";
test("Unsplash is inserted in the Media Dialog", async () => {
const imageRecord = {
id: 1,
name: "logo",
mimetype: "image/png",
image_src: "/web/static/img/logo2.png",
access_token: false,
public: true,
};
onRpc("ir.attachment", "search_read", () => [imageRecord]);
const fetchDef = new Deferred();
onRpc("/web_unsplash/fetch_images", () => {
expect.step("fetch_images");
fetchDef.resolve();
return {
total: 1,
total_pages: 1,
results: [
{
id: "oXV3bzR7jxI",
alt_description: "An image alt description",
urls: {
regular: "/web/static/img/logo2.png",
},
user: {
name: "Username",
links: {
html: "https://example.com/",
},
},
links: {
download_location: "https://example.com/",
},
},
],
};
});
onRpc("/web_unsplash/attachment/add", (args) => [
{ ...imageRecord, description: "unsplash_image" },
]);
const env = await makeMockEnv();
const { editor } = await setupEditor(`<p>[]</p>`, { env });
await expectElementCount(".o-we-powerbox", 0);
await insertText(editor, "/image");
await animationFrame();
await expectElementCount(".o-we-powerbox", 1);
await click(".o-we-command");
await animationFrame();
expect(".o_select_media_dialog").toHaveCount(1);
contains("input.o_we_search").edit("cat");
await fetchDef;
expect.verifySteps(["fetch_images"]);
await waitFor("img[title='Username']");
await click(".o_button_area[aria-label='Username']");
await waitFor(".o-wysiwyg img[alt='unsplash_image']");
expect(".o-wysiwyg img[alt='unsplash_image']").toHaveCount(1);
});
test("Unsplash error is displayed when there is no key", async () => {
const imageRecord = {
id: 1,
name: "logo",
mimetype: "image/png",
image_src: "/web/static/img/logo2.png",
access_token: false,
public: true,
};
onRpc("ir.attachment", "search_read", () => [imageRecord]);
const fetchDef = new Deferred();
onRpc("/web_unsplash/fetch_images", () => {
fetchDef.resolve();
return {
error: "key_not_found",
};
});
const env = await makeMockEnv();
const { editor } = await setupEditor(`<p>[]</p>`, { env });
await expectElementCount(".o-we-powerbox", 0);
await insertText(editor, "/image");
await animationFrame();
await expectElementCount(".o-we-powerbox", 1);
await click(".o-we-command");
await animationFrame();
expect(".o_select_media_dialog").toHaveCount(1);
contains("input.o_we_search").edit("cat");
await fetchDef;
await waitFor(".unsplash_error");
expect(".unsplash_error").toHaveCount(1);
});
test("Document tab does not crash with FileSelector extension", async () => {
onRpc("ir.attachment", "search_read", () => [
{
id: 1,
name: "logo",
mimetype: "image/png",
image_src: "/web/static/img/logo2.png",
access_token: false,
public: true,
},
]);
const env = await makeMockEnv();
const { editor } = await setupEditor("<p>a[]</p>", { env });
await insertText(editor, "/image");
await animationFrame();
await press("enter");
await animationFrame();
await click("li:nth-child(2) > a.nav-link");
expect(".o_existing_attachment_cell").toHaveCount(1);
});

View file

@ -6,19 +6,17 @@
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
<field name="arch" type="xml">
<div id="web_unsplash_warning" position="replace">
<div attrs="{'invisible': [('module_web_unsplash', '=', False)]}">
<div invisible="not module_web_unsplash">
<div class="content-group mt16">
<label for="unsplash_access_key" class="o_light_label"/>
<label for="unsplash_access_key" class="o_light_label mr8"/>
<field name="unsplash_access_key"/>
</div>
<div class="content-group">
<label for="unsplash_app_id" class="o_light_label"/>
<label for="unsplash_app_id" class="o_light_label mr8"/>
<field name="unsplash_app_id"/>
</div>
<div>
<a href="https://www.odoo.com/documentation/16.0/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-access-key" class="oe_link" target="_blank">
<i class="fa fa-arrow-right"/> Generate an Access Key
</a>
<widget name="documentation_link" path="/applications/websites/website/optimize/unsplash.html#generate-an-unsplash-access-key" label=" Generate an Access Key" icon="oi oi-arrow-right" class="oe_link"/>
</div>
</div>
</div>