From 01deb974478b3fb9dda5617579722fd2a2d45980 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:11:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 5 + __manifest__.py | 34 ++ controllers/__init__.py | 5 + controllers/portal_chatter.py | 21 ++ controllers/portal_rating.py | 22 ++ i18n/ar.po | 274 ++++++++++++++++ i18n/az.po | 270 ++++++++++++++++ i18n/bg.po | 279 ++++++++++++++++ i18n/bs.po | 269 ++++++++++++++++ i18n/ca.po | 283 +++++++++++++++++ i18n/cs.po | 275 ++++++++++++++++ i18n/da.po | 274 ++++++++++++++++ i18n/de.po | 278 ++++++++++++++++ i18n/el.po | 269 ++++++++++++++++ i18n/es.po | 279 ++++++++++++++++ i18n/es_419.po | 279 ++++++++++++++++ i18n/et.po | 282 +++++++++++++++++ i18n/fa.po | 277 ++++++++++++++++ i18n/fi.po | 283 +++++++++++++++++ i18n/fr.po | 279 ++++++++++++++++ i18n/gu.po | 269 ++++++++++++++++ i18n/he.po | 277 ++++++++++++++++ i18n/hr.po | 274 ++++++++++++++++ i18n/hu.po | 279 ++++++++++++++++ i18n/id.po | 277 ++++++++++++++++ i18n/is.po | 265 ++++++++++++++++ i18n/it.po | 278 ++++++++++++++++ i18n/ja.po | 274 ++++++++++++++++ i18n/km.po | 269 ++++++++++++++++ i18n/ko.po | 274 ++++++++++++++++ i18n/lb.po | 265 ++++++++++++++++ i18n/lt.po | 279 ++++++++++++++++ i18n/lv.po | 277 ++++++++++++++++ i18n/mn.po | 275 ++++++++++++++++ i18n/nb.po | 272 ++++++++++++++++ i18n/nl.po | 278 ++++++++++++++++ i18n/pl.po | 276 ++++++++++++++++ i18n/portal_rating.pot | 270 ++++++++++++++++ i18n/pt.po | 274 ++++++++++++++++ i18n/pt_BR.po | 279 ++++++++++++++++ i18n/ro.po | 272 ++++++++++++++++ i18n/ru.po | 282 +++++++++++++++++ i18n/sk.po | 274 ++++++++++++++++ i18n/sl.po | 279 ++++++++++++++++ i18n/sr.po | 279 ++++++++++++++++ i18n/sr@latin.po | 268 ++++++++++++++++ i18n/sv.po | 280 ++++++++++++++++ i18n/th.po | 278 ++++++++++++++++ i18n/tr.po | 287 +++++++++++++++++ i18n/uk.po | 278 ++++++++++++++++ i18n/vi.po | 274 ++++++++++++++++ i18n/zh_CN.po | 276 ++++++++++++++++ i18n/zh_TW.po | 275 ++++++++++++++++ models/__init__.py | 6 + models/ir_http.py | 13 + models/mail_message.py | 67 ++++ models/rating_rating.py | 56 ++++ static/src/js/portal_chatter.js | 370 ++++++++++++++++++++++ static/src/js/portal_composer.js | 168 ++++++++++ static/src/js/portal_rating_composer.js | 126 ++++++++ static/src/scss/portal_rating.scss | 83 +++++ static/src/xml/portal_chatter.xml | 123 +++++++ static/src/xml/portal_rating_composer.xml | 29 ++ static/src/xml/portal_tools.xml | 93 ++++++ views/portal_templates.xml | 8 + views/rating_rating_views.xml | 13 + views/rating_templates.xml | 95 ++++++ 67 files changed, 14570 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/portal_chatter.py create mode 100644 controllers/portal_rating.py create mode 100644 i18n/ar.po create mode 100644 i18n/az.po create mode 100644 i18n/bg.po create mode 100644 i18n/bs.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/el.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/gu.po create mode 100644 i18n/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/is.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/km.po create mode 100644 i18n/ko.po create mode 100644 i18n/lb.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/mn.po create mode 100644 i18n/nb.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/portal_rating.pot create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ro.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sr@latin.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/ir_http.py create mode 100644 models/mail_message.py create mode 100644 models/rating_rating.py create mode 100644 static/src/js/portal_chatter.js create mode 100644 static/src/js/portal_composer.js create mode 100644 static/src/js/portal_rating_composer.js create mode 100644 static/src/scss/portal_rating.scss create mode 100644 static/src/xml/portal_chatter.xml create mode 100644 static/src/xml/portal_rating_composer.xml create mode 100644 static/src/xml/portal_tools.xml create mode 100644 views/portal_templates.xml create mode 100644 views/rating_rating_views.xml create mode 100644 views/rating_templates.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..7d34c7c --- /dev/null +++ b/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..a751e41 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Portal Rating', + 'category': 'Hidden', + 'version': '1.0', + 'description': """ +Bridge module adding rating capabilities on portal. It includes notably +inclusion of rating directly within the customer portal discuss widget. + """, + 'depends': [ + 'portal', + 'rating', + ], + 'data': [ + 'views/rating_rating_views.xml', + 'views/portal_templates.xml', + 'views/rating_templates.xml', + ], + 'auto_install': True, + 'assets': { + 'web.assets_frontend': [ + 'portal_rating/static/src/scss/portal_rating.scss', + 'portal_rating/static/src/js/portal_chatter.js', + 'portal_rating/static/src/xml/portal_chatter.xml', + 'portal_rating/static/src/js/portal_composer.js', + 'portal_rating/static/src/js/portal_rating_composer.js', + 'portal_rating/static/src/xml/portal_rating_composer.xml', + 'portal_rating/static/src/xml/portal_tools.xml', + ], + }, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..514e3fd --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import portal_chatter +from . import portal_rating diff --git a/controllers/portal_chatter.py b/controllers/portal_chatter.py new file mode 100644 index 0000000..2ac7bfd --- /dev/null +++ b/controllers/portal_chatter.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import http +from odoo.http import request + +from odoo.addons.portal.controllers import mail + + +class PortalChatter(mail.PortalChatter): + + def _portal_post_filter_params(self): + fields = super(PortalChatter, self)._portal_post_filter_params() + fields += ['rating_value', 'rating_feedback'] + return fields + + @http.route() + def portal_chatter_post(self, res_model, res_id, message, attachment_ids='', attachment_tokens='', **kwargs): + if kwargs.get('rating_value'): + kwargs['rating_feedback'] = kwargs.pop('rating_feedback', message) + return super(PortalChatter, self).portal_chatter_post(res_model, res_id, message, attachment_ids=attachment_ids, attachment_tokens=attachment_tokens, **kwargs) diff --git a/controllers/portal_rating.py b/controllers/portal_rating.py new file mode 100644 index 0000000..a95c996 --- /dev/null +++ b/controllers/portal_rating.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import http, _ +from odoo.http import request + + +class PortalRating(http.Controller): + + @http.route(['/website/rating/comment'], type='json', auth="user", methods=['POST'], website=True) + def publish_rating_comment(self, rating_id, publisher_comment): + rating = request.env['rating.rating'].search_fetch( + [('id', '=', int(rating_id))], + ['publisher_comment', 'publisher_id', 'publisher_datetime'], + ) + if not rating: + return {'error': _('Invalid rating')} + rating.write({'publisher_comment': publisher_comment}) + # return to the front-end the created/updated publisher comment + return request.env['mail.message']._portal_message_format_rating( + rating.read(['publisher_comment', 'publisher_id', 'publisher_datetime'])[0] + ) diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..052b130 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "إضافة تقييم " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "متوسط" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "إلغاء" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "إغلاق" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "تعليق" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "تم التعليق بواسطة " + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "تم التعليق في " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "حذف" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "التفاصيل" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "تحرير" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "تحرير المراجعة" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "نجمة فارغة" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "نجم كامل" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "مسار HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "نصف نجمة" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "لم يعجبني " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "أكرهه " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "أعجبني " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "أحببته " + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "التقييم غير صالح " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "لا بأس به " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "جار التحميل..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "الرسالة" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "قم بتعديل تقييمك " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "نشر تعليق " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "تم النشر في " + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "تعليق الناشر" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "التقييم" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "إزالة الاختيار " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "مراجعة" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "التقييم مطلوب. يرجى التأكد من تحديده قبل إرسال تقييمك الكلي. " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "تحديث التعليق" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "يتطلب تحديث تقييم التعليق صلاحيات الكتابة في السجل ذي الصلة " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "كتابة تقييم " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "اكتب تعليقك" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "الصورة الرمزية" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "نجوم" diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..6bfdd7f --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,270 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Jumshud Sultanov , 2022 +# erpgo translator , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Last-Translator: erpgo translator , 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Orta" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Ləğv edin" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Bağlayın" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "şərh" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Silin" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Ətraflı Məlumat" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Redaktə edin" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Marşrutizasiyası" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mesaj" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Qiymətləndirmə" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Yenidən nəzərdən keçirin" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..c27e2c6 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# KeyVillage, 2023 +# Rosen Vladimirov , 2023 +# Martin Trigaux, 2023 +# aleksandar ivanov, 2023 +# Maria Boyadjieva , 2023 +# Albena Mincheva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Albena Mincheva , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Средно аритметично" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Отказ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Коментар" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Изтриване" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Данни" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Редактирай" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Не ми харесва" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Мразя го" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Харесва ми" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Обичам го" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Това е окей" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Зареждане..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Съобщение" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Оценяване" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Прегледайте" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "аватар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..80fe370 --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_rating +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković , 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Prosjek" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalji" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Poruka" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Ocijena" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..727cd8f --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Albert Parera, 2023 +# Quim - eccit , 2023 +# Manel Fernandez Ramirez , 2023 +# Martin Trigaux, 2023 +# Josep Anton Belchi, 2023 +# Ivan Espinola, 2023 +# Arnau Ros, 2023 +# marcescu, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: marcescu, 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Afegir resenya" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Mitjana" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancel·la" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Tancar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentari" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Comentat per" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Comentat el" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalls" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Modificar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Modificar la ressenya" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Estrella buida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Estrella completa" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutament HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Mitja estrella" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "No m'agrada" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Ho odio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "M'agrada" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "M'encanta" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Valoració no vàlida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Està bé" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Carregant..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Missatge" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifica la revisió" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Comentari de la publicació" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicat el" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Comentari de l'editor" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Valoració" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Suprimeix la selecció" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revisió" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Es requereix la valoració. Assegureu-vos de seleccionar-ne un abans d'enviar" +" la ressenya." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Actualitza el comentari" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Escriu una ressenya" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Escriu el teu comentari" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "estrelles" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..fe97977 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Jakub Smolka, 2023 +# 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:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Přidat recenzi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Průměrný" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Zrušit" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zavřít" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentář" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Komentoval" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Okomentoval" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Smazat" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Podrobnosti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Upravit" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Polovina hvězdičky" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nelíbí se mi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Vadí mi to." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "líbí se mi to" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Líbí se mi" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Neplatné hodnocení" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "To je v pořádku" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Načítání..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Zpráva" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Upravit recenzi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Přidat komentář" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publikováno dne" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Komentář vydavatele" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Hodnocení" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Odebrat výběr" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revize" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Aktualizovat komentář" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Napište komentář" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "hvězdy" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..9ca54c8 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Tilføj anmeldelse" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Gennemsnit" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Annullér" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Luk" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Kommenteret af" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Kommenteret den" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Slet" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detaljer:" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Rediger" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Halv stjerne" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Jeg kan ikke lide det" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Jeg hader det" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Jeg kan lide det" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Jeg elsker det" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Ugyldig vurdering" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Det er okay" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Indlæser..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Besked" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modificer din anmeldelse" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Skriv kommentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Udgivet den" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Udgiver kommentar" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Bedømmelse" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Fjern valgte" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Gennemse" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Opdater kommentar" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Skriv din kommentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stjerner" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..7340aa3 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Bewertung hinzufügen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Durchschnitt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Abbrechen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Schließen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentieren" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Kommentiert von" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Kommentiert am" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Löschen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Details" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Bearbeiten" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Bewertung bearbeiten" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Leerer Stern" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Ausgemalter Stern" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-Routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Ein halber Stern" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Das gefällt mir nicht." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Das gefällt mir überhaupt nicht" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Das gefällt mir" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Ich liebe es!" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Ungültige Bewertung" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Es ist okay" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Lädt …" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Nachricht" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Bearbeiten Sie Ihre Bewertung" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Kommentar veröffentlichen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Veröffentlicht am" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Veröffentlicher des Kommentars" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Bewertung" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Auswahl aufheben" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Bewertung" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Die Bewertung ist erforderlich. Bitte stellen Sie sicher, dass Sie eine " +"auswählen, bevor Sie Ihre Bewertung abschicken." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Kommentar aktualisieren" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Aktualisierung des Bewertungskommentars erfordert Schreibzugriff auf den " +"zugehörigen Datensatz" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Eine Bewertung schreiben" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Verfassen Sie Ihren Kommentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "Avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "Sterne" diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..7fdbeb8 --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_rating +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Kostas Goutoudis , 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Λεπτομέρειες" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Μήνυμα" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Βαθμολόγηση" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..c662a42 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Agregar Reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Promedio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentario" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Comentario hecho por" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Comentario hecho el" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Suprimir" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalles" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Editar Reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Estrella vacía" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Estrella completa" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutamiento HTTP " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Media estrella" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "No me gusta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Lo detesto" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Me gusta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Me encanta" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Calificación inválida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Está bien" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Cargando…" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifica tu reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Publicar comentario" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicado el" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Comentario del editor" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Calificación" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Eliminar selección" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revisión" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Se requiere una calificación. Asegúrese de seleccionar una antes de enviar " +"su reseña." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Actualizar comentario" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"La actualización del comentario de calificación requiere acceso de escritura" +" en el registro relacionado" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Escriba una reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Escribe tu comentario" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "estrellas" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..8b56d4b --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Wil Odoo, 2023 +# Fernanda Alvarez, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Fernanda Alvarez, 2023\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Agregar reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Promedio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentario" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Comentario hecho por" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Comentario hecho el" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalles" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Editar reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Estrella vacía" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Estrella completa" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutamiento HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Media estrella" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "No me gusta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Lo detesto" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Me gusta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Me encanta" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Calificación no válida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Está bien" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Cargando…" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mensaje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifique su reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Publicar comentario" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicado el" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Comentario del editor" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Calificación" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Eliminar selección" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revisión" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Se requiere una calificación. Asegúrese de seleccionar una antes de enviar " +"su reseña." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Actualizar comentario" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"La actualización de la calificación del comentario requiere acceso de " +"escritura en el registro relacionado" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Escriba una reseña" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Escriba su comentario" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "estrellas" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..9ffd185 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,282 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Arma Gedonsky , 2023 +# Piia Paurson , 2023 +# Triine Aavik , 2023 +# Martin Trigaux, 2023 +# Patrick-Jordan Kiudorv, 2023 +# Eneli Õigus , 2023 +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Lisa arvustus" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Keskmine" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Tühista" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Sulge" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentaar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Kommenteeris " + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Kommentaar lisatud" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Kustuta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Üksikasjad" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Muuda" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Muuda arvustust" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Tühi täht" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Täistäht" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Pool tähest" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Mulle see ei meeldi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Ma vihkan seda" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Mulle meeldib see" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Ma armastan seda" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Kehtetu hinnang" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "See on korras" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Laadimine..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Sõnum" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Muuda enda arvustust" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Postita kommentaar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Avaldatud " + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Avaldaja kommentaar" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Hinnang" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Eemalda valik" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Ülevaade" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Hinnang on nõutav. Palun veenduge, et olete andnud vähemalt ühe hinnangu " +"enne arvustuse saatmist. " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Uuenda kommentaari" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Kirjuta arvustus" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Kirjuta kommentaar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "tähed" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..3454243 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Martin Trigaux, 2023 +# Hamid Darabi, 2023 +# Hanna Kheradroosta, 2023 +# Hamed Mohammadi , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Hamed Mohammadi , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "افزودن نقد" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "متوسط" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "لغو" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "بستن" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "توضیح" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "حذف" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "جزییات" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "ویرایش" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "مسیریابی HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "ازش خوشم نمیاد" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "ازش متنفرم" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "ازش خوشم میاد" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "عاشقشم" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "قابل قبوله" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "بارگذاری..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "پیام" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "بررسی خود را اصلاح کنید" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "رتبه دهی" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "بازبینی" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "یک بررسی بنویسید" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "آواتار" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "ستاره‌ها" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..ce9c167 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Miku Laitinen , 2023 +# Kari Lindgren , 2023 +# Veikko Väätäjä , 2023 +# Tuomo Aura , 2023 +# Ossi Mantylahti , 2023 +# Martin Trigaux, 2023 +# Jarmo Kortetjärvi , 2023 +# Antti Oksman , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Antti Oksman , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Lisää arvostelu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Keskinkertainen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Peruuta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Sulje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentti" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Kommentoi" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Kommentoitu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Poista" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Tiedot" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Muokkaa" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Muokkaa arvostelua" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Tyhjä tähti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Täysi tähti" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-reititys" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Puolikas tähti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "En pidä siitä" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Vihaan sitä" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Pidän siitä" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Todella pidän siitä" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Virheellinen luokitus" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Tämä OK" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Lataa..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Viesti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Muokkaa arvostelua" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Kommetoi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Julkastu" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Julkasijan kommentti" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Arvostelu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Poista valinta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Tarkasta" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Arvostelu vaaditaan. Varmista, että valitset yhden ennen arvostelun " +"lähettämistä." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Päivitä kommenttia" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Kirjoita arvostelu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Kirjoita kommenttisi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "tähdet" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..2ffe9b6 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2024\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Ajouter un avis" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Moyenne" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Annuler" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Commentaire" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Commenté par" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Commenté le" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Supprimer" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Détails" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Modifier" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Modifier l'avis" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Étoile vide" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Étoile pleine" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Routage HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Une demi-étoile" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Je n'aime pas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Je déteste" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "J'aime" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "J'adore" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Évaluation invalide" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "C'est bien" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "En cours de chargement..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Message" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifier votre avis" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Publier un commentaire" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publié le" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Commentaire de l'éditeur" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Évaluation" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Supprimer la sélection" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Avis" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"L'évaluation est obligatoire. Assurez-vous d'en sélectionner un avant " +"d'envoyer votre avis." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Mettre à jour le commentaire" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"La mise à jour du commentaire d'évaluation nécessite un accès en écriture à " +"l'enregistrement correspondant" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Rédiger un commentaire" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Écrivez votre commentaire" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "étoiles" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..09627b3 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Qaidjohar Barbhaya, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Last-Translator: Qaidjohar Barbhaya, 2023\n" +"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancel" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Close" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "વિગતો" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Edit" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "સંદેશ" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Review" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..e978cdf --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Ha Ketem , 2023 +# Martin Trigaux, 2023 +# Yihya Hugirat , 2023 +# ZVI BLONDER , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ZVI BLONDER , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "הוסף חוות דעת" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "ממוצע" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "בטל" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "סגור" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "הערה" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "תגובה על ידי" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "הגיב ב" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "מחק" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "פרטים" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "ערוך" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "ניתוב HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "חצי כוכב" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "אני לא אוהב את זה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "אני שונא את זה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "אני מחבב את זה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "אני אוהב את זה" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "דירוג לא חוקי" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "זה בסדר" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "טוען..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "הודעה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "שנה את הביקורת שלך" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "פרסם תגובה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "פורסם ב" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "הערת המפרסם" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "דירוג" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "הסר את הבחירה" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "בדוק" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "עדכן תגובה" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "כתיבת פרגון או ביקורת" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "כתוב את התגובה שלך" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "אווטר" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "כוכבים" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..d9b7af6 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Ana-Maria Olujić , 2022 +# Vojislav Opačić , 2022 +# Martin Trigaux, 2022 +# Bole , 2022 +# Karolina Tonković , 2022 +# Tina Milas, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Last-Translator: Tina Milas, 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Prosjek" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Odustani" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Obriši" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalji" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Uredi" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Ne sviđa mi se" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Grozno" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Sviđa mi se" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Obožavam" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "U redu" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Učitavanje..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Poruka" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Ocjena" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Pregledaj" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..eb7e4a0 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Tamás Németh , 2023 +# Gergő Kertész , 2023 +# gezza , 2023 +# Ákos Nagy , 2023 +# Martin Trigaux, 2023 +# krnkris, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: krnkris, 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Átlagos" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Töröl" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Bezárás" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Megjegyzés" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Törlés" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Részletek" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Szerkesztés" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP irányítás" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nem kedvelem" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Utálom" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Kedvelem" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Én szeretem" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Ez rendben van" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Betöltés…" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Üzenet" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Értékelés" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Átnézés" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatár" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..6f6680d --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Tambahkan Tinjauan" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Rata-rata" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Batal" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Dikomentari oleh" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Dikomentari pada" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Hapus" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Perincian" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Edit" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Edit Tinjaua" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Bintang kosong" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Bintang penuh" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Setengah bintang" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Saya tidak suka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Saya benci" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Saya suka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Saya suka sekali" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Rating tidak valid" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Cukup ok" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Memuat..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Pesan" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifikasi review Anda" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Posting komentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Dipublikasikan pada" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Komentar yang mempublikasi" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Rating" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Hapus Pilihan" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Tinjauan" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Rating dibutuhkan. Mohon pastikan untuk memilih satu sebelum mengirimkan " +"tinjauan Anda." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Update komentar" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Mengupdate komentar rating membutuhkan akses penulisan pada record terkait" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Tulis review" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Tulis komentar Anda" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "bintang" diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..8f5fef2 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Skilaboð" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Einkunn" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..f3ec129 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Aggiunta recensione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Medio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Annulla" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Chiudi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Commento" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Commentato da" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Commentato il" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Elimina" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Dettagli" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Modifica" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Modifica recensione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Stella vuota" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Stella piena" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Instradamento HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Una mezza stella" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Non mi piace" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Lo odio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Mi piace" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Lo adoro" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Valutazione non valida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Va bene" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Caricamento..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Messaggio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modifica la recensione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Pubblica commento" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Pubblicato il" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Commento editore" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Valutazione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Rimuovi selezione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revisione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"La classificazione è obbligatoria. Assicurati di selezionarne una prima di " +"inviare la tua recensione." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Aggiorna commento" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"L'aggiornamento del commento di valutazione richiede l'accesso in scrittura " +"al record correlato" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Scrivi una recensione" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Scrivi commento" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stelle" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..aeafa17 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "レビューを追加" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "平均" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "キャンセル" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "閉じる" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "コメント" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "コメント者" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "以下へのコメント済:" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "削除" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "詳細" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "編集" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "レビューを編集" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "空の星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "塗りつぶした星" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTPルーティング" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "半分の星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "気に入りません" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "嫌いです" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "いいね" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "大好き" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "無効な評価" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "いいんだよ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "読込中..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "メッセージ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "レビューを修正" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "コメントを投稿" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "以下に公開済:" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "公開者コメント" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "評価" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "選択を削除" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "レビュー" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "評価が必要です。レビューを送信する前に必ず1つ選択して下さい。" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "コメントを更新" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "評価コメントの更新には、関連レコードへの書込アクセス権が必要です。" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "レビューを書く" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "コメントを書く" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "アバター" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "星" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..2a6bb75 --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,269 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_rating +# +# Translators: +# Sengtha Chay , 2018 +# Chan Nath , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Chan Nath , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "ពិស្តារ" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..c7700c6 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "소감 추가" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "평균" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "취소" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "닫기" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "댓글" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "댓글 작성자" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "댓글 작성일" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "삭제" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "세부 정보" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "편집" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "리뷰 편집" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "별점 편집" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "최고 별점" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 라우팅" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "별 반개" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "좋아하지 않아요" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "싫어요" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "좋아요" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "사랑해요" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "잘못된 평가" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "괜찮아요" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "불러오는 중..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "메시지" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "소감 수정" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "의견 게시하기" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "게시일" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "댓글 게시자" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "평가" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "선택 제거" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "검토" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "평점은 필수 항목입니다. 리뷰 전송 전에 한 항목을 선택해주세요." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "댓글 업데이트" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "평점 댓글을 변경하려면 해당 기록에 대한 쓰기 권한이 있어야 합니다." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "리뷰 작성" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "댓글 쓰기" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "아바타" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "별" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..3261690 --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,265 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_rating +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2019-08-26 09:16+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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..383b030 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Antanas Muliuolis , 2023 +# Arminas Grigonis , 2023 +# Martin Trigaux, 2023 +# digitouch UAB , 2023 +# Jonas Zinkevicius , 2023 +# Linas Versada , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Linas Versada , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Vidutinis" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Atšaukti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Uždaryti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentaras" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Komentaro autorius" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Komentaras parašytas " + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Trinti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Papildoma informacija" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Redaguoti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP nukreipimas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Pusė žvaigždutės" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nepatinka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Labai nepatinka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Patinka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Labai patinka" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Netinkamas įvertinimas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Neblogai" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Vykdoma..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Žinutė" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Redaguokite savo įvertinimą" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Skelbti komentarą" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Paskelbtas" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Skelbėjo komentaras" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Įvertinimas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Pašalinti pasirinkimą" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Peržiūrėti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Atnaujinti komentarą" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Parašykite savo komentarą" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "Portretas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "žvaigždutės" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..5fd3de4 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,277 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Konstantins Zabogonskis , 2023 +# Arnis Putniņš , 2023 +# ievaputnina , 2023 +# JanisJanis , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: JanisJanis , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Atcelt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Aizvērt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentārs" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Izdzēst" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Informācija" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Labot" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP maršrutēšana" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Notiek ielāde..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Ziņojums" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Apskats" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..4b48aa8 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Khoschuluu Khuderchuluu , 2022 +# Mandalbayar Batbayar , 2022 +# Uuganbayar Batbaatar , 2022 +# Martin Trigaux, 2022 +# hish, 2022 +# Baskhuu Lodoikhuu , 2022 +# baaska sh , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Last-Translator: baaska sh , 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Тойм оруулах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Дундаж" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Цуцлах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Хаах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Сэтгэгдэл" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Устгах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Дэлгэрэнгүй" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Засах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Хагас од" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Надад таалагдахгүй байна" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Би үзэн ядаж байна" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Надад таалагдаж байна" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Надад маш их таалагдаж байна" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Зүгээр" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Ачаалж байна..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Зурвас" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Нийтлэлийн сэтгэгдэл" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Үнэлгээ" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Хянах" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "од" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..fc686c2 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Mads Søndergaard, 2022 +# Martin Trigaux, 2022 +# Marius Stedjan , 2022 +# Jorunn D. Newth, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Gjennomsnitt" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Kanseller" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Lukk" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Slett" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detaljer" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Rediger" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-ruting" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "En halv stjerne" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Jeg liker det ikke" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Jeg hater det" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Jeg liker det" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Jeg elsker det" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Det er greit nok" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Laster..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Melding" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Vurdering" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Gjennomgå" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stjerner" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..eabe560 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Review toevoegen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Gemiddelde" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Annuleren" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Afsluiten" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Opmerking" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Gereageerd door" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Gereageerd op" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Verwijderen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Details" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Bewerken" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Beoordeling bewerken" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Lege ster" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Volle ster" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Halve ster" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Ik vind het niet leuk" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Ik haat het" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Ik vind het leuk" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Ik hou er van" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Ongeldige beoordeling" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Het is ok" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Laden..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Bericht" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Wijzig je beoordeling" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Reactie posten" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Gepubliceerd op" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Reactie van uitgever" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Beoordeling" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Selectie verwijderen" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Controle" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"De evaluatie is verplicht. Zorg ervoor dat je er een selecteert voordat je " +"je beoordeling opstuurt." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Reactie bijwerken" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Het bijwerken van een beoordelingscommentaar vereist schrijftoegang op het " +"desbetreffende record" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Schrijf een beoordeling" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Schrijf je reactie" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "sterren" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..67eab60 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,276 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Dodaj recenzję" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Przeciętny" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Anuluj" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zamknij" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentarz" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Skomentowane przez" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Skomentowane na" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Usuń" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Szczegóły" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Edytuj" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Edytuj recenzję" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Pusta gwiazdka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Pełna gwiazdka" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Wytyczanie HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Połowa gwiazdki" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nie lubię tego" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Nienawidzę tego" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Lubię to" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Kocham to" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Błędna ocena" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "jest dobrze" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Pobieranie..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Wiadomość" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Zmodyfikuj swoją recenzję" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Zamieść komentarz" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Opublikowane na" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Komentarz publikującego" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Ocena" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Usuń wybór" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Recenzja" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Ocena jest wymagana. Proszę upewnij się że ją zaznaczyłeś przed wysłaniem " +"swojej recenzji." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Zaktualizuj komentarz" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Napisz recenzję" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Napisz komentarz" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "awatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "gwiazdy" diff --git a/i18n/portal_rating.pot b/i18n/portal_rating.pot new file mode 100644 index 0000000..24ede99 --- /dev/null +++ b/i18n/portal_rating.pot @@ -0,0 +1,270 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 21:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..c907a15 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Média" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentário" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Eliminar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalhes" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Rotas HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Eu não gosto" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Eu odeio" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Eu gosto" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Eu adoro" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Está bem" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "A carregar..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mensagem" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Classificação" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Revisão" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "estrelas" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..3ea1ca5 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Wil Odoo, 2023 +# Maitê Dietze, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Maitê Dietze, 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Adicionar avaliação" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Média" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Cancelar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentário" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Comentado por" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Comentado em" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Excluir" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalhes" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Editar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Editar avaliação" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Zero estrelas" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Cinco estrelas" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Roteamento HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Meia estrela" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Não gostei" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Odiei" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Gostei" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Amei" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Avaliação inválida" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "É ok" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Carregando…" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mensagem" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modificar seu comentário" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Publicar comentários" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicado em" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Comentário do editor" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Avaliação" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Remover seleção" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Avaliar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"A pontuação é obrigatória. Certifique-se de selecionar a pontuação antes de " +"enviar sua avaliação." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Atualizar comentário" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Atualizar o comentário da pontuação requer acesso de gravação no registro " +"relacionado" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Escreva a avaliação" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Escreva o comentário" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "estrelas" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..0985b92 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# sharkutz , 2022 +# Martin Trigaux, 2022 +# Dorin Hongu , 2022 +# Foldi Robert , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2022-09-22 05:54+0000\n" +"Last-Translator: Foldi Robert , 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: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Adaugă Evaluare" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Medie" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Anulează" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Închide" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Comentariu" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Comentat de" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Comentat în" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Șterge" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalii" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Editare" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Rutare HTTP" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Jumătate de stea" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nu-mi place" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Urăsc asta" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Îmi place" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Îmi place" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Rating Nevalid" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Este O.K." + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Se încarcă..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mesaj" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modificare evaluare" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "Doar editorul site-ului poate modifica comentariul de evaluare" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Postare Comentariu" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicat în" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Comentariu Editor" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Evaluare" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Eliminare Selecție" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Examinare" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Actualizare comentariu" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Scrie comentariul tău" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stele" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..969b5b7 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,282 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Сергей Шебанин , 2023 +# Martin Trigaux, 2023 +# Ivan Kropotkin , 2023 +# Vasiliy Korobatov , 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Добавить отзыв" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Средне" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Отменить" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Закрыть" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Комментарий" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Прокомментировано" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Прокомментировал" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Удалить" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Детали" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Редактировать" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Редактировать отзыв" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Пустая звезда" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Полная звезда" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизация HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Половина звезды" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Мне это не нравится" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Я ненавижу это" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Понравилось" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Мне нравится" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Неверный рейтинг" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Всё в порядке." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Загрузка..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Сообщение" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Измените свой отзыв" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Оставить комментарий" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Опубликовано" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Комментарий издателя" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Рейтинг" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Удалить выделенные" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Отзыв" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Оценка обязательна. Пожалуйста, убедитесь, что вы выбрали его перед " +"отправкой отзыва." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Обновить комментарий" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Обновление комментария к рейтингу требует доступа на запись к связанной " +"записи" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Написать отзыв" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Напишите свой комментарий" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "аватар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "звезды" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..205bd17 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Pridať recenziu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Priemerné" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Zrušené" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvoriť" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentár" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Zmazať" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Podrobnosti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Upraviť" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP smerovanie" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Nepáči sa mi to" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Neznášam to" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Páči sa mi to" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Milujem to" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Je to OK" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Nahrávanie..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Správa" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Hodnotenie" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Prehľad" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..c7371fb --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Vida Potočnik , 2023 +# Jasmina Macur , 2023 +# Tadej Lupšina , 2023 +# Matjaz Mozetic , 2023 +# Martin Trigaux, 2023 +# Katja Deržič, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Katja Deržič, 2024\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Dodaj mnenje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Povprečna" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Prekliči" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zaključi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Izbriši" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Podrobnosti" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Uredi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmerjanje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Nalaganje …" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Sporočilo" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Komentar založnika" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Ocena" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Pregled" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..8561817 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Martin Trigaux, 2023 +# Dragan Vukosavljevic , 2023 +# Milan Bojovic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Dodaj ocenu" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Prosečno" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Otkaži" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Komentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Komentarisao/la" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Komentarisano dana" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Obriši" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalji" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Uredi" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Edit Review" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Empty star" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Full star" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP rutiranje" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Half a star" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "I don't like it" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "I hate it" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "I like it" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "I love it" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Invalid rating" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "It's okay" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Učitavanje..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Poruka" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modify your review" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Objavi komentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Published on" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Publisher comment" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Ocene" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Remove Selection" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Pregled" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"The rating is required. Please make sure to select one before sending your " +"review." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Ažuriraj komentar" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Write a review" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Napišite svoj komentar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stars" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..a427a90 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,268 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_rating +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-09-23 08:02+0000\n" +"PO-Revision-Date: 2017-09-20 09:54+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detalji" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Poruka" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "" + +#. module: portal_rating +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Only the publisher of the website can change the rating comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "The rating is required. Please make sure to select one before sending your review." +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "" + +#. module: portal_rating +#. openerp-web +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..04fae82 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,280 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Robin Calvin, 2023 +# Haojun Zou , 2023 +# Jakob Krabbe , 2023 +# Martin Trigaux, 2023 +# Simon S, 2023 +# Chrille Hedberg , 2023 +# Anders Wallenquist , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anders Wallenquist , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Lägg till recension" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Genomsnitt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Stäng" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Kommentar" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Ta bort" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detaljer" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Redigera" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-rutt" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Laddar..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Meddelande" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Ändra din recension" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Publicerad på" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Omdöme" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Granska" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "stjärnor" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..d7ef68b --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "เพิ่มรีวิว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "เฉลี่ย" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "ปิด" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "ความคิดเห็น" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "แสดงความคิดเห็นโดย" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "แสดงความคิดเห็นเมื่อ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "ลบ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "รายละเอียด" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "แก้ไข" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "แก้ไขรีวิว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "ไม่มีดาว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "เต็มดาว" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "การกำหนด HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "ครึ่งดาว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "ฉันไม่ชอบเลย" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "ฉันเกลียดมัน" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "ฉันชอบมัน" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "ฉันรักมัน" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "การให้คะแนนไม่ถูกต้อง" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "ไม่เป็นไร" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "กำลังโหลด..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "ข้อความ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "แก้ไขรีวิวของคุณ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "เขียนความคิดเห็น" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "เผยแพร่เมื่อ" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "ความคิดเห็นของผู้เผยแพร่" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "การให้คะแนน" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "ลบส่วนที่เลือก" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "รีวิว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"จำเป็นต้องมีการให้คะแนน " +"โปรดตรวจสอบให้แน่ใจว่าได้เลือกหนึ่งรายการก่อนที่จะส่งรีวิวของคุณ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "อัปเดตความคิดเห็น" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"การอัปเดตความคิดเห็นการให้คะแนนจำเป็นต้องมีการเข้าถึงการเขียนในบันทึกที่เกี่ยวข้อง" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "เขียนรีวิว" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "เขียนความคิดเห็นของคุณ" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "สัญลักษณ์" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "ดาว" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..32b415d --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Saban Yildiz , 2023 +# Levent Karakaş , 2023 +# gezgin biri , 2023 +# Ayhan KIZILTAN , 2023 +# Gökhan Erdoğdu , 2023 +# Martin Trigaux, 2023 +# abc Def , 2023 +# Murat Kaplan , 2023 +# Ediz Duman , 2023 +# Tugay Hatıl , 2023 +# Murat Durmuş , 2023 +# Umur Akın , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Umur Akın , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Yorum Ekle" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Ortalama" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "İptal" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Kapat" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Yorum" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Yorumlayan" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Yorum yapıldı" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Sil" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Detaylar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Düzenle" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "İncelemeyi Düzenle" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "boş yıldız" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Tam yıldız" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Yönlendirme" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Yarım yıldız" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Bunu beğenmedim" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Bundan nefret ediyorum" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Bundan hoşlanıyorum" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Bunu seviyorum" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Geçersiz derecelendirme" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Tamamdır." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Yükleniyor..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Mesaj" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Gözden geçirmenizi değiştirin" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Yorum Gönder" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Yayınlandı" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Yayıncı Yorumu" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Değerlendirme" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Seçimi Kaldır" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "İnceleme" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Derecelendirme gereklidir. Lütfen incelemenizi göndermeden önce birini " +"seçtiğinizden emin olun." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Yorumu güncelle" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Bir değerlendirme yazın" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Yorumunuzu yazın" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "avatar" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "yıldızlar" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..e64b3c6 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,278 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Alina Lisnenko , 2023 +# 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:55+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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Додати відгук" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Всередньому" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Скасувати" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Закрити" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Коментар" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Коментар залишив" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Коментар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Видалити" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Деталі" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Редагувати" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "Редагувати відгук" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "Пуста зірка" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "Повна зірка" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизація HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Половина зірки" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Мені це не подобається" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Я ненавиджу це" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Мені подобається це" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Я люблю це" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Недійсне оцінювання" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Все в порядку" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Завантаження..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Повідомлення" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Змініть ваш відгук" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Опублікувати коментар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Опубліковано на" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Коментар" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Оцінка" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Видалити вибір" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Огляд" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" +"Рейтинг обов'язковий. Будь ласка, переконайтеся, що ви вибрали його, перш " +"ніж надсилати свій відгук." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Оновити коментарі" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" +"Для оновлення рейтингового коментаря потрібен доступ до відповідного запису" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "Напишіть відгук" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Напишіть ваш коментар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "аватар" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "зірки" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..0a12bbf --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# 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:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "Thêm đánh giá" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "Trung bình" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "Hủy" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "Đóng" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "Bình luận" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "Commented by" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "Commented on" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "Xoá" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "Chi tiết" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "Chỉnh sửa" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "Định tuyến HTTP" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "Half a star" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "Tôi không thích nó" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "Tôi ghét nó" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "Tôi thích nó" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "Tôi thật sự yêu thích nó" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "Invalid rating" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "Nó cũng được" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "Đang tải..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "Tin nhắn" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "Modify your review" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "Post comment" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "Published on" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "Publisher comment" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "Đánh giá" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "Remove Selection" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "Xem trước" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "Update comment" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "Write your comment" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "ảnh đại diện" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "ngôi sao" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..a86ccca --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,276 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Wil Odoo, 2023 +# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023 +# Jeffery CHEN , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jeffery CHEN , 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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "添加评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "平均" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "关闭" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "备注" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "评论" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "评论在" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "删除" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "细节" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "编辑" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "编辑评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "空星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "满星" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "半颗星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "我不喜欢的" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "我讨厌它" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "我喜欢它" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "我爱它" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "无效的评级" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "没有问题" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "正在加载... 稍安勿躁" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "消息" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "修改您的评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "发布评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "已发布于" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "发布者评论" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "点评" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "移除选择" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "审查" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "评级是必需的,请确保在您发送您的评论之前选择一个。" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "更新评论" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "更新评级注释需要对相关记录进行写访问" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "写评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "填写您的评论" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "形象" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "星星" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..d4e0d78 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * portal_rating +# +# Translators: +# Wil Odoo, 2023 +# Tony Ng, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tony Ng, 2024\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: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Add Review" +msgstr "新增評論" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Average" +msgstr "平均" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Cancel" +msgstr "取消" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Close" +msgstr "關閉" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_rating_view_form +#, python-format +msgid "Comment" +msgstr "評論" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_id +msgid "Commented by" +msgstr "評論者" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_datetime +msgid "Commented on" +msgstr "評論於" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Delete" +msgstr "刪除" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Details" +msgstr "詳細資訊" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Edit" +msgstr "編輯" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Edit Review" +msgstr "編輯評論" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Empty star" +msgstr "空星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Full star" +msgstr "滿星" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Half a star" +msgstr "半顆星" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I don't like it" +msgstr "我不喜歡它" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I hate it" +msgstr "我討厭它" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I like it" +msgstr "我喜歡它" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "I love it" +msgstr "我超愛的" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/controllers/portal_rating.py:0 +#, python-format +msgid "Invalid rating" +msgstr "無效評分" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "It's okay" +msgstr "沒有問題" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Loading..." +msgstr "載入中..." + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_mail_message +msgid "Message" +msgstr "消息" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Modify your review" +msgstr "修改您的評論" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Post comment" +msgstr "發表評論" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Published on" +msgstr "發表於" + +#. module: portal_rating +#: model:ir.model.fields,field_description:portal_rating.field_rating_rating__publisher_comment +msgid "Publisher comment" +msgstr "網站編輯者評論" + +#. module: portal_rating +#: model:ir.model,name:portal_rating.model_rating_rating +msgid "Rating" +msgstr "評分" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "Remove Selection" +msgstr "刪除所選內容" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_rating_composer.js:0 +#: model_terms:ir.ui.view,arch_db:portal_rating.rating_stars_static_popup_composer +#, python-format +msgid "Review" +msgstr "審查" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_composer.js:0 +#, python-format +msgid "" +"The rating is required. Please make sure to select one before sending your " +"review." +msgstr "評級是必需的,請確保在您發送您的評論之前選擇一個。" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "Update comment" +msgstr "更新評論" + +#. module: portal_rating +#. odoo-python +#: code:addons/portal_rating/models/rating_rating.py:0 +#, python-format +msgid "Updating rating comment require write access on related record" +msgstr "更新評級留言需要對相關記錄有寫入權限" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_rating_composer.xml:0 +#, python-format +msgid "Write a review" +msgstr "提供建議" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/js/portal_chatter.js:0 +#, python-format +msgid "Write your comment" +msgstr "寫下您的評論..." + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#: code:addons/portal_rating/static/src/xml/portal_chatter.xml:0 +#, python-format +msgid "avatar" +msgstr "頭像" + +#. module: portal_rating +#. odoo-javascript +#: code:addons/portal_rating/static/src/xml/portal_tools.xml:0 +#, python-format +msgid "stars" +msgstr "星星" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..4bd60c9 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_http +from . import mail_message +from . import rating_rating diff --git a/models/ir_http.py b/models/ir_http.py new file mode 100644 index 0000000..04a6a05 --- /dev/null +++ b/models/ir_http.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class IrHttp(models.AbstractModel): + _inherit = 'ir.http' + + @classmethod + def _get_translation_frontend_modules_name(cls): + mods = super(IrHttp, cls)._get_translation_frontend_modules_name() + return mods + ['portal_rating'] diff --git a/models/mail_message.py b/models/mail_message.py new file mode 100644 index 0000000..b375d71 --- /dev/null +++ b/models/mail_message.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models +from odoo.tools import format_datetime + + +class MailMessage(models.Model): + _inherit = 'mail.message' + + def _portal_get_default_format_properties_names(self, options=None): + """ Add request for rating information + + :param dict options: supports 'rating_include' option allowing to + conditionally include rating information; + """ + properties_names = super()._portal_get_default_format_properties_names() + if options and options.get('rating_include'): + properties_names |= { + 'rating', + 'rating_value', + } + return properties_names + + def _portal_message_format(self, properties_names, options=None): + """ If requested, add rating information to returned formatted values. + + Note: rating information combine both statistics (see 'rating_get_stats' + if available on model) and rating / publication information. """ + vals_list = super()._portal_message_format(properties_names, options=options) + if not 'rating' in properties_names: + return vals_list + + related_rating = self.env['rating.rating'].sudo().search_read( + [('message_id', 'in', self.ids)], + ["id", "publisher_comment", "publisher_id", "publisher_datetime", "message_id"] + ) + message_to_rating = { + rating['message_id'][0]: self._portal_message_format_rating(rating) + for rating in related_rating + } + + for message, values in zip(self, vals_list): + values["rating"] = message_to_rating.get(message.id, {}) + + record = self.env[message.model].browse(message.res_id) + if hasattr(record, 'rating_get_stats'): + values['rating_stats'] = record.sudo().rating_get_stats() + + return vals_list + + def _portal_message_format_rating(self, rating_values): + """ From 'rating_values' get an updated version formatted for frontend + display. + + :param dict rating_values: values coming from reading ratings + in database; + + :return dict: updated rating_values + """ + publisher_id, publisher_name = rating_values['publisher_id'] or [False, ''] + rating_values['publisher_avatar'] = f'/web/image/res.partner/{publisher_id}/avatar_128/50x50' if publisher_id else '' + rating_values['publisher_comment'] = rating_values['publisher_comment'] or '' + rating_values['publisher_datetime'] = format_datetime(self.env, rating_values['publisher_datetime']) + rating_values['publisher_id'] = publisher_id + rating_values['publisher_name'] = publisher_name + return rating_values diff --git a/models/rating_rating.py b/models/rating_rating.py new file mode 100644 index 0000000..4a9ed3b --- /dev/null +++ b/models/rating_rating.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +from odoo import api, fields, models, exceptions, _ + + +class Rating(models.Model): + _inherit = 'rating.rating' + + # Adding information for comment a rating message + publisher_comment = fields.Text("Publisher comment") + publisher_id = fields.Many2one('res.partner', 'Commented by', + ondelete='set null', readonly=True) + publisher_datetime = fields.Datetime("Commented on", readonly=True) + + @api.model_create_multi + def create(self, values_list): + for values in values_list: + self._synchronize_publisher_values(values) + ratings = super().create(values_list) + if any(rating.publisher_comment for rating in ratings): + ratings._check_synchronize_publisher_values() + return ratings + + def write(self, values): + self._synchronize_publisher_values(values) + return super().write(values) + + def _check_synchronize_publisher_values(self): + """ Either current user is a member of website restricted editor group + (done here by fetching the group record then using has_group, as it may + not be defined and we do not want to make a complete bridge module just + for that). Either write access on document is granted. """ + editor_group = self.env['ir.model.data']._xmlid_to_res_id('website.group_website_restricted_editor') + if editor_group and self.env.user.has_group('website.group_website_restricted_editor'): + return + for model, model_data in self._classify_by_model().items(): + records = self.env[model].browse(model_data['record_ids']) + try: + records.check_access_rights('write') + records.check_access_rule('write') + except exceptions.AccessError as e: + raise exceptions.AccessError( + _("Updating rating comment require write access on related record") + ) from e + + def _synchronize_publisher_values(self, values): + """ Force publisher partner and date if not given in order to have + coherent values. Those fields are readonly as they are not meant + to be modified manually, behaving like a tracking. """ + if values.get('publisher_comment'): + self._check_synchronize_publisher_values() + if not values.get('publisher_datetime'): + values['publisher_datetime'] = fields.Datetime.now() + if not values.get('publisher_id'): + values['publisher_id'] = self.env.user.partner_id.id + return values diff --git a/static/src/js/portal_chatter.js b/static/src/js/portal_chatter.js new file mode 100644 index 0000000..0432326 --- /dev/null +++ b/static/src/js/portal_chatter.js @@ -0,0 +1,370 @@ +/** @odoo-module **/ + +import { _t } from "@web/core/l10n/translation"; +import PortalChatter from "@portal/js/portal_chatter"; +import { roundPrecision } from "@web/core/utils/numbers"; +import { renderToElement } from "@web/core/utils/render"; + +/** + * PortalChatter + * + * Extends Frontend Chatter to handle rating + */ +PortalChatter.include({ + events: Object.assign({}, PortalChatter.prototype.events, { + // star based control + 'click .o_website_rating_table_row': '_onClickStarDomain', + 'click .o_website_rating_selection_reset': '_onClickStarDomainReset', + // publisher comments + 'click .o_wrating_js_publisher_comment_btn': '_onClickPublisherComment', + 'click .o_wrating_js_publisher_comment_edit': '_onClickPublisherComment', + 'click .o_wrating_js_publisher_comment_delete': '_onClickPublisherCommentDelete', + 'click .o_wrating_js_publisher_comment_submit': '_onClickPublisherCommentSubmit', + 'click .o_wrating_js_publisher_comment_cancel': '_onClickPublisherCommentCancel', + }), + /** + * @constructor + */ + init: function (parent, options) { + this._super.apply(this, arguments); + // options + if (!Object.keys(this.options).includes("display_rating")) { + this.options = Object.assign({ + 'display_rating': false, + 'rating_default_value': 0.0, + }, this.options); + } + // rating card + this.set('rating_card_values', {}); + this.set('rating_value', false); + this.on("change:rating_value", this, this._onChangeRatingDomain); + }, + /** + * @override + */ + start: function () { + this._super.apply(this, arguments); + this.on("change:rating_card_values", this, this._renderRatingCard); + }, + + //-------------------------------------------------------------------------- + // Public + //-------------------------------------------------------------------------- + + /** + * Update the messages format + * + * @param {Array} messages + * @returns {Array} + */ + preprocessMessages: function (messages) { + var self = this; + messages = this._super.apply(this, arguments); + if (this.options['display_rating']) { + messages.forEach((m, i) => { + m.rating_value = self.roundToHalf(m['rating_value']); + m.rating = self._preprocessCommentData(m.rating, i); + }); + } + // save messages in the widget to process correctly the publisher comment templates + this.messages = messages; + return messages; + }, + /** + * Round the given value with a precision of 0.5. + * + * Examples: + * - 1.2 --> 1.0 + * - 1.7 --> 1.5 + * - 1.9 --> 2.0 + * + * @param {Number} value + * @returns Number + **/ + roundToHalf: function (value) { + var converted = parseFloat(value); // Make sure we have a number + var decimal = (converted - parseInt(converted, 10)); + decimal = Math.round(decimal * 10); + if (decimal === 5) { + return (parseInt(converted, 10) + 0.5); + } + if ((decimal < 3) || (decimal > 7)) { + return Math.round(converted); + } else { + return (parseInt(converted, 10) + 0.5); + } + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + * @returns {Promise} + */ + _chatterInit: async function () { + const result = await this._super(...arguments); + this._updateRatingCardValues(result); + return result; + }, + /** + * @override + * @param {Array} domain + * @returns {Promise} + */ + messageFetch: async function (domain) { + const result = await this._super(...arguments); + this._updateRatingCardValues(result); + return result; + }, + /** + * Calculates and Updates rating values i.e. average, percentage + * + * @private + */ + _updateRatingCardValues: function (result) { + if (!result['rating_stats']) { + return; + } + const self = this; + const ratingData = { + 'avg': Math.round(result['rating_stats']['avg'] * 100) / 100, + 'percent': [], + }; + Object.keys(result["rating_stats"]["percent"]) + .sort() + .reverse() + .forEach((rating) => { + ratingData["percent"].push({ + num: self.roundToHalf(rating), + percent: roundPrecision(result["rating_stats"]["percent"][rating], 0.01), + }); + }); + this.set('rating_card_values', ratingData); + }, + /** + * @override + */ + _messageFetchPrepareParams: function () { + var params = this._super.apply(this, arguments); + if (this.options['display_rating']) { + params['rating_include'] = true; + } + return params; + }, + + /** + * render rating card + * + * @private + */ + _renderRatingCard: function () { + this.$('.o_website_rating_card_container').replaceWith(renderToElement("portal_rating.rating_card", {widget: this})); + }, + /** + * Default rating data for publisher comment qweb template + * @private + * @param {Integer} messageIndex + */ + _newPublisherCommentData: function (messageIndex) { + return { + mes_index: messageIndex, + publisher_id: this.options.partner_id, + publisher_avatar: `/web/image/res.partner/${this.options.partner_id}/avatar_128/50x50`, + publisher_name: _t("Write your comment"), + publisher_datetime: '', + publisher_comment: '', + }; + }, + + /** + * preprocess the rating data comming from /website/rating/comment or the chatter_init + * Can be also use to have new rating data for a new publisher comment + * @param {JSON} rawRating + * @returns {JSON} the process rating data + */ + _preprocessCommentData: function (rawRating, messageIndex) { + var ratingData = { + id: rawRating.id, + mes_index: messageIndex, + publisher_avatar: rawRating.publisher_avatar, + publisher_comment: rawRating.publisher_comment, + publisher_datetime: rawRating.publisher_datetime, + publisher_id: rawRating.publisher_id, + publisher_name: rawRating.publisher_name, + }; + var commentData = {...this._newPublisherCommentData(messageIndex), ...ratingData}; + return commentData; + }, + + /** --------------- + * Selection of elements for the publisher comment feature + * Only available from a source in a publisher_comment or publisher_comment_form template + */ + + _getCommentContainer: function ($source) { + return $source.parents(".o_wrating_publisher_container").first().find(".o_wrating_publisher_comment").first(); + }, + + _getCommentButton: function ($source) { + return $source.parents(".o_wrating_publisher_container").first().find(".o_wrating_js_publisher_comment_btn").first(); + }, + + _getCommentTextarea: function ($source) { + return $source.parents(".o_wrating_publisher_container").first().find(".o_portal_rating_comment_input").first(); + }, + + _focusTextComment: function ($source) { + this._getCommentTextarea($source).focus(); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * Show a spinner and hide messages during loading. + * + * @override + * @returns {Promise} + */ + _onChangeDomain: function () { + const spinnerDelayed = setTimeout(()=> { + this.$('.o_portal_chatter_messages_loading').removeClass('d-none'); + this.$('.o_portal_chatter_messages').addClass('d-none'); + }, 500); + return this._super.apply(this, arguments).finally(()=>{ + clearTimeout(spinnerDelayed); + // Hide spinner and show messages + this.$('.o_portal_chatter_messages_loading').addClass('d-none'); + this.$('.o_portal_chatter_messages').removeClass('d-none'); + }); + }, + + /** + * @private + * @param {MouseEvent} ev + */ + _onClickStarDomain: function (ev) { + var $tr = this.$(ev.currentTarget); + var num = $tr.data('star'); + this.set('rating_value', num); + }, + /** + * @private + * @param {MouseEvent} ev + */ + _onClickStarDomainReset: function (ev) { + ev.stopPropagation(); + ev.preventDefault(); + this.set('rating_value', false); + }, + + /** + * @private + * @param {MouseEvent} ev + */ + _onClickPublisherComment: function (ev) { + var $source = this.$(ev.currentTarget); + // If the form is already present => like cancel remove the form + if (this._getCommentTextarea($source).length === 1) { + this._getCommentContainer($source).empty(); + return; + } + var messageIndex = $source.data("mes_index"); + var data = {is_publisher: this.options['is_user_publisher']}; + data.rating = this._newPublisherCommentData(messageIndex); + + var oldRating = this.messages[messageIndex].rating; + data.rating.publisher_comment = oldRating.publisher_comment ? oldRating.publisher_comment : ''; + this._getCommentContainer($source).empty().append(renderToElement("portal_rating.chatter_rating_publisher_form", data)); + this._focusTextComment($source); + }, + + /** + * @private + * @param {MouseEvent} ev + */ + _onClickPublisherCommentDelete: function (ev) { + var self = this; + var $source = this.$(ev.currentTarget); + + var messageIndex = $source.data("mes_index"); + var ratingId = this.messages[messageIndex].rating.id; + + this.rpc('/website/rating/comment', { + "rating_id": ratingId, + "publisher_comment": '' // Empty publisher comment means no comment + }).then(function (res) { + self.messages[messageIndex].rating = self._preprocessCommentData(res, messageIndex); + self._getCommentButton($source).removeClass("d-none"); + self._getCommentContainer($source).empty(); + }); + }, + + /** + * @private + * @param {MouseEvent} ev + */ + _onClickPublisherCommentSubmit: function (ev) { + var self = this; + var $source = this.$(ev.currentTarget); + + var messageIndex = $source.data("mes_index"); + var comment = this._getCommentTextarea($source).val(); + var ratingId = this.messages[messageIndex].rating.id; + + this.rpc('/website/rating/comment', { + "rating_id": ratingId, + "publisher_comment": comment + }).then(function (res) { + + // Modify the related message + self.messages[messageIndex].rating = self._preprocessCommentData(res, messageIndex); + if (self.messages[messageIndex].rating.publisher_comment !== '') { + // Remove the button comment if exist and render the comment + self._getCommentButton($source).addClass('d-none'); + self._getCommentContainer($source).empty().append(renderToElement("portal_rating.chatter_rating_publisher_comment", { + rating: self.messages[messageIndex].rating, + is_publisher: self.options.is_user_publisher + })); + } else { + // Empty string or false considers as no comment + self._getCommentButton($source).removeClass("d-none"); + self._getCommentContainer($source).empty(); + } + }); + }, + + /** + * @private + * @param {MouseEvent} ev + */ + _onClickPublisherCommentCancel: function (ev) { + var $source = this.$(ev.currentTarget); + var messageIndex = $source.data("mes_index"); + + var comment = this.messages[messageIndex].rating.publisher_comment; + const $commentContainer = this._getCommentContainer($source); + $commentContainer.empty(); + if (comment) { + var data = { + rating: this.messages[messageIndex].rating, + is_publisher: this.options.is_user_publisher, + }; + $commentContainer.append(renderToElement("portal_rating.chatter_rating_publisher_comment", data)); + } + }, + + /** + * @private + */ + _onChangeRatingDomain: function () { + var domain = []; + if (this.get('rating_value')) { + domain = [['rating_value', '=', this.get('rating_value')]]; + } + this._changeCurrentPage(1, domain); + }, +}); diff --git a/static/src/js/portal_composer.js b/static/src/js/portal_composer.js new file mode 100644 index 0000000..06c2891 --- /dev/null +++ b/static/src/js/portal_composer.js @@ -0,0 +1,168 @@ +/** @odoo-module **/ + +import { _t } from "@web/core/l10n/translation"; +import portalComposer from "@portal/js/portal_composer"; + +var PortalComposer = portalComposer.PortalComposer; + +/** + * PortalComposer + * + * Extends Portal Composer to handle rating submission + */ +PortalComposer.include({ + events: Object.assign({}, PortalComposer.prototype.events, { + 'click .stars i': '_onClickStar', + 'mouseleave .stars': '_onMouseleaveStarBlock', + 'mousemove .stars i': '_onMoveStar', + 'mouseleave .stars i': '_onMoveLeaveStar', + }), + + /** + * @constructor + */ + init: function (parent, options) { + this._super.apply(this, arguments); + + // apply ratio to default rating value + if (options.default_rating_value) { + options.default_rating_value = parseFloat(options.default_rating_value); + } + + // default options + this.options = Object.assign({ + 'rate_with_void_content': false, + 'default_message': false, + 'default_message_id': false, + 'default_rating_value': 4.0, + 'force_submit_url': false, + }, this.options); + // star input widget + this.labels = { + '0': "", + '1': _t("I hate it"), + '2': _t("I don't like it"), + '3': _t("It's okay"), + '4': _t("I like it"), + '5': _t("I love it"), + }; + this.user_click = false; // user has click or not + this.set("star_value", this.options.default_rating_value); + this.on("change:star_value", this, this._onChangeStarValue); + }, + /** + * @override + */ + start: function () { + var self = this; + return this._super.apply(this, arguments).then(function () { + // rating stars + self.$input = self.$('input[name="rating_value"]'); + self.$star_list = self.$('.stars').find('i'); + // if this is the first review, we do not use grey color contrast, even with default rating value. + if (!self.options.default_message_id) { + self.$star_list.removeClass('text-black-25'); + } + + // set the default value to trigger the display of star widget and update the hidden input value. + self.set("star_value", self.options.default_rating_value); + self.$input.val(self.options.default_rating_value); + }); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @override + * @private + */ + _prepareMessageData: function () { + return Object.assign(this._super(...arguments) || {}, { + 'message_id': this.options.default_message_id, + 'rating_value': this.$input.val() + }); + }, + /** + * @private + */ + _onChangeStarValue: function () { + var val = this.get("star_value"); + var index = Math.floor(val); + var decimal = val - index; + // reset the stars + this.$star_list.removeClass('fa-star fa-star-half-o').addClass('fa-star-o'); + + this.$('.stars').find("i:lt(" + index + ")").removeClass('fa-star-o fa-star-half-o').addClass('fa-star'); + if (decimal) { + this.$('.stars').find("i:eq(" + index + ")").removeClass('fa-star-o fa-star fa-star-half-o').addClass('fa-star-half-o'); + } + this.$('.rate_text .badge').text(this.labels[index]); + }, + /** + * @private + */ + _onClickStar: function (ev) { + var index = this.$('.stars i').index(ev.currentTarget); + this.set("star_value", index + 1); + this.user_click = true; + this.$input.val(this.get("star_value")); + }, + /** + * @private + */ + _onMouseleaveStarBlock: function () { + this.$('.rate_text').hide(); + }, + /** + * @private + * @param {MouseEvent} ev + */ + _onMoveStar: function (ev) { + var index = this.$('.stars i').index(ev.currentTarget); + this.$('.rate_text').show(); + this.set("star_value", index + 1); + }, + /** + * @private + */ + _onMoveLeaveStar: function () { + if (!this.user_click) { + this.set("star_value", parseInt(this.$input.val())); + } + this.user_click = false; + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + * @private + */ + _onSubmitButtonClick: function (ev) { + return this._super(...arguments).then((result) => { + const $modal = this.$el.closest('#ratingpopupcomposer'); + $modal.on('hidden.bs.modal', () => { + this.trigger_up('reload_rating_popup_composer', result); + }); + $modal.modal('hide'); + }); + }, + + /** + * @override + * @private + */ + _onSubmitCheckContent: function (ev) { + if (this.options.rate_with_void_content) { + if (this.$input.val() === 0) { + return _t('The rating is required. Please make sure to select one before sending your review.') + } + return false; + } + return this._super.apply(this, arguments); + }, +}); diff --git a/static/src/js/portal_rating_composer.js b/static/src/js/portal_rating_composer.js new file mode 100644 index 0000000..63d3751 --- /dev/null +++ b/static/src/js/portal_rating_composer.js @@ -0,0 +1,126 @@ +/** @odoo-module **/ + +import publicWidget from "@web/legacy/js/public/public_widget"; +import { session } from "@web/session"; +import portalComposer from "@portal/js/portal_composer"; +import { _t } from "@web/core/l10n/translation"; +import { renderToElement } from "@web/core/utils/render"; + +const PortalComposer = portalComposer.PortalComposer; + +/** + * RatingPopupComposer + * + * Display the rating average with a static star widget, and open + * a popup with the portal composer when clicking on it. + **/ +const RatingPopupComposer = publicWidget.Widget.extend({ + selector: '.o_rating_popup_composer', + custom_events: { + reload_rating_popup_composer: '_onReloadRatingPopupComposer', + }, + + willStart: function (parent) { + const def = this._super.apply(this, arguments); + + const options = this.$el.data(); + this.rating_avg = Math.round(options['rating_avg'] * 100) / 100 || 0.0; + this.rating_count = options['rating_count'] || 0.0; + + this.options = Object.assign({ + 'token': false, + 'res_model': false, + 'res_id': false, + 'pid': 0, + 'display_rating': true, + 'csrf_token': odoo.csrf_token, + 'user_id': session.user_id, + }, options, {}); + + return def; + }, + + /** + * @override + */ + start: function () { + return Promise.all([ + this._super.apply(this, arguments), + this._reloadRatingPopupComposer(), + ]); + }, + + /** + * Destroy existing ratingPopup and insert new ratingPopup widget + * + * @private + * @param {Object} data + */ + _reloadRatingPopupComposer: function () { + if (this.options.hide_rating_avg) { + this.$('.o_rating_popup_composer_stars').empty(); + } else { + const ratingAverage = renderToElement( + 'portal_rating.rating_stars_static', { + inline_mode: true, + widget: this, + val: this.rating_avg, + }); + this.$('.o_rating_popup_composer_stars').empty().html(ratingAverage); + } + + // Append the modal + const modal = renderToElement( + 'portal_rating.PopupComposer', { + inline_mode: true, + widget: this, + val: this.rating_avg, + }) || ''; + this.$('.o_rating_popup_composer_modal').html(modal); + + if (this._composer) { + this._composer.destroy(); + } + + // Instantiate the "Portal Composer" widget and insert it into the modal + this._composer = new PortalComposer(this, this.options); + return this._composer.appendTo(this.$('.o_rating_popup_composer_modal .o_portal_chatter_composer')).then(() => { + // Change the text of the button + this.$('.o_rating_popup_composer_text').text( + this.options.is_fullscreen ? + _t('Review') : this.options.default_message_id ? + _t('Edit Review') : _t('Add Review') + ); + }); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + * @param {OdooEvent} event + */ + _onReloadRatingPopupComposer: function (event) { + const data = event.data; + + // Refresh the internal state of the widget + this.rating_avg = data.rating_avg; + this.rating_count = data.rating_count; + this.rating_value = data.rating_value; + + // Clean the dictionary + delete data.rating_avg; + delete data.rating_count; + delete data.rating_value; + + this.options = Object.assign(this.options, data); + + this._reloadRatingPopupComposer(); + } +}); + +publicWidget.registry.RatingPopupComposer = RatingPopupComposer; + +export default RatingPopupComposer; diff --git a/static/src/scss/portal_rating.scss b/static/src/scss/portal_rating.scss new file mode 100644 index 0000000..4865b7b --- /dev/null +++ b/static/src/scss/portal_rating.scss @@ -0,0 +1,83 @@ +/* static stars */ +$o-w-rating-star-color: #FACC2E; +.o_website_rating_static{ + color: $o-w-rating-star-color; +} + +.o_website_rating_card_container { + + .o_message_counter { + color: map-get($grays, '700'); + } + + /* progress bars */ + table.o_website_rating_table { + width: 100%; + overflow: visible; + + .o_website_rating_table_star_num { + min-width: 50px; + white-space: nowrap; + } + .o_website_rating_table_progress{ + min-width: 120px; + > .progress { + margin-bottom: 2px; + margin-left: 5px; + margin-right: 5px; + } + .o_rating_progressbar{ + background-color: $o-w-rating-star-color; + } + } + .o_website_rating_table_percent { + text-align: right; + padding-left: 5px; + @include font-size($font-size-sm); + } + .o_website_rating_table_reset { + .o_website_rating_selection_reset { + color: $red; + } + } + .o_website_rating_table_row:not(o_website_rating_table_row_selected) { + cursor: pointer; + } + } +} + +/* Star Widget */ +.o_rating_star_card{ + margin-bottom: 5px; + .stars { + display: inline-flex; + color: #FACC2E; + margin-right: 15px; + } + + .stars i { + padding-right: 1px; + padding-left: 1px; + text-align: center; + } + + .stars.enabled{ + cursor: pointer; + } + + .rate_text{ + display: inline-block; + } +} + +/* Rating Popup Composer */ +.o_rating_popup_composer { + + .o_rating_clickable { + cursor: pointer; + } + + .o_portal_chatter_avatar { + margin-right: 10px; + } +} diff --git a/static/src/xml/portal_chatter.xml b/static/src/xml/portal_chatter.xml new file mode 100644 index 0000000..824cc0c --- /dev/null +++ b/static/src/xml/portal_chatter.xml @@ -0,0 +1,123 @@ + + + + + + + #{widget.options['force_submit_url'] || '/mail/chatter_post'} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ Loading... +
+
+
+
+
+ + + +
+ +
+ +
+
+
+ + +
+ avatar +
+
+
+
+
+ +

Published on

+
+ +
+
+
+ +
+ avatar +
+
+
+
+ +
+ + +
+
+
+
+
diff --git a/static/src/xml/portal_rating_composer.xml b/static/src/xml/portal_rating_composer.xml new file mode 100644 index 0000000..d5765a4 --- /dev/null +++ b/static/src/xml/portal_rating_composer.xml @@ -0,0 +1,29 @@ + + + + +