initial commit
This commit is contained in:
commit
6355581bf6
12
__init__.py
Normal file
12
__init__.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
def _post_init_hook(env):
|
||||
if request:
|
||||
request.is_frontend = False
|
||||
request.is_frontend_multilang = False
|
19
__manifest__.py
Normal file
19
__manifest__.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Web Routing',
|
||||
'summary': 'Web Routing',
|
||||
'sequence': 9100,
|
||||
'category': 'Hidden',
|
||||
'description': """
|
||||
Proposes advanced routing options not available in web or base to keep
|
||||
base modules simple.
|
||||
""",
|
||||
'data': [
|
||||
'views/http_routing_template.xml',
|
||||
'views/res_lang_views.xml',
|
||||
],
|
||||
'post_init_hook': '_post_init_hook',
|
||||
'depends': ['web'],
|
||||
'license': 'LGPL-3',
|
||||
}
|
BIN
__pycache__/__init__.cpython-311.pyc
Normal file
BIN
__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
4
controllers/__init__.py
Normal file
4
controllers/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
BIN
controllers/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
controllers/__pycache__/main.cpython-311.pyc
Normal file
BIN
controllers/__pycache__/main.cpython-311.pyc
Normal file
Binary file not shown.
25
controllers/main.py
Normal file
25
controllers/main.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
from odoo.addons.web.controllers.home import Home
|
||||
from odoo.addons.web.controllers.session import Session
|
||||
from odoo.addons.web.controllers.webclient import WebClient
|
||||
|
||||
|
||||
class Routing(Home):
|
||||
|
||||
@http.route('/website/translations/<string:unique>', type='http', auth="public", website=True)
|
||||
def get_website_translations(self, unique, lang=None, mods=None):
|
||||
IrHttp = request.env['ir.http'].sudo()
|
||||
modules = IrHttp.get_translation_frontend_modules()
|
||||
if mods:
|
||||
modules += mods.split(',')
|
||||
return WebClient().translations(unique, mods=','.join(modules), lang=lang)
|
||||
|
||||
|
||||
class SessionWebsite(Session):
|
||||
|
||||
@http.route('/web/session/logout', website=True, multilang=False, sitemap=False)
|
||||
def logout(self, redirect='/web'):
|
||||
return super().logout(redirect=redirect)
|
119
i18n/ar.po
Normal file
119
i18n/ar.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: محظور"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>لا تقلق.</b> إذا كنت تعتقد بأنه خطؤنا، أرسل لنا رسالة رجاءً على "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>رسالة خطأ:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "العودة"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "خطأ 404 "
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسار HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "الرئيسية"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "ربما كنت تبحث عن إحدى تلك <b>الصفحات المشهورة؟</b> "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "عذراً! حدث خطأ ما. "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "ألق نظرة على رسالة الخطأ أدناه."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "حدث خطأ أثناء تكوين القالب "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "لم نتمكن من اعتماد الصفحة التي تبحث عنها."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "تقرير تتبع الكود "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "لم نتمكن من العثور على الصفحة التي تبحث عنها! "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "وتقييم التعبيرات التالية:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "هذه الصفحة"
|
118
i18n/az.po
Normal file
118
i18n/az.po
Normal file
|
@ -0,0 +1,118 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Qadağandır"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Xəta mesajı:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Geri"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Xəta"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Marşrutizasiyası"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Əsas"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ups! Xəta baş verdi."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Aşağıdakı xəta mesajına nəzər yetirin."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Axtardığınız səhifəyə icazə verilmədi."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Əks izləmə"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "və aşağıdakı ifadəni qiymətləndirmək:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
122
i18n/bg.po
Normal file
122
i18n/bg.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Kaloyan Naumov <kaloyan@lumnus.net>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Radina <radis.choice@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Забранено"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Съобщение за грешка:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Грешка"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Начало"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Страницата, която търсите, не е разрешена за достъп."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Проследете назад"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "и оценяване на следния израз:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
116
i18n/bs.po
Normal file
116
i18n/bs.po
Normal file
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+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: 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: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
128
i18n/ca.po
Normal file
128
i18n/ca.po
Normal file
|
@ -0,0 +1,128 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Eric Antones <eantones@users.noreply.github.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Josep Anton Belchi, 2023
|
||||
# Arnau Ros, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# marcescu, 2023
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Manel Fernandez Ramirez <manelfera@outlook.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Prohibit"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>No entris en pànic.</b> Si creus que és el nostre error, envia'ns un "
|
||||
"missatge a"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Missatge d'error:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Enrere"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutament HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Inici"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Potser estaves buscant una d'aquestes <b>pàgines populars?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "S'ha produït un error."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Dona un cop d'ull al missatge d'error que apareix a continuació."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "L'error s'ha produït en renderitzar la plantilla"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "No està autoritzat a veure la pàgina que està buscant."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traça"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "¡No hem pogut trobar la pàgina que cerca!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "i avaluant la següent expressió:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "aquesta pàgina"
|
121
i18n/cs.po
Normal file
121
i18n/cs.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Vojtech Smolka, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Vojtech Smolka, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403 Přístup odepřen"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Chybová hláška:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Chyba 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Domovská stránka"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Jejda! Něco se pokazilo."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Podívejte se na chybové hlášení níže."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Během renderování šablony se vyskytla chyba"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Stránka, kterou jste hledali, nemohla být schválena."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Chybová hláška"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Nepodařilo se nám najít stránku, kterou hledáte!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "a během vyhodnocování následujícího výrazu:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "tato strana"
|
121
i18n/da.po
Normal file
121
i18n/da.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Ingen adgang"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Gå ikke i panik.</b> Hvis du tror det er vores fejl, bedes du venligst "
|
||||
"sende os en besked på"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Fejlbesked:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Tilbage"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Fejl 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Startside"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Måske ledte du efter en af disse <b>populære sider?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Hovsa! Noget gik galt."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Tag et kig på fejlbeskeden nedenunder."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Du har ikke adgang til den ønskede side."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traceback"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Vi kunne ikke finde siden du ledte efter!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "og evaluering af det følgende udtryk:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "denne side"
|
122
i18n/de.po
Normal file
122
i18n/de.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Verboten"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Kein Grund zur Panik.</b> Wenn Sie glauben, dass es sich um einen Fehler "
|
||||
"unsererseits handelt, senden Sie uns bitte eine Nachricht an"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Fehlermeldung:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Fehler 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-Routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
"Vielleicht haben Sie nach einem dieser <b>meistbesuchten Seiten</b> gesucht?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ups! Ein Fehler ist aufgetreten."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Beachten Sie die unten stehende Benachrichtigung."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Der Fehler ist beim Rendering der Vorlage aufgetreten"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Die Seite, die Sie hier suchen, konnte nicht authentifiziert werden."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traceback"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Wir konnten die von Ihnen gesuchte Seite nicht finden!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "und beim Evaluieren des folgenden Ausdrucks:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "diese Seite"
|
116
i18n/el.po
Normal file
116
i18n/el.po
Normal file
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
121
i18n/es.po
Normal file
121
i18n/es.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Prohibido"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>No se preocupe.</b> Si cree que esto es un error, envíenos un mensaje a"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Mensaje de error:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Volver"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Inicio"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Tal vez buscaba alguna de estas <b>páginas populares</b>."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "¡Uy! Algo salió mal."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Revise el siguiente mensaje de error."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "El error ocurrió durante la creación de la plantilla"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "No está autorizado a ver la página que está buscando."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traza"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "No pudimos encontrar la página que buscas "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "y evalua la siguiente expresión:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "esta página"
|
121
i18n/es_419.po
Normal file
121
i18n/es_419.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2024\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Prohibido"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>No se preocupe.</b> Si cree que esto es un error, envíenos un mensaje a"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Mensaje de error:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Regresar"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Inicio"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Tal vez buscaba alguna de estas <b>páginas populares</b>."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "¡Uy! Algo salió mal."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Revise el siguiente mensaje de error."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "El error ocurrió al renderizar la plantilla."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "No está autorizado para ver la página que está buscando."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Rastrear"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "No pudimos encontrar la página que busca "
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "y evalúe la siguiente expresión:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "esta página"
|
127
i18n/et.po
Normal file
127
i18n/et.po
Normal file
|
@ -0,0 +1,127 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Egon Raamat <egon@avalah.ee>, 2023
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# Wanradt Koell <wanradt@gmail.com>, 2023
|
||||
# JanaAvalah, 2023
|
||||
# Martin Talts <martin.t@avalah.ee>, 2023
|
||||
# Anna, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Triine Aavik <triine@avalah.ee>, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Keelatud"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Kõik on korras!</b> Kui arvate, et tegemist on veaga, siis saatke meile "
|
||||
"sõnum"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Tagasi"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Viga"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Viga 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Avaleht"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Midagi läks valesti."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Vaadake allolevat veateadet."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Otsitud lehekülge ei saanud autoriseerida."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Lehekülge mida te otsisite, ei leitud!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "see leht"
|
121
i18n/fa.po
Normal file
121
i18n/fa.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: ممنوع"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>پیام خطا:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "بازگشت"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "مسیریابی HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "خانه"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "صفحه مورد نظر شما مجاز نیست."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "این صفحه"
|
125
i18n/fi.po
Normal file
125
i18n/fi.po
Normal file
|
@ -0,0 +1,125 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Mikko Salmela <salmemik@gmail.com>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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"
|
||||
"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: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Pääsy evätty"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Älä hätäänny.</b> Jos kyseessä on meidän virheemme, lähetä viesti "
|
||||
"osoitteeseen"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Virheilmoitus:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Takaisin"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Virhe 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-reititys"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Etusivu"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Ehkä etsit jotakin näistä <b>suosituista sivuista?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Hups! Jokin meni vikaan."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Katso alla olevaa virheilmoitusta."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Mallia piirrettäessä tapahtui virhe"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Sinulla ei ole oikeuksia nähdä hakemaasi sivua."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Jäljitys"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Etsimääsi sivua ei löydy!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "ja suorittaessa seuraavaa lauseketta:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "tämä sivu"
|
122
i18n/fr.po
Normal file
122
i18n/fr.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403 : Interdit"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Pas de panique.</b> Si vous pensez que c'est une erreur de notre part, "
|
||||
"veuillez nous envoyer un message à"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Message d'erreur :</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Retour"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Erreur 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Routage HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Page d'accueil"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
"Peut-être étiez-vous à la recherche d'une de ces <b>pages populaires ?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Oups ! Un problème est survenu."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Jetez un coup d'œil au message d'erreur ci-dessous."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "L'erreur s'est produite lors du rendu du modèle"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Vous n'êtes pas autorisé à accéder à la page que vous recherchez."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Retraçage"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Nous n'avons pas pu trouver la page que vous recherchez !"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "et de l'évaluation des expressions suivantes :"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "cette page"
|
116
i18n/gu.po
Normal file
116
i18n/gu.po
Normal file
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
122
i18n/he.po
Normal file
122
i18n/he.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: פעולה אסורה"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>בלי פאניקה.</b>אם לדעתך זה טעות שלנו, נא לשלוח לנו הודעה ב"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>הודעת שגיאה:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "חזור"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "שגיאה 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "ניתוב HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "בית"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "אולי חיפשת את אחד <b>הדפים הנפוצים האלה?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "אופס! משהו השתבש."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "הביטו בהודעת השגיאה מטה."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "השגיאה קרתה בזמן עיבוד התבנית"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "לא היה ניתן לגשת לדף שחיפשת."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "מעקב"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "לא מצאנו את הדף שחיפשת!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "ומעריכים את הביטוי הבא:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "דף זה"
|
121
i18n/hr.po
Normal file
121
i18n/hr.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Vojislav Opačić <vojislav.opacic@gmail.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Mario Jureša <mario.juresa@uvid.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\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"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Zabranjeno"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr "<b>Bez panike.</b> ukoliko mislite da je naša greška molimo pošaljite poruku na"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Poruka o pogrešci:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Natrag"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Greška 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmjeravanje"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Naslovna"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Možda ste tražili jedno od ovih <b>Popularnih stranica?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ooops! nešto je pošlo po krivu."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Pogledajte poruku o grešci ispod"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Stranica koju tražite nemože biti odobrena."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Povijest"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Tražena stranica nije pronađena!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "i evaluirati sljedeći izraz:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "ova stranica"
|
115
i18n/http_routing.pot
Normal file
115
i18n/http_routing.pot
Normal file
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
126
i18n/hu.po
Normal file
126
i18n/hu.po
Normal file
|
@ -0,0 +1,126 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
# Istvan <leki69@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Dombos, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tamás Dombos, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Tiltott"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Nincs ok a pánikra.</b> Ha Ön szerint valami hiba van, írjon nekünk róla "
|
||||
"egy üzenetet itt:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Hibaüzenet:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Vissza"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "404-es hiba"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP irányítás"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Kezdőlap"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Lehet, hogy ezeket a <b>népszerű oldalakat</b> keresi?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Hoppá! Valami elromlott."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Vizsgálja meg az alábbi hibaüzenetet."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Hiba a sablon feldolgozása közben"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Az oldal, amit keresett, nem engedélyezett."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Visszakövet"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "A keresett oldal nem található!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "és értékelje a következő kifejezést:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "ez az oldal"
|
115
i18n/hy.po
Normal file
115
i18n/hy.po
Normal file
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
121
i18n/id.po
Normal file
121
i18n/id.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Dilarang"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Jangan panik.</b> Bila Anda merasa ini salah kami, silakan kirim kami "
|
||||
"pesan pada"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Pesan error:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Kembali"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Error!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Beranda"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Mungkin Anda sedang mencari salah satu <b>halaman populer</b> ini?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Oops! Terjadi kesalahan."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Silakan lihat pesan error di bawah."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Error terjadi saat render templat"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Halaman yang Anda cari tidak dapat disahkan."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Melacak kembali"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Kita tidak dapat mencari halaman yang Anda cari!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "dan mengevaluasi ekspresi berikut:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "halaman ini"
|
115
i18n/is.po
Normal file
115
i18n/is.po
Normal file
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
121
i18n/it.po
Normal file
121
i18n/it.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403 - Accesso negato"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Niente panico.</b> Se si tratta di un nostro errore, invia un messaggio "
|
||||
"da"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Messaggio di errore:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Indietro"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Errore 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Instradamento HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Pagina iniziale"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Forse stavi cercando una delle <b>pagine popolari:</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ops! Qualcosa è andato storto."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Dai un'occhiata al messaggio di errore qui sotto."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Si è verificato un errore durante il rendering del template"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Nessuna autorizzazione per accedere alla pagina."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Analisi"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Impossibile trovare la pagina richiesta."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "e nella valutazione della seguente espressione:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "questa pagina"
|
119
i18n/ja.po
Normal file
119
i18n/ja.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Forbidden"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>慌てずに。</b>もしこちらの間違いだと思われるならば、以下にメッセージを送って下さい:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>エラーメッセージ:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "戻る"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "エラー 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTPルーティング"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "ホーム"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "もしかしたら<b>人気のページ</b>をお探しですか?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "!!何が間違っています。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "以下のエラーメッセージをご確認下さい。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "テンプレートのレンダリング中にエラーが発生しました"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "あなたが探していたページを承認できませんでした。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "トレースバック"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "お探しのページが見つかりませんでした!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "次の式を評価する:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "このページ"
|
113
i18n/km.po
Normal file
113
i18n/km.po
Normal file
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\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"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
119
i18n/ko.po
Normal file
119
i18n/ko.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403 : 접근 금지"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>당황하지 마세요.</b> 저희의 실수라고 생각되시면 메시지를 보내주세요."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>오류 메시지 :</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "뒤로"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 라우팅"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "홈"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "<b>인기 페이지</b> 중 하나를 찾고 계셨나요?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "이런! 문제가 발생했습니다"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "아래의 오류 메시지를 확인하세요."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "서식 파일을 만드는 중 오류가 발생했습니다."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "찾으려는 페이지를 승인할 수 없습니다."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "역 추적"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "원하시는 페이지를 찾을 수 없습니다!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "및 다음 식을 평가 :"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "해당 페이지"
|
113
i18n/lb.po
Normal file
113
i18n/lb.po
Normal file
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:11+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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
122
i18n/lt.po
Normal file
122
i18n/lt.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Anatolij, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Neleidžiama"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Klaidos pranešimas:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Grįžti"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Klaida"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP nukreipimas"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Pradžia"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "QWEB"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Puslapis, kurio ieškote, negalėjo būti patvirtintas."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Atsekti"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "ir vertinant šį išsireiškimą:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "šis puslapis"
|
123
i18n/lv.po
Normal file
123
i18n/lv.po
Normal file
|
@ -0,0 +1,123 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Anzelika Adejanova, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# JanisJanis <jbojars@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Aizliegts"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Error message:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Atpakaļ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Kļūda"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP maršrutēšana"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Sākums"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Lapu, kuru meklējat, nevarēja autorizēt."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traceback"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "and evaluating the following expression:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "šī lapa"
|
119
i18n/mn.po
Normal file
119
i18n/mn.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# baaska sh <sh.baaskash@gmail.com>, 2022
|
||||
# hish, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Хориотой"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Алдааны зурвас:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Буцах"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Алдаа"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Нүүр хуудас"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Таны хайсан хуудас хандалт зөвшөөрөгдөх боломжгүй."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Алдааны мөр"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "бөгөөд дараах илэрхийллийг тооцоолох:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
119
i18n/nb.po
Normal file
119
i18n/nb.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Jorunn D. Newth, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Forbudt"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Feilmelding:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Tilbake"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Feil"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-ruting"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Hjem"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Siden du ser etter, kunne ikke autoriseres."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Tilbakesporing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "og vurderer følgende uttrykk:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr ""
|
121
i18n/nl.po
Normal file
121
i18n/nl.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Verboden"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Geen paniek. </b> Als je denkt dat het onze fout is, stuur ons dan een "
|
||||
"bericht op"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Foutmelding:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Terug"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Fout 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP routing"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Startpagina"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Misschien zocht je naar een van deze <b>populaire pagina's? </b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Oeps! Er is iets misgegaan."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Kijk naar de foutmelding hieronder."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "De fout is opgetreden tijdens het renderen van de sjabloon"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "De pagina waarnaar je zocht is niet geautoriseerd."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Fout herleiden"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "We konden de pagina waar je naar op zoek bent niet vinden!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "en evalueer de volgende uitdrukking:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "deze pagina"
|
121
i18n/pl.po
Normal file
121
i18n/pl.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Odmowa dostępu"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Bez paniki.</b> Jeśli myślisz, że to nasz błąd, proszę wyślij do nas "
|
||||
"wiadomość na"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Błąd:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Powrót"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Błąd 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Wytyczanie HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Dom"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Być może, szukasz jednej z tych <b>popularnych stron?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ups! Coś jest nie tak."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Spójrz na poniższy komunikat o błędzie."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Wystąpił błąd podczas renderowania szablonu"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Strona, której szukasz nie mogła być autoryzowana."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Prześledź"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Nie znaleźliśmy strony, której szukasz!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "i oceniając następujące wyrażenie"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "ta strona"
|
121
i18n/pt.po
Normal file
121
i18n/pt.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Proibido"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Mensagem de erro:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Erro 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rotas HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Início"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "A página que você estava a procura não pode ser autorizado."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Rastreamento"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "e avaliar a seguinte expressão:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "esta página"
|
121
i18n/pt_BR.po
Normal file
121
i18n/pt_BR.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Proibido"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Fique tranquilo.</b> Se você acha que houve um erro da nossa parte, "
|
||||
"envie-nos uma mensagem em"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Mensagem de erro:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Erro 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Roteamento HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Início"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Você está procurando por alguma dessas <b>páginas populares</b>?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ops! Algo parece errado."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Veja a mensagem de erro abaixo."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "O erro ocorreu durante a renderização do modelo."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Não foi possível autorizar a página que você estava procurando."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Rastreamento"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Não encontramos a página que você está procurando."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "e avaliar a seguinte expressão:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "esta página"
|
121
i18n/ro.po
Normal file
121
i18n/ro.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# sharkutz <sharkutz4life@yahoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~15.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-19 13:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:52+0000\n"
|
||||
"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Interzis"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "<b>Don't panic.</b> If you think it's our mistake, please send us a message on"
|
||||
msgstr "<b> Nu vă panicați.</b>Dacă credeți că este greșeala noastră, vă rugăm să ne trimiteți un mesaj"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Mesaj eroare:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Înapoi"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Eroare"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Eroare 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Rutare HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Acasă"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Poate căutați una dintre aceste <b> pagini populare?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Hopa! Ceva n-a mers bine !"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Aruncați o privire la mesajul de eroare de mai jos."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Pagina pe care ați căutat nu a putut fi autorizată."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Traceback"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Nu am putut găsi pagina pe care o căutați!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "și evaluarea următoarei expresii:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "această pagină"
|
126
i18n/ru.po
Normal file
126
i18n/ru.po
Normal file
|
@ -0,0 +1,126 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2023
|
||||
# Denis Baranov <baranov@itlibertas.com>, 2023
|
||||
# Collex100, 2023
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Запрещено"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Не паникуйте.</b> Если вы считаете, что это наша ошибка, пожалуйста, "
|
||||
"отправьте нам сообщение на"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Сообщение об ошибке:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Ошибка 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизация HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Главная"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Может быть, вы искали одну из этих <b>популярных страниц?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ой! Что-то пошло не так."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Посмотрите на сообщение об ошибке ниже."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Произошла ошибка при рендеринге шаблона"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Искомая страница не может быть авторизована."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Выслеживать"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Мы не смогли найти страницу, которую вы ищете!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "и вычислить следующее выражение:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "эта страница"
|
119
i18n/sk.po
Normal file
119
i18n/sk.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Zakázané"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Chybové hlásenie:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Späť"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP smerovanie"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Domov"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ojoj! Niečo sa pokazilo."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Pozrite sa na chybové hlásenie nižšie."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Stránka ktorú ste hľadali nemohla byť autorizovaná."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Vystopovať"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "a vyhodnotenie nasledujúceho výrazu:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "táto strana"
|
121
i18n/sl.po
Normal file
121
i18n/sl.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Prepovedano"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Nazaj"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Napaka"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP usmerjanje"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Domov"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Nekaj je šlo narobe."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Strani, ki ste jo iskali, ni bilo mogoče avtorizirati."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Poreklo"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr ""
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "in vrednotenje sledečega izraza:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "to stran"
|
124
i18n/sr.po
Normal file
124
i18n/sr.po
Normal file
|
@ -0,0 +1,124 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Zabranjeno"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Poruka o grešci:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Nazad"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP rutiranje"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Početak"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ups! Nešto je krenulo naopako."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Take a look at the error message below."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "The error occurred while rendering the template"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Stranica koju ste tražili ne može biti autorizovana."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Trag"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "We couldn't find the page you're looking for!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "and evaluating the following expression:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "ova stranica"
|
128
i18n/sv.po
Normal file
128
i18n/sv.po
Normal file
|
@ -0,0 +1,128 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2023
|
||||
# Robin Chatfield <robin.chatfield@gmail.com>, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Daniel Löfgren, 2023
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Förbjuden"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Ingen panik.</b> Om du anser att det är vårt misstag, skicka ett "
|
||||
"meddelande till oss på"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Felmeddelande:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Fel 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP-rutt"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Hem"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Du kanske letade efter en av dessa <b>populära sidor?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Oops! Något gick fel."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Ta en titt på felmeddelandet nedan."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Felet uppstod vid rendering av mallen"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Sidan du letade efter kunde inte godkännas."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Spåra tillbaka"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Vi kunde inte hitta sidan du letar efter!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "och utvärderar följande uttryck:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "den här sidan"
|
122
i18n/th.po
Normal file
122
i18n/th.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Forbidden"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>ไม่ต้องกังวลไป</b> หากคุณคิดว่าเป็นความผิดพลาดของเรา "
|
||||
"โปรดส่งข้อความถึงเราที่"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>ข้อความผิดพลาด:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "กลับ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "ผิดพลาด"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Error 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "การกำหนด HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "โฮม"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "บางทีคุณอาจกำลังมองหาหนึ่งในเพจ<b>ยอดนิยมเหล่านี้?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "อ๊ะ! เกิดข้อผิดพลาดบางอย่าง"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "โปรดดูข้อความแสดงข้อผิดพลาดด้านล่างนี้"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "เกิดข้อผิดพลาดขณะแสดงเทมเพลต"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "หน้าที่คุณกำลังค้นหาไม่ได้รับการอนุมัติ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "การตรวจสอบย้อนกลับ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "เราไม่พบหน้าที่คุณกำลังมองหา!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "และประเมินตัวสั่งงานต่อไปนี้:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "เพจนี้"
|
127
i18n/tr.po
Normal file
127
i18n/tr.po
Normal file
|
@ -0,0 +1,127 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Saban Yildiz <sabany@projetgrup.com>, 2023
|
||||
# Halil, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Yasak"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Panik yapmayın.</b> Bunun bizim hatamız olduğunu düşünüyorsanız, lütfen "
|
||||
"bize bir mesaj gönderin"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Hata mesajı:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Geri"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Hata 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Yönlendirme"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Ana Sayfa"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Belki de bu <b>popüler sayfalardan</b> birini arıyordunuz?"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Hata! Bir şeyler yanlış gitti."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Aşağıdaki hata mesajına bir göz atın."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Şablon işlenirken hata oluştu"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Aradığınız sayfa yetkilendirilemedi."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Geri Takip"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Aradığınız sayfayı bulamadık!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "ve aşağıdaki ifade değerlendirme:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "bu sayfa"
|
121
i18n/uk.po
Normal file
121
i18n/uk.po
Normal file
|
@ -0,0 +1,121 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Заборонено"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Не панікуйте.</b> Якщо ви думаєте, що це наша помилка, надішліть нам "
|
||||
"повідомлення на"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Повідомлення про помилку:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Помилка"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Помилка 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Маршрутизація HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Головна"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Можливо ви шукали одну з цих <b>популярних сторінок?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "От халепа! Щось пішло не так."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Перегляньте повідомлення про помилку нижче."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Під час оброблення шаблону виникла помилка"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Не вдалося авторизувати сторінку, яку ви шукали."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Простежити"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Ми не змогли знайти сторінку, яку ви шукали!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "та оцінюючи наступний вираз:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "ця сторінка"
|
122
i18n/vi.po
Normal file
122
i18n/vi.po
Normal file
|
@ -0,0 +1,122 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: Không được truy cập"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr ""
|
||||
"<b>Đừng hoảng sợ.</b> Nếu bạn cho rằng đó là sai lầm của chúng tôi, vui lòng"
|
||||
" gửi tin nhắn cho chúng tôi trên"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>Thông điệp lỗi:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "Quay lại"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "Lỗi"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "Lỗi 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Định tuyến HTTP"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "Trang chủ"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "Có thể bạn đang tìm kiếm một trong những <b>trang phổ biến?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "Ôi! Đã xảy ra lỗi."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "Hãy xem thông báo lỗi bên dưới."
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "Đã xảy ra lỗi trong khi kết xuất mẫu"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "Trang bạn đang tìm không được cấp phép"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "Tìm lại"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "Chúng tôi không thể tìm thấy trang bạn đang tìm kiếm!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "và đánh giá biểu thức sau:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "trang này"
|
120
i18n/zh_CN.po
Normal file
120
i18n/zh_CN.po
Normal file
|
@ -0,0 +1,120 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: 禁止访问"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>不要惊慌。</b>如果您认为是我们的失误,请通过以下方式给我们留言"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>错误消息:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "回退"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "错误"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "错误 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 路由"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "首页"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "你正在查找这些 <b>流行的页面?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "糟糕!出问题了。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "请查看下面的错误消息。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "渲染模板时发生错误"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "您正在查找的网页可能未被授权。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "跟踪"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "找不到您要访问的页面!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "以及验证下面的表达式:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "本页"
|
119
i18n/zh_TW.po
Normal file
119
i18n/zh_TW.po
Normal file
|
@ -0,0 +1,119 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * http_routing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "403: Forbidden"
|
||||
msgstr "403: 禁止存取"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid ""
|
||||
"<b>Don't panic.</b> If you think it's our mistake, please send us a message "
|
||||
"on"
|
||||
msgstr "<b>別緊張~ </b>如果您認為這是系統錯誤,請給我們留言"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.error_message
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "<strong>Error message:</strong>"
|
||||
msgstr "<strong>錯誤訊息:</strong>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Back"
|
||||
msgstr "返回"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Error"
|
||||
msgstr "錯誤"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Error 404"
|
||||
msgstr "錯誤 404"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP 路由"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.500
|
||||
msgid "Home"
|
||||
msgstr "首頁"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "Maybe you were looking for one of these <b>popular pages?</b>"
|
||||
msgstr "也許您正在尋找這些<b>popular pages?</b>"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Oops! Something went wrong."
|
||||
msgstr "哎呀!出了一點問題~"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "QWeb"
|
||||
msgstr "QWeb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model:ir.model,name:http_routing.model_ir_qweb
|
||||
msgid "Qweb"
|
||||
msgstr "Qweb"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.400
|
||||
msgid "Take a look at the error message below."
|
||||
msgstr "查看以下錯誤訊息。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "The error occurred while rendering the template"
|
||||
msgstr "繪製範本時發生錯誤"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.403
|
||||
msgid "The page you were looking for could not be authorized."
|
||||
msgstr "您想找的頁面未被授權。"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "Traceback"
|
||||
msgstr "追溯"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "We couldn't find the page you're looking for!"
|
||||
msgstr "我們找不到您要找的頁面!"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.http_error_debug
|
||||
msgid "and evaluating the following expression:"
|
||||
msgstr "以及評估下列表達式:"
|
||||
|
||||
#. module: http_routing
|
||||
#: model_terms:ir.ui.view,arch_db:http_routing.404
|
||||
msgid "this page"
|
||||
msgstr "此頁"
|
5
models/__init__.py
Normal file
5
models/__init__.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import ir_http
|
||||
from . import ir_qweb
|
BIN
models/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
models/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/ir_http.cpython-311.pyc
Normal file
BIN
models/__pycache__/ir_http.cpython-311.pyc
Normal file
Binary file not shown.
BIN
models/__pycache__/ir_qweb.cpython-311.pyc
Normal file
BIN
models/__pycache__/ir_qweb.cpython-311.pyc
Normal file
Binary file not shown.
684
models/ir_http.py
Normal file
684
models/ir_http.py
Normal file
|
@ -0,0 +1,684 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import contextlib
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
import traceback
|
||||
import threading
|
||||
import unicodedata
|
||||
import werkzeug.exceptions
|
||||
import werkzeug.routing
|
||||
import werkzeug.urls
|
||||
from werkzeug.exceptions import HTTPException, NotFound
|
||||
|
||||
# optional python-slugify import (https://github.com/un33k/python-slugify)
|
||||
try:
|
||||
import slugify as slugify_lib
|
||||
except ImportError:
|
||||
slugify_lib = None
|
||||
|
||||
import odoo
|
||||
from odoo import api, models, exceptions, tools, http
|
||||
from odoo.addons.base.models import ir_http
|
||||
from odoo.addons.base.models.ir_http import RequestUID
|
||||
from odoo.addons.base.models.ir_qweb import QWebException
|
||||
from odoo.http import request, HTTPRequest, Response
|
||||
from odoo.osv import expression
|
||||
from odoo.tools import config, ustr, pycompat
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
# ------------------------------------------------------------
|
||||
# Slug API
|
||||
# ------------------------------------------------------------
|
||||
|
||||
def _guess_mimetype(ext=False, default='text/html'):
|
||||
exts = {
|
||||
'.css': 'text/css',
|
||||
'.less': 'text/less',
|
||||
'.scss': 'text/scss',
|
||||
'.js': 'text/javascript',
|
||||
'.xml': 'text/xml',
|
||||
'.csv': 'text/csv',
|
||||
'.html': 'text/html',
|
||||
}
|
||||
return ext is not False and exts.get(ext, default) or exts
|
||||
|
||||
|
||||
def slugify_one(s, max_length=0):
|
||||
""" Transform a string to a slug that can be used in a url path.
|
||||
This method will first try to do the job with python-slugify if present.
|
||||
Otherwise it will process string by stripping leading and ending spaces,
|
||||
converting unicode chars to ascii, lowering all chars and replacing spaces
|
||||
and underscore with hyphen "-".
|
||||
:param s: str
|
||||
:param max_length: int
|
||||
:rtype: str
|
||||
"""
|
||||
s = ustr(s)
|
||||
if slugify_lib:
|
||||
# There are 2 different libraries only python-slugify is supported
|
||||
try:
|
||||
return slugify_lib.slugify(s, max_length=max_length)
|
||||
except TypeError:
|
||||
pass
|
||||
uni = unicodedata.normalize('NFKD', s).encode('ascii', 'ignore').decode('ascii')
|
||||
slug_str = re.sub(r'[\W_]', ' ', uni).strip().lower()
|
||||
slug_str = re.sub(r'[-\s]+', '-', slug_str)
|
||||
return slug_str[:max_length] if max_length > 0 else slug_str
|
||||
|
||||
|
||||
def slugify(s, max_length=0, path=False):
|
||||
if not path:
|
||||
return slugify_one(s, max_length=max_length)
|
||||
else:
|
||||
res = []
|
||||
for u in s.split('/'):
|
||||
if slugify_one(u, max_length=max_length) != '':
|
||||
res.append(slugify_one(u, max_length=max_length))
|
||||
# check if supported extension
|
||||
path_no_ext, ext = os.path.splitext(s)
|
||||
if ext and ext in _guess_mimetype():
|
||||
res[-1] = slugify_one(path_no_ext) + ext
|
||||
return '/'.join(res)
|
||||
|
||||
|
||||
def slug(value):
|
||||
try:
|
||||
if not value.id:
|
||||
raise ValueError("Cannot slug non-existent record %s" % value)
|
||||
identifier, name = value.id, getattr(value, 'seo_name', False) or value.display_name
|
||||
except AttributeError:
|
||||
# assume name_search result tuple
|
||||
identifier, name = value
|
||||
slugname = slugify(name or '').strip().strip('-')
|
||||
if not slugname:
|
||||
return str(identifier)
|
||||
return f"{slugname}-{identifier}"
|
||||
|
||||
|
||||
# NOTE: the second pattern is used for the ModelConverter, do not use nor flags nor groups
|
||||
_UNSLUG_RE = re.compile(r'(?:(\w{1,2}|\w[A-Za-z0-9-_]+?\w)-)?(-?\d+)(?=$|\/|#|\?)')
|
||||
_UNSLUG_ROUTE_PATTERN = r'(?:(?:\w{1,2}|\w[A-Za-z0-9-_]+?\w)-)?(?:-?\d+)(?=$|\/|#|\?)'
|
||||
|
||||
|
||||
def unslug(s):
|
||||
""" Extract slug and id from a string.
|
||||
Always return a 2-tuple (str|None, int|None)
|
||||
"""
|
||||
m = _UNSLUG_RE.match(s)
|
||||
if not m:
|
||||
return None, None
|
||||
return m.group(1), int(m.group(2))
|
||||
|
||||
|
||||
def unslug_url(s):
|
||||
""" From /blog/my-super-blog-1" to "blog/1" """
|
||||
parts = s.split('/')
|
||||
if parts:
|
||||
unslug_val = unslug(parts[-1])
|
||||
if unslug_val[1]:
|
||||
parts[-1] = str(unslug_val[1])
|
||||
return '/'.join(parts)
|
||||
return s
|
||||
|
||||
|
||||
# ------------------------------------------------------------
|
||||
# Language tools
|
||||
# ------------------------------------------------------------
|
||||
|
||||
def url_lang(path_or_uri, lang_code=None):
|
||||
''' Given a relative URL, make it absolute and add the required lang or
|
||||
remove useless lang.
|
||||
Nothing will be done for absolute or invalid URL.
|
||||
If there is only one language installed, the lang will not be handled
|
||||
unless forced with `lang` parameter.
|
||||
|
||||
:param lang_code: Must be the lang `code`. It could also be something
|
||||
else, such as `'[lang]'` (used for url_return).
|
||||
'''
|
||||
Lang = request.env['res.lang']
|
||||
location = pycompat.to_text(path_or_uri).strip()
|
||||
force_lang = lang_code is not None
|
||||
try:
|
||||
url = werkzeug.urls.url_parse(location)
|
||||
except ValueError:
|
||||
# e.g. Invalid IPv6 URL, `werkzeug.urls.url_parse('http://]')`
|
||||
url = False
|
||||
# relative URL with either a path or a force_lang
|
||||
if url and not url.netloc and not url.scheme and (url.path or force_lang):
|
||||
location = werkzeug.urls.url_join(request.httprequest.path, location)
|
||||
lang_url_codes = [url_code for _, url_code, *_ in Lang.get_available()]
|
||||
lang_code = pycompat.to_text(lang_code or request.context['lang'])
|
||||
lang_url_code = Lang._lang_code_to_urlcode(lang_code)
|
||||
lang_url_code = lang_url_code if lang_url_code in lang_url_codes else lang_code
|
||||
if (len(lang_url_codes) > 1 or force_lang) and is_multilang_url(location, lang_url_codes):
|
||||
loc, sep, qs = location.partition('?')
|
||||
ps = loc.split(u'/')
|
||||
default_lg = request.env['ir.http']._get_default_lang()
|
||||
if ps[1] in lang_url_codes:
|
||||
# Replace the language only if we explicitly provide a language to url_for
|
||||
if force_lang:
|
||||
ps[1] = lang_url_code
|
||||
# Remove the default language unless it's explicitly provided
|
||||
elif ps[1] == default_lg.url_code:
|
||||
ps.pop(1)
|
||||
# Insert the context language or the provided language
|
||||
elif lang_url_code != default_lg.url_code or force_lang:
|
||||
ps.insert(1, lang_url_code)
|
||||
# Remove the last empty string to avoid trailing / after joining
|
||||
if ps[-1] == '':
|
||||
ps.pop(-1)
|
||||
|
||||
location = u'/'.join(ps) + sep + qs
|
||||
return location
|
||||
|
||||
|
||||
def url_for(url_from, lang_code=None, no_rewrite=False):
|
||||
''' Return the url with the rewriting applied.
|
||||
Nothing will be done for absolute URL, invalid URL, or short URL from 1 char.
|
||||
|
||||
:param url_from: The URL to convert.
|
||||
:param lang_code: Must be the lang `code`. It could also be something
|
||||
else, such as `'[lang]'` (used for url_return).
|
||||
:param no_rewrite: don't try to match route with website.rewrite.
|
||||
'''
|
||||
new_url = False
|
||||
rewrite = not no_rewrite
|
||||
# don't try to match route if we know that no rewrite has been loaded.
|
||||
routing = getattr(request, 'website_routing', None) # not modular, but not overridable
|
||||
if not request.env['ir.http']._rewrite_len(routing):
|
||||
rewrite = False
|
||||
|
||||
path, _, qs = (url_from or '').partition('?')
|
||||
|
||||
if (rewrite and path and (
|
||||
len(path) > 1
|
||||
and path.startswith('/')
|
||||
and '/static/' not in path
|
||||
and not path.startswith('/web/')
|
||||
)):
|
||||
new_url, _ = request.env['ir.http'].url_rewrite(path)
|
||||
new_url = new_url if not qs else new_url + '?%s' % qs
|
||||
|
||||
return url_lang(new_url or url_from, lang_code=lang_code)
|
||||
|
||||
|
||||
def is_multilang_url(local_url, lang_url_codes=None):
|
||||
''' Check if the given URL content is supposed to be translated.
|
||||
To be considered as translatable, the URL should either:
|
||||
1. Match a POST (non-GET actually) controller that is `website=True` and
|
||||
either `multilang` specified to True or if not specified, with `type='http'`.
|
||||
2. If not matching 1., everything not under /static/ or /web/ will be translatable
|
||||
'''
|
||||
if not lang_url_codes:
|
||||
lang_url_codes = [url_code for _, url_code, *_ in request.env['res.lang'].get_available()]
|
||||
spath = local_url.split('/')
|
||||
# if a language is already in the path, remove it
|
||||
if spath[1] in lang_url_codes:
|
||||
spath.pop(1)
|
||||
local_url = '/'.join(spath)
|
||||
|
||||
url = local_url.partition('#')[0].split('?')
|
||||
path = url[0]
|
||||
|
||||
# Consider /static/ and /web/ files as non-multilang
|
||||
if '/static/' in path or path.startswith('/web/'):
|
||||
return False
|
||||
|
||||
query_string = url[1] if len(url) > 1 else None
|
||||
|
||||
# Try to match an endpoint in werkzeug's routing table
|
||||
try:
|
||||
_, func = request.env['ir.http'].url_rewrite(path, query_args=query_string)
|
||||
|
||||
# /page/xxx has no endpoint/func but is multilang
|
||||
return (not func or (
|
||||
func.routing.get('website', False)
|
||||
and func.routing.get('multilang', func.routing['type'] == 'http')
|
||||
))
|
||||
except Exception as exception:
|
||||
_logger.warning(exception)
|
||||
return False
|
||||
|
||||
|
||||
class ModelConverter(ir_http.ModelConverter):
|
||||
|
||||
def __init__(self, url_map, model=False, domain='[]'):
|
||||
super(ModelConverter, self).__init__(url_map, model)
|
||||
self.domain = domain
|
||||
self.regex = _UNSLUG_ROUTE_PATTERN
|
||||
|
||||
def to_url(self, value):
|
||||
return slug(value)
|
||||
|
||||
def to_python(self, value):
|
||||
matching = _UNSLUG_RE.match(value)
|
||||
_uid = RequestUID(value=value, match=matching, converter=self)
|
||||
record_id = int(matching.group(2))
|
||||
env = api.Environment(request.cr, _uid, request.context)
|
||||
|
||||
if record_id < 0:
|
||||
# limited support for negative IDs due to our slug pattern, assume abs() if not found
|
||||
if not env[self.model].browse(record_id).exists():
|
||||
record_id = abs(record_id)
|
||||
return env[self.model].with_context(_converter_value=value).browse(record_id)
|
||||
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = ['ir.http']
|
||||
|
||||
rerouting_limit = 10
|
||||
|
||||
@classmethod
|
||||
def _get_converters(cls):
|
||||
""" Get the converters list for custom url pattern werkzeug need to
|
||||
match Rule. This override adds the website ones.
|
||||
"""
|
||||
return dict(
|
||||
super(IrHttp, cls)._get_converters(),
|
||||
model=ModelConverter,
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def _get_default_lang(cls):
|
||||
lang_code = request.env['ir.default'].sudo()._get('res.partner', 'lang')
|
||||
if lang_code:
|
||||
return request.env['res.lang']._lang_get(lang_code)
|
||||
return request.env['res.lang'].search([], limit=1)
|
||||
|
||||
@api.model
|
||||
def get_frontend_session_info(self):
|
||||
session_info = super(IrHttp, self).get_frontend_session_info()
|
||||
|
||||
IrHttpModel = request.env['ir.http'].sudo()
|
||||
modules = IrHttpModel.get_translation_frontend_modules()
|
||||
user_context = request.session.context if request.session.uid else {}
|
||||
lang = user_context.get('lang')
|
||||
translation_hash = request.env['ir.http'].get_web_translations_hash(modules, lang)
|
||||
|
||||
session_info.update({
|
||||
'translationURL': '/website/translations',
|
||||
'cache_hashes': {
|
||||
'translations': translation_hash,
|
||||
},
|
||||
})
|
||||
return session_info
|
||||
|
||||
@api.model
|
||||
def get_translation_frontend_modules(self):
|
||||
Modules = request.env['ir.module.module'].sudo()
|
||||
extra_modules_domain = self._get_translation_frontend_modules_domain()
|
||||
extra_modules_name = self._get_translation_frontend_modules_name()
|
||||
if extra_modules_domain:
|
||||
new = Modules.search(
|
||||
expression.AND([extra_modules_domain, [('state', '=', 'installed')]])
|
||||
).mapped('name')
|
||||
extra_modules_name += new
|
||||
return extra_modules_name
|
||||
|
||||
@classmethod
|
||||
def _get_translation_frontend_modules_domain(cls):
|
||||
""" Return a domain to list the domain adding web-translations and
|
||||
dynamic resources that may be used frontend views
|
||||
"""
|
||||
return []
|
||||
|
||||
@classmethod
|
||||
def _get_translation_frontend_modules_name(cls):
|
||||
""" Return a list of module name where web-translations and
|
||||
dynamic resources may be used in frontend views
|
||||
"""
|
||||
return ['web']
|
||||
|
||||
@classmethod
|
||||
def _get_frontend_langs(cls):
|
||||
return [code for code, _ in request.env['res.lang'].get_installed()]
|
||||
|
||||
@classmethod
|
||||
def get_nearest_lang(cls, lang_code):
|
||||
""" Try to find a similar lang. Eg: fr_BE and fr_FR
|
||||
:param lang_code: the lang `code` (en_US)
|
||||
"""
|
||||
if not lang_code:
|
||||
return None
|
||||
|
||||
lang_codes = cls._get_frontend_langs()
|
||||
if lang_code in lang_codes:
|
||||
return lang_code
|
||||
|
||||
short = lang_code.partition('_')[0]
|
||||
return next((code for code in lang_codes if code.startswith(short)), None)
|
||||
|
||||
@classmethod
|
||||
def _match(cls, path):
|
||||
"""
|
||||
Grant multilang support to URL matching by using http 3xx
|
||||
redirections and URL rewrite. This method also grants various
|
||||
attributes such as ``lang`` and ``is_frontend`` on the current
|
||||
``request`` object.
|
||||
|
||||
1/ Use the URL as-is when it matches a non-multilang compatible
|
||||
endpoint.
|
||||
|
||||
2/ Use the URL as-is when the lang is not present in the URL and
|
||||
that the default lang has been requested.
|
||||
|
||||
3/ Use the URL as-is saving the requested lang when the user is
|
||||
a bot and that the lang is missing from the URL.
|
||||
|
||||
4) Use the url as-is when the lang is missing from the URL, that
|
||||
another lang than the default one has been requested but that
|
||||
it is forbidden to redirect (e.g. POST)
|
||||
|
||||
5/ Redirect the browser when the lang is missing from the URL
|
||||
but another lang than the default one has been requested. The
|
||||
requested lang is injected before the original path.
|
||||
|
||||
6/ Redirect the browser when the lang is present in the URL but
|
||||
it is the default lang. The lang is removed from the original
|
||||
URL.
|
||||
|
||||
7/ Redirect the browser when the lang present in the URL is an
|
||||
alias of the preferred lang url code (e.g. fr_FR -> fr)
|
||||
|
||||
8/ Redirect the browser when the requested page is the homepage
|
||||
but that there is a trailing slash.
|
||||
|
||||
9/ Rewrite the URL when the lang is present in the URL, that it
|
||||
matches and that this lang is not the default one. The URL is
|
||||
rewritten to remove the lang.
|
||||
|
||||
Note: The "requested lang" is (in order) either (1) the lang in
|
||||
the URL or (2) the lang in the ``frontend_lang`` request
|
||||
cookie or (3) the lang in the context or (4) the default
|
||||
lang of the website.
|
||||
"""
|
||||
|
||||
# The URL has been rewritten already
|
||||
if hasattr(request, 'is_frontend'):
|
||||
return super()._match(path)
|
||||
|
||||
# See /1, match a non website endpoint
|
||||
try:
|
||||
rule, args = super()._match(path)
|
||||
routing = rule.endpoint.routing
|
||||
request.is_frontend = routing.get('website', False)
|
||||
request.is_frontend_multilang = request.is_frontend and routing.get('multilang', routing['type'] == 'http')
|
||||
if not request.is_frontend:
|
||||
return rule, args
|
||||
except NotFound:
|
||||
_, url_lang_str, *rest = path.split('/', 2)
|
||||
path_no_lang = '/' + (rest[0] if rest else '')
|
||||
else:
|
||||
url_lang_str = ''
|
||||
path_no_lang = path
|
||||
|
||||
allow_redirect = (
|
||||
request.httprequest.method != 'POST'
|
||||
and getattr(request, 'is_frontend_multilang', True)
|
||||
)
|
||||
|
||||
# Some URLs in website are concatenated, first url ends with /,
|
||||
# second url starts with /, resulting url contains two following
|
||||
# slashes that must be merged.
|
||||
if allow_redirect and '//' in path:
|
||||
new_url = path.replace('//', '/')
|
||||
werkzeug.exceptions.abort(request.redirect(new_url, code=301, local=True))
|
||||
|
||||
# There is no user on the environment yet but the following code
|
||||
# requires one to set the lang on the request. Temporary grant
|
||||
# the public user. Don't try it at home!
|
||||
real_env = request.env
|
||||
try:
|
||||
request.registry['ir.http']._auth_method_public() # it calls update_env
|
||||
nearest_url_lang = cls.get_nearest_lang(request.env['res.lang']._lang_get_code(url_lang_str))
|
||||
cookie_lang = cls.get_nearest_lang(request.httprequest.cookies.get('frontend_lang'))
|
||||
context_lang = cls.get_nearest_lang(real_env.context.get('lang'))
|
||||
default_lang = cls._get_default_lang()
|
||||
request.lang = request.env['res.lang']._lang_get(
|
||||
nearest_url_lang or cookie_lang or context_lang or default_lang._get_cached('code')
|
||||
)
|
||||
request_url_code = request.lang._get_cached('url_code')
|
||||
finally:
|
||||
request.env = real_env
|
||||
|
||||
if not nearest_url_lang:
|
||||
url_lang_str = None
|
||||
|
||||
# See /2, no lang in url and default website
|
||||
if not url_lang_str and request.lang == default_lang:
|
||||
_logger.debug("%r (lang: %r) no lang in url and default website, continue", path, request_url_code)
|
||||
|
||||
# See /3, missing lang in url but user-agent is a bot
|
||||
elif not url_lang_str and request.env['ir.http'].is_a_bot():
|
||||
_logger.debug("%r (lang: %r) missing lang in url but user-agent is a bot, continue", path, request_url_code)
|
||||
request.lang = default_lang
|
||||
|
||||
# See /4, no lang in url and should not redirect (e.g. POST), continue
|
||||
elif not url_lang_str and not allow_redirect:
|
||||
_logger.debug("%r (lang: %r) no lang in url and should not redirect (e.g. POST), continue", path, request_url_code)
|
||||
|
||||
# See /5, missing lang in url, /home -> /fr/home
|
||||
elif not url_lang_str:
|
||||
_logger.debug("%r (lang: %r) missing lang in url, redirect", path, request_url_code)
|
||||
redirect = request.redirect_query(f'/{request_url_code}{path}', request.httprequest.args)
|
||||
redirect.set_cookie('frontend_lang', request.lang._get_cached('code'))
|
||||
werkzeug.exceptions.abort(redirect)
|
||||
|
||||
# See /6, default lang in url, /en/home -> /home
|
||||
elif url_lang_str == default_lang.url_code and allow_redirect:
|
||||
_logger.debug("%r (lang: %r) default lang in url, redirect", path, request_url_code)
|
||||
redirect = request.redirect_query(path_no_lang, request.httprequest.args)
|
||||
redirect.set_cookie('frontend_lang', default_lang._get_cached('code'))
|
||||
werkzeug.exceptions.abort(redirect)
|
||||
|
||||
# See /7, lang alias in url, /fr_FR/home -> /fr/home
|
||||
elif url_lang_str != request_url_code and allow_redirect:
|
||||
_logger.debug("%r (lang: %r) lang alias in url, redirect", path, request_url_code)
|
||||
redirect = request.redirect_query(f'/{request_url_code}{path_no_lang}', request.httprequest.args, code=301)
|
||||
redirect.set_cookie('frontend_lang', request.lang._get_cached('code'))
|
||||
werkzeug.exceptions.abort(redirect)
|
||||
|
||||
# See /8, homepage with trailing slash. /fr_BE/ -> /fr_BE
|
||||
elif path == f'/{url_lang_str}/' and allow_redirect:
|
||||
_logger.debug("%r (lang: %r) homepage with trailing slash, redirect", path, request_url_code)
|
||||
redirect = request.redirect_query(path[:-1], request.httprequest.args, code=301)
|
||||
redirect.set_cookie('frontend_lang', default_lang._get_cached('code'))
|
||||
werkzeug.exceptions.abort(redirect)
|
||||
|
||||
# See /9, valid lang in url
|
||||
elif url_lang_str == request_url_code:
|
||||
# Rewrite the URL to remove the lang
|
||||
_logger.debug("%r (lang: %r) valid lang in url, rewrite url and continue", path, request_url_code)
|
||||
cls.reroute(path_no_lang)
|
||||
path = path_no_lang
|
||||
|
||||
else:
|
||||
_logger.warning("%r (lang: %r) couldn't not correctly route this frontend request, url used as-is.", path, request_url_code)
|
||||
|
||||
# Re-match using rewritten route and really raise for 404 errors
|
||||
try:
|
||||
rule, args = super()._match(path)
|
||||
routing = rule.endpoint.routing
|
||||
request.is_frontend = routing.get('website', False)
|
||||
request.is_frontend_multilang = request.is_frontend and routing.get('multilang', routing['type'] == 'http')
|
||||
return rule, args
|
||||
except NotFound:
|
||||
# Use website to render a nice 404 Not Found html page
|
||||
request.is_frontend = True
|
||||
request.is_frontend_multilang = True
|
||||
raise
|
||||
|
||||
@classmethod
|
||||
def reroute(cls, path, query_string=None):
|
||||
"""
|
||||
Rewrite the current request URL using the new path and query
|
||||
string. This act as a light redirection, it does not return a
|
||||
3xx responses to the browser but still change the current URL.
|
||||
"""
|
||||
# WSGI encoding dance https://peps.python.org/pep-3333/#unicode-issues
|
||||
if isinstance(path, str):
|
||||
path = path.encode('utf-8')
|
||||
path = path.decode('latin1', 'replace')
|
||||
|
||||
if query_string is None:
|
||||
query_string = request.httprequest.environ['QUERY_STRING']
|
||||
|
||||
# Change the WSGI environment
|
||||
environ = request.httprequest._HTTPRequest__environ.copy()
|
||||
environ['PATH_INFO'] = path
|
||||
environ['QUERY_STRING'] = query_string
|
||||
environ['RAW_URI'] = f'{path}?{query_string}'
|
||||
# REQUEST_URI left as-is so it still contains the original URI
|
||||
|
||||
# Create and expose a new request from the modified WSGI env
|
||||
httprequest = HTTPRequest(environ)
|
||||
threading.current_thread().url = httprequest.url
|
||||
request.httprequest = httprequest
|
||||
|
||||
@classmethod
|
||||
def _pre_dispatch(cls, rule, args):
|
||||
super()._pre_dispatch(rule, args)
|
||||
|
||||
if request.is_frontend:
|
||||
cls._frontend_pre_dispatch()
|
||||
|
||||
# update the context of "<model(...):...>" args
|
||||
for key, val in list(args.items()):
|
||||
if isinstance(val, models.BaseModel):
|
||||
args[key] = val.with_context(request.context)
|
||||
|
||||
if request.is_frontend_multilang:
|
||||
# A product with id 1 and named 'egg' is accessible via a
|
||||
# frontend multilang enpoint 'foo' at the URL '/foo/1'.
|
||||
# The preferred URL to access the product (and to generate
|
||||
# URLs pointing it) should instead be the sluggified URL
|
||||
# '/foo/egg-1'. This code is responsible of redirecting the
|
||||
# browser from '/foo/1' to '/foo/egg-1', or '/fr/foo/1' to
|
||||
# '/fr/foo/oeuf-1'. While it is nice (for humans) to have a
|
||||
# pretty URL, the real reason of this redirection is SEO.
|
||||
if request.httprequest.method in ('GET', 'HEAD'):
|
||||
try:
|
||||
_, path = rule.build(args)
|
||||
except odoo.exceptions.MissingError:
|
||||
raise werkzeug.exceptions.NotFound()
|
||||
assert path is not None
|
||||
generated_path = werkzeug.urls.url_unquote_plus(path)
|
||||
current_path = werkzeug.urls.url_unquote_plus(request.httprequest.path)
|
||||
if generated_path != current_path:
|
||||
if request.lang != cls._get_default_lang():
|
||||
path = f'/{request.lang.url_code}{path}'
|
||||
redirect = request.redirect_query(path, request.httprequest.args, code=301)
|
||||
werkzeug.exceptions.abort(redirect)
|
||||
|
||||
@classmethod
|
||||
def _frontend_pre_dispatch(cls):
|
||||
request.update_context(lang=request.lang._get_cached('code'))
|
||||
if request.httprequest.cookies.get('frontend_lang') != request.lang._get_cached('code'):
|
||||
request.future_response.set_cookie('frontend_lang', request.lang._get_cached('code'))
|
||||
|
||||
@classmethod
|
||||
def _get_exception_code_values(cls, exception):
|
||||
""" Return a tuple with the error code following by the values matching the exception"""
|
||||
code = 500 # default code
|
||||
values = dict(
|
||||
exception=exception,
|
||||
traceback=traceback.format_exc(),
|
||||
)
|
||||
if isinstance(exception, exceptions.AccessDenied):
|
||||
code = 403
|
||||
elif isinstance(exception, exceptions.UserError):
|
||||
values['error_message'] = exception.args[0]
|
||||
code = 400
|
||||
if isinstance(exception, exceptions.AccessError):
|
||||
code = 403
|
||||
|
||||
elif isinstance(exception, QWebException):
|
||||
values.update(qweb_exception=exception)
|
||||
|
||||
if isinstance(exception.__context__, exceptions.UserError):
|
||||
code = 400
|
||||
values['error_message'] = exception.__context__.args[0]
|
||||
if isinstance(exception.__context__, exceptions.AccessError):
|
||||
code = 403
|
||||
|
||||
elif isinstance(exception, werkzeug.exceptions.HTTPException):
|
||||
code = exception.code
|
||||
|
||||
values.update(
|
||||
status_message=werkzeug.http.HTTP_STATUS_CODES.get(code, ''),
|
||||
status_code=code,
|
||||
)
|
||||
|
||||
return (code, values)
|
||||
|
||||
@classmethod
|
||||
def _get_values_500_error(cls, env, values, exception):
|
||||
values['view'] = env["ir.ui.view"]
|
||||
return values
|
||||
|
||||
@classmethod
|
||||
def _get_error_html(cls, env, code, values):
|
||||
return code, env['ir.ui.view']._render_template('http_routing.%s' % code, values)
|
||||
|
||||
@classmethod
|
||||
def _handle_error(cls, exception):
|
||||
response = super()._handle_error(exception)
|
||||
|
||||
is_frontend_request = bool(getattr(request, 'is_frontend', False))
|
||||
if not is_frontend_request or not isinstance(response, HTTPException):
|
||||
# neither handle backend requests nor plain responses
|
||||
return response
|
||||
|
||||
# minimal setup to serve frontend pages
|
||||
if not request.uid:
|
||||
cls._auth_method_public()
|
||||
cls._handle_debug()
|
||||
cls._frontend_pre_dispatch()
|
||||
request.params = request.get_http_params()
|
||||
|
||||
code, values = cls._get_exception_code_values(exception)
|
||||
|
||||
request.cr.rollback()
|
||||
if code in (404, 403):
|
||||
try:
|
||||
response = cls._serve_fallback()
|
||||
if response:
|
||||
cls._post_dispatch(response)
|
||||
return response
|
||||
except werkzeug.exceptions.Forbidden:
|
||||
# Rendering does raise a Forbidden if target is not visible.
|
||||
pass # Use default error page handling.
|
||||
elif code == 500:
|
||||
values = cls._get_values_500_error(request.env, values, exception)
|
||||
try:
|
||||
code, html = cls._get_error_html(request.env, code, values)
|
||||
except Exception:
|
||||
code, html = 418, request.env['ir.ui.view']._render_template('http_routing.http_error', values)
|
||||
|
||||
response = Response(html, status=code, content_type='text/html;charset=utf-8')
|
||||
cls._post_dispatch(response)
|
||||
return response
|
||||
|
||||
@api.model
|
||||
@tools.ormcache('path', 'query_args', cache='routing.rewrites')
|
||||
def url_rewrite(self, path, query_args=None):
|
||||
new_url = False
|
||||
router = http.root.get_db_router(request.db).bind('')
|
||||
endpoint = False
|
||||
try:
|
||||
endpoint = router.match(path, method='POST', query_args=query_args)
|
||||
except werkzeug.exceptions.MethodNotAllowed:
|
||||
endpoint = router.match(path, method='GET', query_args=query_args)
|
||||
except werkzeug.routing.RequestRedirect as e:
|
||||
new_url = e.new_url.split('?')[0][7:] # remove scheme
|
||||
_, endpoint = self.url_rewrite(new_url, query_args)
|
||||
endpoint = endpoint and [endpoint]
|
||||
except werkzeug.exceptions.NotFound:
|
||||
new_url = path
|
||||
return new_url or path, endpoint and endpoint[0]
|
||||
|
||||
def _rewrite_len(self, website_id):
|
||||
return 0
|
52
models/ir_qweb.py
Normal file
52
models/ir_qweb.py
Normal file
|
@ -0,0 +1,52 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
from odoo.addons.http_routing.models.ir_http import slug, unslug_url, url_for
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
BAD_REQUEST = """Missing request.is_frontend attribute.
|
||||
|
||||
The request.is_frontend attribute is missing, this means that although
|
||||
http_routing is installed and that all incoming requests SHOULD be
|
||||
going through ir.http._match (which sets that attribute),
|
||||
there are some rogue requests which do not. This is likely due to a
|
||||
@route(auth='none') controller which creates its own registry and attempts
|
||||
to render a template (e.g. odoo/odoo#99667).
|
||||
|
||||
The following expectations MUST hold:
|
||||
|
||||
When:
|
||||
* there is an incoming http request (request is truthy)
|
||||
* there is a registry loaded (models are in use)
|
||||
* http_routing is installed (dependency of both portal and website)
|
||||
|
||||
Then:
|
||||
* request.is_frontend is set
|
||||
|
||||
Failure to meet this expectation can lead to downstream problems, e.g.
|
||||
here inside of http_routing's ir.qweb. Solutions vary, the one used
|
||||
inside of #99667 is to use the request.borrow_request context manager to
|
||||
temporary hide the incoming http request.
|
||||
"""
|
||||
|
||||
class IrQweb(models.AbstractModel):
|
||||
_inherit = "ir.qweb"
|
||||
|
||||
def _prepare_environment(self, values):
|
||||
irQweb = super()._prepare_environment(values)
|
||||
values['slug'] = slug
|
||||
values['unslug_url'] = unslug_url
|
||||
|
||||
if not irQweb.env.context.get('minimal_qcontext') and request:
|
||||
if not hasattr(request, 'is_frontend'):
|
||||
_logger.warning(BAD_REQUEST, stack_info=True)
|
||||
elif request.is_frontend:
|
||||
return irQweb._prepare_frontend_environment(values)
|
||||
|
||||
return irQweb
|
||||
|
||||
def _prepare_frontend_environment(self, values):
|
||||
values['url_for'] = url_for
|
||||
return self
|
0
models/res_lang.py
Normal file
0
models/res_lang.py
Normal file
15
static/shapes/404.svg
Normal file
15
static/shapes/404.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="310" height="120" viewBox="0 0 310 120">
|
||||
<g>
|
||||
<path fill="#7C6576" d="M205.104,48.417c-0.688-26.971-22.805-48.624-49.983-48.624c-26.929,0-48.883,21.258-49.954,47.883h-0.045V120c8.337,0,8.337-14.977,16.674-14.977c8.338,0,8.338,14.977,16.674,14.977c8.332,0,8.332-14.977,16.664-14.977c8.335,0,8.335,14.977,16.668,14.977c8.332,0,8.332-14.977,16.661-14.977c8.33,0,8.33,14.977,16.659,14.977V48.418L205.104,48.417zM146.152,64.963c-6.698,0-12.126-5.419-12.126-12.107s5.429-12.106,12.126-12.106c5.839,0,10.715,4.122,11.866,9.612c-1.011-1.197-2.521-1.958-4.21-1.958c-3.044,0-5.511,2.462-5.511,5.501c0,3.04,2.466,5.505,5.511,5.505c1.147,0,2.21-0.351,3.093-0.95C154.875,62.325,150.822,64.963,146.152,64.963z M180.425,64.963c-6.696,0-12.126-5.419-12.126-12.107s5.43-12.106,12.126-12.106c5.841,0,10.716,4.122,11.867,9.612c-1.011-1.197-2.522-1.958-4.212-1.958c-3.044,0-5.512,2.462-5.512,5.501c0,3.04,2.468,5.505,5.512,5.505c1.146,0,2.211-0.351,3.093-0.95C189.148,62.325,185.096,64.963,180.425,64.963z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#21323A" d="M308.002,84.182h-24.3V120h-5.04V84.182h-59.758v-3.96l58.139-79.017h6.659v78.656h24.3V84.182zM224.484,79.861h54.178V18.304l0.18-12.419h-0.359c-2.52,3.96-5.76,8.64-8.459,12.419L224.484,79.861z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#21323A" d="M90.002,84.182H65.703V120h-5.04V84.182H0.906v-3.96L59.043,1.205h6.66v78.656h24.299V84.182zM6.486,79.861h54.178V18.304l0.18-12.419h-0.36c-2.52,3.96-5.76,8.64-8.459,12.419L6.486,79.861z"/>
|
||||
</g>
|
||||
<desc>
|
||||
<!-- Monkey HTML formatted-text fallback -->
|
||||
<h1 style="font-size:12em;line-height:1;">404</h1>
|
||||
</desc>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
14
tests/test_res_lang.py
Normal file
14
tests/test_res_lang.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import TransactionCase, tagged, Form
|
||||
|
||||
@tagged('-at_install', 'post_install')
|
||||
class TestFormCreate(TransactionCase):
|
||||
|
||||
def test_create_res_lang(self):
|
||||
lang_form = Form(self.env['res.lang'])
|
||||
lang_form.url_code = 'LANG'
|
||||
lang_form.name = 'a lang name'
|
||||
lang_form.code = 'a lang code'
|
||||
lang_form.save()
|
190
views/http_routing_template.xml
Normal file
190
views/http_routing_template.xml
Normal file
|
@ -0,0 +1,190 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="http_error" name="HTTP Error">
|
||||
<t t-call="web.frontend_layout">
|
||||
<div id="wrap">
|
||||
<div class="oe_structure">
|
||||
<h1 class="container mt32"><t t-esc="status_code"/>: <t t-esc="status_message"/></h1>
|
||||
</div>
|
||||
<t t-if="editable or debug">
|
||||
<t t-call="http_routing.http_error_debug"/>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="error_message">
|
||||
<p t-if="error_message">
|
||||
<strong>Error message:</strong>
|
||||
<pre t-esc="error_message"/>
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<template id="http_error_debug">
|
||||
<div class="container accordion mb32 mt32" id="debug_infos">
|
||||
<div class="card" t-if="error_message">
|
||||
<h4 class="card-header">
|
||||
<a data-bs-toggle="collapse" href="#error_main">Error</a>
|
||||
</h4>
|
||||
<div id="error_main" class="collapse show">
|
||||
<div class="card-body">
|
||||
<t t-call="http_routing.error_message"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card" t-if="qweb_exception">
|
||||
<h4 class="card-header">
|
||||
<a data-bs-toggle="collapse" href="#error_qweb">QWeb</a>
|
||||
</h4>
|
||||
<div id="error_qweb" class="collapse show">
|
||||
<div class="card-body">
|
||||
<p>
|
||||
<strong>Error message:</strong>
|
||||
<pre t-esc="exception"/>
|
||||
</p>
|
||||
<p>
|
||||
The error occurred while rendering the template <code t-esc="qweb_exception.name"/>
|
||||
<t t-if="qweb_exception.html">and evaluating the following expression: <code t-esc="qweb_exception.html"/></t>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card" t-if="traceback">
|
||||
<h4 class="card-header">
|
||||
<a data-bs-toggle="collapse" href="#error_traceback">Traceback</a>
|
||||
</h4>
|
||||
<div id="error_traceback" t-attf-class="collapse #{not error_message and not qweb_exception and 'show'}">
|
||||
<div class="card-body">
|
||||
<pre id="exception_traceback" t-esc="traceback"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="400">
|
||||
<t t-call="web.frontend_layout">
|
||||
<div id="wrap">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">Oops! Something went wrong.</h1>
|
||||
<p>Take a look at the error message below.</p>
|
||||
</div>
|
||||
<t t-if="editable or debug">
|
||||
<t t-call="http_routing.http_error_debug"/>
|
||||
</t>
|
||||
<t t-else="">
|
||||
<div class="container">
|
||||
<t t-call="http_routing.error_message"/>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="403">
|
||||
<t t-call="web.frontend_layout">
|
||||
<div id="wrap">
|
||||
<div class="container">
|
||||
<h1 class="mt-5">403: Forbidden</h1>
|
||||
<p>The page you were looking for could not be authorized.</p>
|
||||
</div>
|
||||
<t t-if="editable or debug">
|
||||
<t t-call="http_routing.http_error_debug"/>
|
||||
</t>
|
||||
<t t-else="">
|
||||
<div class="container">
|
||||
<t t-call="http_routing.error_message"/>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="404" name="Page Not Found">
|
||||
<t t-call="web.frontend_layout">
|
||||
<div id="wrap">
|
||||
<t t-out="0"/>
|
||||
<div class="oe_structure oe_empty">
|
||||
<section class="s_text_image pt104 pb104" data-snippet="s_image_text" data-name="Image - Text">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-4 pb32">
|
||||
<img class="img img-fluid mx-auto" src="/web_editor/shape/http_routing/404.svg?c2=o-color-2"/>
|
||||
</div>
|
||||
<div class="col-lg-8 text-lg-start text-center my-auto">
|
||||
<h1 class="visually-hidden">Error 404</h1>
|
||||
<h2>We couldn't find the page you're looking for!</h2>
|
||||
<p></p>
|
||||
<p><b>Don't panic.</b> If you think it's our mistake, please send us a message on <a href="/contactus">this page</a>.</p>
|
||||
</div>
|
||||
<div class="col-lg-12">
|
||||
<div class="s_hr pt32 pb48" data-snippet="s_hr" data-name="Separator">
|
||||
<hr class="w-100 mx-auto" style="border-top-width: 1px; border-top-style: solid; border-top-color: var(--400);"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-12">
|
||||
<p class="text-center">Maybe you were looking for one of these <b>popular pages?</b></p>
|
||||
<ul class="list-inline text-center">
|
||||
<li class="list-inline-item mb-2"><a href="/" class="btn btn-primary">Home</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<template id="500">
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<!-- This template should not use any variable except those provided by http_routing.ir_http._handle_exception -->
|
||||
<!-- no request.crsf_token, no theme style, no assets, ... cursor can be broken during rendering ! -->
|
||||
<!-- see test_05_reset_specific_view_controller_broken_request -->
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<html>
|
||||
<head>
|
||||
<title t-esc="status_message">Internal Server Error</title>
|
||||
|
||||
<link rel="stylesheet" href="/web/static/lib/bootstrap/dist/css/bootstrap.css"/>
|
||||
<script src="/web/static/lib/jquery/jquery.js" type="text/javascript"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/dom/data.js"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/dom/event-handler.js"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/dom/manipulator.js"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/dom/selector-engine.js"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/base-component.js"/>
|
||||
<script type="text/javascript" src="/web/static/lib/bootstrap/js/dist/collapse.js"/>
|
||||
<style>
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapwrap">
|
||||
<header>
|
||||
<div class="navbar navbar-expand-md navbar-light bg-light">
|
||||
<div class="container">
|
||||
<div class="collapse navbar-collapse navbar-top-collapse">
|
||||
<ul class="navbar-nav ms-auto" id="top_menu">
|
||||
<li class="nav-item"><a href="/" class="nav-link">Home</a></li>
|
||||
<li class="nav-item"><a href="javascript: window.history.back()" class="nav-link">Back</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
<div id="error_message" class="oe_structure">
|
||||
<h2 class="container mt32"><t t-esc="status_code"/>: <t t-esc="status_message"/></h2>
|
||||
</div>
|
||||
|
||||
<t t-if="editable or debug">
|
||||
<t t-call="http_routing.http_error_debug"/>
|
||||
</t>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</template>
|
||||
</odoo>
|
24
views/res_lang_views.xml
Normal file
24
views/res_lang_views.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<record id="res_lang_form_inherit_model" model="ir.ui.view">
|
||||
<field name="name">res.lang.form.http_routing.inherit</field>
|
||||
<field name="model">res.lang</field>
|
||||
<field name="inherit_id" ref="base.res_lang_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="url_code" position="attributes">
|
||||
<attribute name="invisible">0</attribute>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="res_lang_tree_inherit_model" model="ir.ui.view">
|
||||
<field name="name">res.lang.tree.model.inherit</field>
|
||||
<field name="model">res.lang</field>
|
||||
<field name="inherit_id" ref="base.res_lang_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="url_code" position="attributes">
|
||||
<attribute name="column_invisible">0</attribute>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
Reference in New Issue
Block a user