From 0579b409787fe3eb4a46ea8e396cbfbd2ee2e463 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:21:14 +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 | 28 + controllers/__init__.py | 5 + controllers/main.py | 309 +++++++++++ controllers/portal.py | 14 + data/mail_template_data.xml | 105 ++++ i18n/ar.po | 750 ++++++++++++++++++++++++++ i18n/bg.po | 647 +++++++++++++++++++++++ i18n/ca.po | 667 ++++++++++++++++++++++++ i18n/cs.po | 650 +++++++++++++++++++++++ i18n/da.po | 653 +++++++++++++++++++++++ i18n/de.po | 750 ++++++++++++++++++++++++++ i18n/es.po | 748 ++++++++++++++++++++++++++ i18n/es_419.po | 753 ++++++++++++++++++++++++++ i18n/et.po | 754 +++++++++++++++++++++++++++ i18n/fa.po | 641 +++++++++++++++++++++++ i18n/fi.po | 667 ++++++++++++++++++++++++ i18n/fr.po | 754 +++++++++++++++++++++++++++ i18n/he.po | 646 +++++++++++++++++++++++ i18n/hr.po | 605 +++++++++++++++++++++ i18n/hu.po | 647 +++++++++++++++++++++++ i18n/id.po | 748 ++++++++++++++++++++++++++ i18n/it.po | 747 ++++++++++++++++++++++++++ i18n/ja.po | 738 ++++++++++++++++++++++++++ i18n/ko.po | 738 ++++++++++++++++++++++++++ i18n/lb.po | 592 +++++++++++++++++++++ i18n/lt.po | 647 +++++++++++++++++++++++ i18n/lv.po | 645 +++++++++++++++++++++++ i18n/mn.po | 599 +++++++++++++++++++++ i18n/nb.po | 599 +++++++++++++++++++++ i18n/nl.po | 752 ++++++++++++++++++++++++++ i18n/pl.po | 653 +++++++++++++++++++++++ i18n/pt.po | 642 +++++++++++++++++++++++ i18n/pt_BR.po | 745 ++++++++++++++++++++++++++ i18n/ro.po | 603 +++++++++++++++++++++ i18n/ru.po | 751 ++++++++++++++++++++++++++ i18n/sk.po | 640 +++++++++++++++++++++++ i18n/sl.po | 661 +++++++++++++++++++++++ i18n/sr.po | 658 +++++++++++++++++++++++ i18n/sv.po | 646 +++++++++++++++++++++++ i18n/th.po | 745 ++++++++++++++++++++++++++ i18n/tr.po | 668 ++++++++++++++++++++++++ i18n/uk.po | 658 +++++++++++++++++++++++ i18n/vi.po | 653 +++++++++++++++++++++++ i18n/website_profile.pot | 634 ++++++++++++++++++++++ i18n/zh_CN.po | 736 ++++++++++++++++++++++++++ i18n/zh_TW.po | 734 ++++++++++++++++++++++++++ models/__init__.py | 6 + models/gamification_badge.py | 9 + models/res_users.py | 66 +++ models/website.py | 10 + security/ir.model.access.csv | 2 + static/src/img/badge_bronze.svg | 1 + static/src/img/badge_gold.svg | 1 + static/src/img/badge_silver.svg | 1 + static/src/img/rank_1.svg | 1 + static/src/img/rank_2.svg | 1 + static/src/img/rank_3.svg | 1 + static/src/js/website_profile.js | 165 ++++++ static/src/scss/website_profile.scss | 276 ++++++++++ views/gamification_badge_views.xml | 15 + views/website_profile.xml | 704 +++++++++++++++++++++++++ views/website_views.xml | 15 + 63 files changed, 29704 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/main.py create mode 100644 controllers/portal.py create mode 100644 data/mail_template_data.xml create mode 100644 i18n/ar.po create mode 100644 i18n/bg.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/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/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.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/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/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/website_profile.pot create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/gamification_badge.py create mode 100644 models/res_users.py create mode 100644 models/website.py create mode 100644 security/ir.model.access.csv create mode 100644 static/src/img/badge_bronze.svg create mode 100644 static/src/img/badge_gold.svg create mode 100644 static/src/img/badge_silver.svg create mode 100644 static/src/img/rank_1.svg create mode 100644 static/src/img/rank_2.svg create mode 100644 static/src/img/rank_3.svg create mode 100644 static/src/js/website_profile.js create mode 100644 static/src/scss/website_profile.scss create mode 100644 views/gamification_badge_views.xml create mode 100644 views/website_profile.xml create mode 100644 views/website_views.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..9a824bc --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Website profile', + 'category': 'Hidden', + 'version': '1.0', + 'summary': 'Access the website profile of the users', + 'description': "Allows to access the website profile of the users and see their statistics (karma, badges, etc..)", + 'depends': [ + 'website_partner', + 'gamification' + ], + 'data': [ + 'data/mail_template_data.xml', + 'views/gamification_badge_views.xml', + 'views/website_profile.xml', + 'views/website_views.xml', + 'security/ir.model.access.csv', + ], + 'assets': { + 'web.assets_frontend': [ + 'website_profile/static/src/scss/website_profile.scss', + 'website_profile/static/src/js/website_profile.js', + ], + }, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..d8f273d --- /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 main +from . import portal diff --git a/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..b352520 --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,309 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import base64 +import werkzeug +import werkzeug.exceptions +import werkzeug.urls +import werkzeug.wrappers +import math + +from dateutil.relativedelta import relativedelta +from operator import itemgetter + +from odoo import _, fields, http, tools +from odoo.http import request +from odoo.osv import expression + + +class WebsiteProfile(http.Controller): + _users_per_page = 30 + _pager_max_pages = 5 + + # Profile + # --------------------------------------------------- + + def _check_avatar_access(self, user_id, **post): + """ Base condition to see user avatar independently form access rights + is to see published users having karma, meaning they participated to + frontend applications like forum or elearning. """ + try: + user = request.env['res.users'].sudo().browse(user_id).exists() + except: + return False + if user: + return user.website_published and user.karma > 0 + return False + + def _check_user_profile_access(self, user_id): + """ Takes a user_id and returns: + - (user record, False) when the user is granted access + - (False, str) when the user is denied access + Raises a Not Found Exception when the profile does not exist + """ + user_sudo = request.env['res.users'].sudo().browse(user_id) + # User can access - no matter what - his own profile + if user_sudo.id == request.env.user.id: + return user_sudo, False + if request.env.user.karma < request.website.karma_profile_min: + return False, _("Not have enough karma to view other users' profile.") + elif not user_sudo.exists(): + raise request.not_found() + elif user_sudo.karma == 0 or not user_sudo.website_published: + return False, _('This profile is private!') + return user_sudo, False + + def _prepare_user_values(self, **kwargs): + kwargs.pop('edit_translations', None) # avoid nuking edit_translations + values = { + 'user': request.env.user, + 'is_public_user': request.website.is_public_user(), + 'validation_email_sent': request.session.get('validation_email_sent', False), + 'validation_email_done': request.session.get('validation_email_done', False), + } + return values + + def _prepare_user_profile_parameters(self, **post): + return post + + def _prepare_user_profile_values(self, user, **post): + return { + 'uid': request.env.user.id, + 'user': user, + 'main_object': user, + 'is_profile_page': True, + 'edit_button_url_param': '', + } + + @http.route([ + '/profile/avatar/', + ], type='http', auth="public", website=True, sitemap=False) + def get_user_profile_avatar(self, user_id, field='avatar_256', width=0, height=0, crop=False, **post): + if field not in ('image_128', 'image_256', 'avatar_128', 'avatar_256'): + return werkzeug.exceptions.Forbidden() + + if (int(width), int(height)) == (0, 0): + width, height = tools.image_guess_size_from_field_name(field) + + can_sudo = self._check_avatar_access(int(user_id), **post) + return request.env['ir.binary']._get_image_stream_from( + request.env['res.users'].sudo(can_sudo).browse(int(user_id)), + field_name=field, width=int(width), height=int(height), crop=crop + ).get_response() + + @http.route('/profile/user/', type='http', auth='public', website=True) + def view_user_profile(self, user_id, **post): + user_sudo, denial_reason = self._check_user_profile_access(user_id) + if denial_reason: + return request.render('website_profile.profile_access_denied', {'denial_reason': denial_reason}) + values = self._prepare_user_values(**post) + params = self._prepare_user_profile_parameters(**post) + values.update(self._prepare_user_profile_values(user_sudo, **params)) + return request.render("website_profile.user_profile_main", values) + + # Edit Profile + # --------------------------------------------------- + @http.route('/profile/edit', type='http', auth="user", website=True) + def view_user_profile_edition(self, **kwargs): + user_id = int(kwargs.get('user_id', 0)) + countries = request.env['res.country'].search([]) + if user_id and request.env.user.id != user_id and request.env.user._is_admin(): + user = request.env['res.users'].browse(user_id) + values = self._prepare_user_values(searches=kwargs, user=user, is_public_user=False) + else: + values = self._prepare_user_values(searches=kwargs) + values.update({ + 'email_required': kwargs.get('email_required'), + 'countries': countries, + 'url_param': kwargs.get('url_param'), + }) + return request.render("website_profile.user_profile_edit_main", values) + + def _profile_edition_preprocess_values(self, user, **kwargs): + values = { + 'name': kwargs.get('name'), + 'website': kwargs.get('website'), + 'email': kwargs.get('email'), + 'city': kwargs.get('city'), + 'country_id': int(kwargs.get('country')) if kwargs.get('country') else False, + 'website_description': kwargs.get('description'), + } + + if 'clear_image' in kwargs: + values['image_1920'] = False + elif kwargs.get('ufile'): + image = kwargs.get('ufile').read() + values['image_1920'] = base64.b64encode(image) + + if request.uid == user.id: # the controller allows to edit only its own privacy settings; use partner management for other cases + values['website_published'] = kwargs.get('website_published') == 'True' + return values + + @http.route('/profile/user/save', type='http', auth="user", methods=['POST'], website=True) + def save_edited_profile(self, **kwargs): + user_id = int(kwargs.get('user_id', 0)) + if user_id and request.env.user.id != user_id and request.env.user._is_admin(): + user = request.env['res.users'].browse(user_id) + else: + user = request.env.user + values = self._profile_edition_preprocess_values(user, **kwargs) + whitelisted_values = {key: values[key] for key in user.SELF_WRITEABLE_FIELDS if key in values} + user.write(whitelisted_values) + if kwargs.get('url_param'): + return request.redirect("/profile/user/%d?%s" % (user.id, kwargs['url_param'])) + else: + return request.redirect("/profile/user/%d" % user.id) + + # Ranks and Badges + # --------------------------------------------------- + def _prepare_badges_domain(self, **kwargs): + """ + Hook for other modules to restrict the badges showed on profile page, depending of the context + """ + domain = [('website_published', '=', True)] + if 'badge_category' in kwargs: + domain = expression.AND([[('challenge_ids.challenge_category', '=', kwargs.get('badge_category'))], domain]) + return domain + + def _prepare_ranks_badges_values(self, **kwargs): + ranks = [] + if 'badge_category' not in kwargs: + Rank = request.env['gamification.karma.rank'] + ranks = Rank.sudo().search([], order='karma_min DESC') + + Badge = request.env['gamification.badge'] + badges = Badge.sudo().search(self._prepare_badges_domain(**kwargs)) + badges = badges.sorted("granted_users_count", reverse=True) + values = self._prepare_user_values(searches={'badges': True}) + + values.update({ + 'ranks': ranks, + 'badges': badges, + 'user': request.env.user, + }) + return values + + @http.route('/profile/ranks_badges', type='http', auth="public", website=True, sitemap=True) + def view_ranks_badges(self, **kwargs): + values = self._prepare_ranks_badges_values(**kwargs) + return request.render("website_profile.rank_badge_main", values) + + # All Users Page + # --------------------------------------------------- + def _prepare_all_users_values(self, users): + user_values = [] + for user in users: + user_values.append({ + 'id': user.id, + 'name': user.name, + 'company_name': user.company_id.name, + 'rank': user.rank_id.name, + 'karma': user.karma, + 'badge_count': len(user.badge_ids), + 'website_published': user.website_published + }) + return user_values + + @http.route(['/profile/users', + '/profile/users/page/'], type='http', auth="public", website=True, sitemap=True) + def view_all_users_page(self, page=1, **kwargs): + User = request.env['res.users'] + dom = [('karma', '>', 1), ('website_published', '=', True)] + + # Searches + search_term = kwargs.get('search') + group_by = kwargs.get('group_by', False) + render_values = { + 'search': search_term, + 'group_by': group_by or 'all', + } + if search_term: + dom = expression.AND([['|', ('name', 'ilike', search_term), ('partner_id.commercial_company_name', 'ilike', search_term)], dom]) + + user_count = User.sudo().search_count(dom) + my_user = request.env.user + current_user_values = False + if user_count: + page_count = math.ceil(user_count / self._users_per_page) + pager = request.website.pager(url="/profile/users", total=user_count, page=page, step=self._users_per_page, + scope=page_count if page_count < self._pager_max_pages else self._pager_max_pages, + url_args=kwargs) + + users = User.sudo().search(dom, limit=self._users_per_page, offset=pager['offset'], order='karma DESC') + user_values = self._prepare_all_users_values(users) + + # Get karma position for users (only website_published) + position_domain = [('karma', '>', 1), ('website_published', '=', True)] + position_map = self._get_position_map(position_domain, users, group_by) + + max_position = max([user_data['karma_position'] for user_data in position_map.values()], default=1) + for user in user_values: + user_data = position_map.get(user['id'], dict()) + user['position'] = user_data.get('karma_position', max_position + 1) + user['karma_gain'] = user_data.get('karma_gain_total', 0) + user_values.sort(key=itemgetter('position')) + + if my_user.website_published and my_user.karma and my_user.id not in users.ids: + # Need to keep the dom to search only for users that appear in the ranking page + current_user = User.sudo().search(expression.AND([[('id', '=', my_user.id)], dom])) + if current_user: + current_user_values = self._prepare_all_users_values(current_user)[0] + + user_data = self._get_position_map(position_domain, current_user, group_by).get(current_user.id, {}) + current_user_values['position'] = user_data.get('karma_position', 0) + current_user_values['karma_gain'] = user_data.get('karma_gain_total', 0) + + else: + user_values = [] + pager = {'page_count': 0} + render_values.update({ + 'top3_users': user_values[:3] if not search_term and page == 1 else [], + 'users': user_values, + 'my_user': current_user_values, + 'pager': pager, + }) + return request.render("website_profile.users_page_main", render_values) + + def _get_position_map(self, position_domain, users, group_by): + if group_by: + position_map = self._get_user_tracking_karma_gain_position(position_domain, users.ids, group_by) + else: + position_results = users._get_karma_position(position_domain) + position_map = dict((user_data['user_id'], dict(user_data)) for user_data in position_results) + return position_map + + def _get_user_tracking_karma_gain_position(self, domain, user_ids, group_by): + """ Helper method computing boundaries to give to _get_tracking_karma_gain_position. + See that method for more details. """ + to_date = fields.Date.today() + if group_by == 'week': + from_date = to_date - relativedelta(weeks=1) + elif group_by == 'month': + from_date = to_date - relativedelta(months=1) + else: + from_date = None + results = request.env['res.users'].browse(user_ids)._get_tracking_karma_gain_position(domain, from_date=from_date, to_date=to_date) + return dict((item['user_id'], dict(item)) for item in results) + + # User and validation + # -------------------------------------------------- + + @http.route('/profile/send_validation_email', type='json', auth='user', website=True) + def send_validation_email(self, **kwargs): + if request.env.uid != request.website.user_id.id: + request.env.user._send_profile_validation_email(**kwargs) + request.session['validation_email_sent'] = True + return True + + @http.route('/profile/validate_email', type='http', auth='public', website=True, sitemap=False) + def validate_email(self, token, user_id, email, **kwargs): + done = request.env['res.users'].sudo().browse(int(user_id))._process_profile_validation_token(token, email) + if done: + request.session['validation_email_done'] = True + url = kwargs.get('redirect_url', '/') + return request.redirect(url) + + @http.route('/profile/validate_email/close', type='json', auth='public', website=True) + def validate_email_done(self, **kwargs): + request.session['validation_email_done'] = False + return True diff --git a/controllers/portal.py b/controllers/portal.py new file mode 100644 index 0000000..748b0e5 --- /dev/null +++ b/controllers/portal.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.portal.controllers import portal +from odoo.http import request + + +class CustomerPortal(portal.CustomerPortal): + + def on_account_update(self, values, partner): + super().on_account_update(values, partner) + # Do not show "Validation Email sent" if the current user changed their email address + if values["email"] != partner.email: + request.session['validation_email_sent'] = False diff --git a/data/mail_template_data.xml b/data/mail_template_data.xml new file mode 100644 index 0000000..c6ec608 --- /dev/null +++ b/data/mail_template_data.xml @@ -0,0 +1,105 @@ + + + + + + + Forum: Email Verification + + {{ object.company_id.name }} Profile validation + {{ object.company_id.email_formatted or object.email_formatted }} + {{ object.email_formatted }} + Sent to forum visitors to confirm their mail address + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + YourCompany Profile validation + + + +
+
+
+
+ + + + + + + +
+

+ Hello Marc Demo,

+ You have been invited to validate your email in order to get access to "YourCompany" website. + To validate your email, please click on the following link: +

+ Thanks for your participation! +

+
+
+
+
+ + + + + +
+ YourCompany + + +1 650-123-4567 + + | info@yourcompany.com + + + | http://www.example.com + +
+
+
+ + +
+ Powered by Odoo +
+
+
+ {{ object.lang }} + +
+
+
diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..cf9a4e3 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,750 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Malaz Abuidris , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Malaz Abuidris , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" لم يصلك بعد؟ " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(لم يتم التحقق منه) " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". قم بجمع النقاط في المنتدى أو في منصة التعلم الإلكتروني. ستساعدك هذه النقاط" +" على إحراز مراكز أعلى. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". تجربة بحث آخر. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " احصل على الشارات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr " إلغاء " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "تحرير " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "تحرير " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "تحرير ملف التعريف " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "كافة الشارات" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " كافة الشارات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " المستخدمون المكافؤون " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "الرتبة الحالية: " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "الشارات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "مشترك " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "سيرة ذاتية " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "المدينة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "الدولة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "البريد الإلكتروني " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "الاسم " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "ملف تعريفي عام " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "الموقع الإلكتروني " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "الشارات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "الخبرة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "الشارات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "الخبرة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"تهانينا! لقد تم تصديق بريدك الإلكتروني " +"للتو. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "التصنيف حسب:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" تصديق الملف التعريفيلبشركتك\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" مرحباً مارك ديمو،

\n" +" لقد تمت دعوتك إلى تصديق بريدك الإلكتروني حتى تتمكن من الوصول إلى موقع \"شركتك\".\n" +" لتصديق بريدك الإلكتروني، يرجى الضغط على الرابط التالي:\n" +"

\n" +" شكراً لمشاركتك!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" شركتك\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" مشغل بواسطة أودو\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "تصحيح عنوان بريدك الإلكتروني " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "الإرسال مجدداً " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "هنا " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "حول " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "كافة المستخدمين " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "كل الوقت" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "الشارات" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "الشارات هي مجموعتك من الإنجازات. ارتديها بفخر!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"بالإضافة إلى اكتساب السمعة عن طريق أسئلتك وأجوبتك،\n" +" تحصل على الشارات لكونك ذو فائدة للأخرين.
تظهر\n" +" الشارات في صفحة ملفك التعريفي ومنشوراتك. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "السيرة الذاتية" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "بإمكانه النشر " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "مسح " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "إغلاق" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "تحرير" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "تحرير الملف الشخصي" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "المنتدى: التحقق من البريد الإلكتروني " + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "شارة التلعيب " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "احصل على" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "الرئيسية" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "كيف أقوم باكتساب الشارات؟ " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "كيف يمكنني إحراز المزيد من النقاط؟ " + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "تم نشره " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "واصل التعلم مع " + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" +"الحد الأدنى لنقاط الكارما حتى تتمكن من رؤية الملف التعريفي لمستخدم آخر " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "التنقل الفرعي في الهاتف المحمول " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "المزيد من المعلومات " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "التنقل " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "التصنيف التالي: " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "لا توجد لوحة صدارة بعد :( " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "لا توجد شارات بعد! " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "لم يتم العثور على مستخدم لـ" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" +"لا تملك ما يكفي من نقاط الكارما لرؤية الملفات التعريفية للمستخدمين الآخرين. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"يرجى إدخال بريد إلكتروني صالح لاستلام الإشعارات عن الإجابات أو التعليقات. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "الرتب " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "العودة إلى الموقع الإلكتروني. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "بحث" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "البحث عن المستخدمين " + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" +"يتم إرسالها إلى زائري المنتدى لتأكيد عناوين البريد الإلكتروني الخاصة بهم " + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "رابطURL الكامل للوصول إلى المستند من خلال الموقع الإلكتروني. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "هذا الشهر" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "هذا الملف التعريفي خاص! " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "هذا الأسبوع " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "غير منشور" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "تحديث" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "المستخدم" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "مرتبة المستخدم " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "المستخدمون" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "تم إرسال البريد الإلكتروني للتأكيد إلى " + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "مرئي في الموقع الإلكتروني الحالي " + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "الموقع الإلكتروني" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "رابط URL للموقع الإلكتروني " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"عند إنهائك لدورة أو وصولك إلى مؤشرات تقدم جديدة، تتم مكافأتك بالشارات. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "حدثنا عن نفسك باختصار... " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "الخبرة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"يمكنك إحراز المزيد من النقاط عن طريق الإجابة على الاختبارات القصيرة في نهاية" +" محتوى كل دورة. يمكن إحراز النقاط أيضاً في المنتدى. اتبع هذا الرابط لإرشادات" +" المنتدى. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"لم يتم تأكيد حسابك بعد.
\n" +" اضغط " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "لم يتم إعداد بريد إلكتروني في حسابك. يرجى إعداده في " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "التتبع " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "أو" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "نقطة " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "هذا الشهر" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "هذا الأسبوع " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "لاستلام البريد الإلكتروني للتأكيد " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" للانتقال إلى المستوى التالي! " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "إعدادات حسابك " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} تصديق الملف التعريفي " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ المستخدمون " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..dc6d345 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Ивайло Малинов , 2023 +# KeyVillage, 2023 +# Rosen Vladimirov , 2023 +# Kaloyan Naumov , 2023 +# aleksandar ivanov, 2023 +# Martin Trigaux, 2023 +# Maria Boyadjieva , 2023 +# Peter Petrov, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Peter Petrov, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " наградени потребители" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Биография" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Изчисти" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Затвори" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Редактирай" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Редактирайте профил" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Начало" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Повече информация" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Моля, въведете валиден имейл адрес, за да получавате известия от отговори " +"или коментари." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Потърсете" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Пълен URL адрес за достъп до документа през уебсайта." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Този месец" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Този профил е поверителен!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Тази седмица" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Непубликуван" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Актуализирайте" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Потребител" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Потребители" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Уебсайт" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL адрес на уебсайт" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "или" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "този месец" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..e73a32e --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,667 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Marc Tormo i Bochaca , 2023 +# Arnau Ros, 2023 +# Eric Antones , 2023 +# Sandra Franch , 2023 +# RGB Consulting , 2023 +# Quim - eccit , 2023 +# Martin Trigaux, 2023 +# Ivan Espinola, 2023 +# Josep Anton Belchi, 2023 +# Manel Fernandez Ramirez , 2023 +# Carles Antoli , 2023 +# jabiri7, 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:56+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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"
\n" +" No l'ha rebut?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(no verificat)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Recull els punts del fòrum o de la plataforma d'aprenentatge electrònic. " +"Aquests punts li faran arribar a noves files." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Prova una altra cerca." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "MODIFICAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Modificar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "MODIFICAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " Usuaris premiats" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Rànquing actual:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insígnies" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "S'ha unit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "City" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "País" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Correu electrònic" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nom" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Lloc web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Insígnies" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Insígnies" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Felicitats! El teu correu electrònic " +"acaba de ser validat." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corregeix la vostra adreça electrònica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Torna a enviar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "aquí" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Quant a" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Tots els usuaris" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Tot el temps" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insígnies" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"A més de guanyar reputació amb les teves preguntes i respostes,\n" +" Rebre insígnies per ser especialment útil.
Insígnies\n" +" apareix a la teva pàgina de perfil i les teves publicacions." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Pot publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Esborrar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Tancar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Modificar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Modificar el perfil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Fòrum: verificació del correu electrònic" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Insíginia de gamificació" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Inici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "¿Com guanyo insígnies?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "¿Com puc aconseguir més punts?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Està publicat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Continua aprenent amb" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma mínim per a veure el perfil d'altres usuaris" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Subnavegació mòbil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Més informació" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Següent rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Encara no hi ha cap marcador :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Encara no hi ha insígnies!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "No s'ha trobat cap usuari per" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Si us plau, introdueixi una adreça vàlida de correu electrònic per rebre " +"notificacions de respostes o comentaris." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Torna al lloc web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Cercar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Cerca usuaris" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Enviat als visitants del fòrum per confirmar la seva adreça de correu" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "L'URL completa per accedir al document a través del lloc web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Aquest mes" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "¡Aquest perfil és privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Aquesta setmana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "No publicat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Actualitza" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Usuari" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rang d'usuari" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuaris" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Correu electrònic de verificació enviat a" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visible al lloc web actual" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Lloc web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "L'URL del lloc web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Quan acabes un curs o arribes a fites, et concedeixen insígnies." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Podeu puntuar més punts responent qüestionaris al final de cada contingut " +"del curs. També es poden obtenir punts en el fòrum. Segueix aquest enllaç a " +"les directrius del fòrum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"El vostre compte encara no s'ha verificat.
\n" +" Clic" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"El vostre compte no té un correu electrònic configurat. Configureu-lo el" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "fil d'Ariadna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "o" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "aquest mes" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "aquesta setmana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "per a rebre un correu electrònic de verificació" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "Configuració del vostre compte" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profile validation" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuaris" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..eba75c4 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# Aleš Fiala , 2024 +# Vojtech Smolka, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Vojtech Smolka, 2024\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(není ověřen)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Sbírejte body na fóru nebo na platformě eLearning. Díky těmto bodům se " +"dostanete do nových úrovní." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Zkuste další hledání." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Upravit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " ocenění uživatelé" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Odznaky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "Zkušenost" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Gratulujeme! Váš e-mail byl právě " +"ověřen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "O..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Všichni uživatelé" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Pořád" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Odznaky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Životopis" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Může publikovat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Vymazat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zavřít" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Upravit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editovat profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamifikační odznak" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Domovská stránka" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Jak získám odznaky?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Jak získám více bodů?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Je publikováno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Neustále se učte s" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimální karma pro zobrazení profilu jiného uživatele" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobilní sub-navigace" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Více informací" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Další úroveň:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Zatím žádné odznaky!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nenalezen žádný uživatel pro" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Zadejte prosím platnou e-mailovou adresu, abyste dostali oznámení z odpovědí" +" nebo komentářů." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Úrovně" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Zpět na webstránku." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Vyhledávání" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Hledat uživatele" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Celá adresa URL pro přístup k dokumentu prostřednictvím webstránky." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Tento měsíc" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Tento profil je soukromý." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Tento týden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nepublikovaný" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Aktualizace" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Uživatel" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "úroveň uživatele" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Uživatelé" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Viditelné na aktuální webstránce" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Webová stránka" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL webové stránky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Když dokončíte kurz nebo dosáhnete milníků, získáte odznaky." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Na konci každého obsahu kurzu můžete získat více bodů zodpovídáním kvízů. " +"Body lze také získat na fóru. Postupujte podle tohoto odkazu podle pokynů " +"fóra." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "drobeček" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "nebo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "bod" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "tento měsíc" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "tento týden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Uživatelé" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..1eff349 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2023 +# Morten Paaske, 2024 +# Sanne Kristensen , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Sanne Kristensen , 2024\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(ikke bekræftet)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Saml point på forummet eller på eLærings platformen. Disse point vil få " +"dig til at opnå nye rang." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Prøv en anden søgning." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Rediger" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " tildelte brugere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Land" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "Erfaringspoint" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Tillykke! Din email er lige blevet " +"godkendt." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Om" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Alle brugere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Livstid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Udover at indtjene omdømme med dine spørgsmål og svar,\n" +" modtager du også emblemer for at være særlig behjælpelig.
Emblemer \n" +" vises på din profil sige, samt dine indlæg." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Kan udgives " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Ryd" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Luk" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Rediger" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Redigér profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamificerings emblem" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Startside" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Hvordan tjener jeg emblemer?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Hvordan scorer jeg flere point?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Er udgivet" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Bliv ved med at lære med" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimum karma for at se andre brugeres profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobil sub-nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Mere info" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Næste rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Ingen emblemer endnu!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Ingen bruger fundet for" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Vær venlig at angive en gyldig email adresse, for at modtage notifikationer " +"fra svar og kommentarer. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Vend tilbage til hjemmeside." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Søg" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Søg brugere" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Den fulde URL for at få adgang til dokumentet via hjemmesiden." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Denne måned" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Denne profil er privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Denne uge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Ikke udgivet" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Opdater" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Bruger" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Bruger rang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Brugere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Synlig på denne hjemmeside" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Hjemmeside URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Når du færdiggør et kursus eller når en milepæl, tildeles du emblemer." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "Erfaringspoint" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Du kan score flere point ved at besvare quizzer i slutningen af hvert kursus" +" indhold. Point kan også tjenes på forummet. Følg dette link til " +"retningslinjerne for forummet." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "brødkrumme" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "eller" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "point" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "denne måned" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "denne uge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "erfaringspoint" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Brugere" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..a780e87 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,750 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Nichts erhalten?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(nicht bestätigt)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Sammeln Sie Punkte im Forum und auf der E-Learning-Plattform. Mit diesen " +"Punkten können sie neue Level erreichen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Eine andere Suche versuchen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Abzeichen erhalten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Abbrechen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "BEARBEITEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Bearbeiten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "PROFIL BEARBEITEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Alle Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Alle Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " Benutzer mit Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Aktueller Rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Beigetreten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Stadt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Land" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-Mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Name" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Öffentliches Profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Glückwunsch! Ihre E-Mail wurde soeben " +"bestätigt." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Ranking nach:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Profilvalidierung von YourCompany\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hallo Marc Demo,

\n" +" bitte bestätigen Sie Ihre E-Mail-Adresse, um Zugang zur Website von „YourCompany“ zu erhalten.\n" +" Klicken Sie dazu einfach auf den folgenden Link:\n" +"

\n" +" Vielen Dank für Ihre Teilnahme!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Korrigieren Sie Ihre E-Mail-Adresse" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Erneut versenden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "hier" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Über" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Alle Benutzer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Seit jeher" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Abzeichen sind Ihre Errungenschaften. Tragen Sie sie voller Stolz!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Mit Ihren Fragen und Antworten gewinnen Sie nicht nur an Reputation,\n" +"Sie erhalten auch Abzeichen, wenn Sie besonders hilfreich sind.
\n" +"Diese werden auf Ihrer Profilseite und in Ihren Beiträgen angezeigt." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biographie" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Darf veröffentlichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Leeren" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Schließen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Bearbeiten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Profil bearbeiten" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: E-Mail-Verifizierung" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamification-Abzeichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Erhalten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Home" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Wie erhalte ich Abzeichen?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Wie erziele ich mehr Punkte?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Ist veröffentlicht" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Noch mehr lernen mit" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimales Karma, um das Profil eines anderen Benutzers zu sehen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobile Sub-Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Weitere Infos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Nächster Rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Noch keine Rangliste :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Noch keine Abzeichen!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Keinen Benutzer gefunden für" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Nicht genügend Karma, um das Profil anderer Benutzer zu sehen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Bitte geben Sie eine gültige E-Mail-Adresse an, um bei Antworten und " +"Kommentaren benachrichtigt zu werden." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Ränge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Zurück zur Website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Suchen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Benutzer suchen" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Versand an Forumsbesucher, um ihre E-Mail-Adresse zu bestätigen" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "" +"Die vollständige URL, um über die Website auf das Dokument zuzugreifen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Diesen Monat" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Dieses Profil ist privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Diese Woche" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Unveröffentlicht" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Aktualisieren" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Benutzer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Benutzer-Rang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Benutzer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Verifizierungs-E-Mail gesendet an" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Auf der aktuellen Website sichtbar" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Website-URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Wenn Sie einen Kurs beenden oder Meilensteine erreichen, erhalten Sie " +"Abzeichen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Schreiben Sie etwas über sich ..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Sie können weitere Punkte sammeln, indem Sie die Quizfragen am Ende jedes " +"Kurses beantworten. Punkte können auch im Forum gesammelt werden. Folgen Sie" +" diesem Link zu den Richtlinien des Forums." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Ihr Konto würde noch nicht verifiziert.
\n" +" Klicken Sie auf" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"Für Ihr Konto ist keine E-Mail eingerichtet. Bitte richten Sie eine ein in" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "Brotkrümel" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "oder" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "Punkt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "diesen Monat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "diese Woche" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr ", um eine Verifizierungs-E-Mail zu erhalten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"XP\n" +" , um aufzusteigen!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "Ihren Konto-Einstellungen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "Profilvalidierung von {{ object.company_id.name }}" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Benutzer" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..7160994 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,748 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" ¿No lo recibió?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(no está verificado)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Recopilar puntos en el foro o en la plataforma eLearning. Esos puntos te " +"harán alcanzar nuevos rangos." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "Intente otra búsqueda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Obtener insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Cancelar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Todas las insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Todas las insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " usuarios premiados" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Rango actual:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Se unió" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografía" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Ciudad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "País" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Correo electrónico" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nombre" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Perfil público" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Sitio web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +" ¡Felicitaciones! Su correo " +"electrónico acaba de ser validado." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Clasificar por:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Validación del perfil de SuEmpresa \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hola Marc Demo,

\n" +" Se le invitó a validar su correo electrónico para acceder al sitio web de \"YourCompany\".\n" +" Haga clic en el siguiente enlace para validar su cuenta:\n" +"

\n" +" ¡Gracias por su participación!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" SuEmpresa\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@suempresa.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Con la tecnología de Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corrija su dirección de correo electrónico" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Volver a enviar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "aquí" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Acerca de" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Todos los usuarios" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Todo el tiempo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Las insignias son una colección de sus logros. ¡Úselas con orgullo!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Además de ganar reputación con sus preguntas y respuestas,\n" +" recibirá insignias por ser muy útil.
Las insignias\n" +" aparecerán en su página de perfil, junto con sus publicaciones." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografía" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Puede publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Limpiar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Cerrar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editar perfil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Foro: verificación por correo electrónico" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Insignia de gamificación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Obtener" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Inicio" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "¿Cómo puedo ganar insignias?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "¿Cómo puedo conseguir más puntos?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Sigue aprendiendo con" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma mínimo para ver el perfil de otro usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Sub-navegación móvil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Más información" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Navegación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Siguiente grado:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Todavía no hay tabla de clasificación :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Todavía no cuenta con insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "No se encuenta ningún usuario con" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "No tiene suficiente karma para ver el perfil de otro usuario." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Introduzca un correo electrónico válido para recibir notificaciones de las " +"respuestas o comentarios." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Regresar al sitio web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Búsqueda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Buscar usuarios" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" +"Enviar a los visitantes del foro para confirmar sus direcciones de correo " +"electrónico" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "La URL completa para acceder al documento a través del sitio web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Este mes" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Este perfil es privado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "No publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Actualizar" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rango del usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuarios" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Correo de verificación enviado a" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visible en el sitio web actual" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL del sitio web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Cuando terminas un curso o alcanzas hitos, se te otorgan insignias." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Escriba un poco sobre usted..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Usted puede obtener más puntos contestando pruebas al final del contenido de" +" cada curso. Los puntos también se pueden ganar en el foro. Siga este enlace" +" a las directrices del foro." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"No se ha verificado su cuenta.
\n" +" Haga clic" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "No se ha establecido un correo electrónico en su cuenta, configúrelo." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "barra de migas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "o" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "este mes" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "para recibir un correo de verificación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" para subir de nivel!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "sus ajustes de cuenta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Validación del perfil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuarios" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..77dfe57 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,753 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Fernanda Alvarez, 2023 +# Iran Villalobos López, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Iran Villalobos López, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" ¿No lo recibió?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(no está verificado)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Acumule puntos desde el foro o desde la plataforma de eLearning. Estos " +"puntos le ayudarán a alcanzar nuevos rangos." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Intente otra búsqueda." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Obtener insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Cancelar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Todas las insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Todas las insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " usuarios premiados" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Rango actual:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Se unió a" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografía" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Ciudad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "País" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Correo electrónico" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nombre" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Perfil público" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Sitio web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +" ¡Felicitaciones! Acaba de validar " +"su correo electrónico." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Clasificar por:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Validación del perfil de SuEmpresa \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hola Marc Demo,

\n" +" Se le invitó a validar su correo electrónico para acceder al sitio web de \"YourCompany\".\n" +" Haga clic en el siguiente enlace para validar su cuenta:\n" +"

\n" +" ¡Gracias por su participación!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" SuEmpresa\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@suempresa.com\n" +" \n" +" \n" +" | http://www.ejemplo.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Con la tecnología de Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corrija su dirección de correo electrónico" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Volver a enviar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "aquí" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Acerca de" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Todos los usuarios" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Todo el tiempo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insignias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Las insignias son una colección de sus logros. ¡Úselas con orgullo!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Además de ganar reputación con sus preguntas y respuestas,\n" +" recibirá insignias por su ayuda.
Las insignias\n" +" aparecerán en su página de perfil, junto con sus publicaciones." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografía" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Puede publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Limpiar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Cerrar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editar perfil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Foro: verificación por correo electrónico" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Insignia de ludificación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Obtener" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Inicio" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "¿Cómo puedo ganar insignias?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "¿Cómo puedo conseguir más puntos?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Siga aprendiendo con" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma mínimo para ver el perfil de otro usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Subnavegación móvil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Más información" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Navegación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Siguiente rango:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Todavía no hay tabla de clasificación :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "¡Todavía no cuenta con insignias!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "No se encuenta ningún usuario con" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "No tiene suficiente karma para ver el perfil de otro usuario." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Introduzca un correo electrónico válido para recibir notificaciones de las " +"respuestas o comentarios." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Regresar al sitio web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Búsqueda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Buscar usuarios" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" +"Enviar a los visitantes del foro para confirmar sus direcciones de correo " +"electrónico" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "La URL completa para acceder al documento a través del sitio web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Este mes" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "¡Este perfil es privado!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Sin publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Actualizar" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rango del usuario" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuarios" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Correo de verificación enviado a" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visible desde este sitio web" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL del sitio web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Cada vez que termine un curso o cumpla un objetivo, se le otorgarán " +"insignias." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Escriba un poco sobre usted..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Puede obtener más puntos si responde los cuestionarios que se encuentran al " +"final de cada contenido del curso. También se pueden obtener puntos en el " +"foro. Consulte en este enlace las normas del foro." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"No se ha verificado su cuenta.
\n" +" Haga clic" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "No se ha establecido un correo electrónico en su cuenta, configúrelo." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "migas de pan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "o" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "este mes" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "para recibir el correo de verificación" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" para subir de nivel!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "sus ajustes de cuenta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Validación del perfil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuarios" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..1faff37 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,754 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Piia Paurson , 2023 +# Leaanika Randmets, 2023 +# Rivo Zängov , 2023 +# Patrick-Jordan Kiudorv, 2023 +# Algo Kärp , 2023 +# Arma Gedonsky , 2023 +# Triine Aavik , 2023 +# Martin Trigaux, 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:56+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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Ei saanud kätte?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(kinnitamata)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Kogu kursustel punkte. Kursustelt saadud punktid aitavad jõuda sul uute " +"tasemeteni." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Proovi teistsugust otsingut." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Saa tunnustusmärke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Tühista" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "MUUDA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Muuda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "MUUDA PROFIILI" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Kõik märgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Kõik märgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " tunnustatud kasutaja(t)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Praegune tase:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Märgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Liitunud" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biograafia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Linn" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Riik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-post" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nimi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Avalik profiil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Veebileht" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Märgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "Punktid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Märgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "Punktid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Teie e-posti aadress on " +"kinnitatud." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Järjesta:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Parandage enda e-posti aadressit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Saada uuesti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "siin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Teave" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Kõik kasutajad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Kogu periood" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Tunnustusmärgid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "Märgid on sinu saavutuste kogum. Kanna neid uhkusega!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Lisaks teadmistele, mis sa kogud kursuseid läbi tehes,\n" +" anname sulle tunnusmärke.
Tunnusmärgid\n" +" on nähtavad sinu profiilil ja sinu postitustes." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biograafia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Võib avaldada" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Tühjenda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Sulge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Muuda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Muudaprofiili" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Foorum: e-posti kinnitamine" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Tunnustusmärk" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Saa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Avaleht" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Kuidas ma saan teenida märke?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Kuidas ma saan rohkem punkte koguda?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "On avaldatud" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Jätkake õppimist koos" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimaalsed punktid, et näha teise kasutaja profiili" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobiilne alamnavigaator" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Rohkem informatsiooni" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Järgmine tase:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Edetabelit veel ei ole :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Märke veel pole!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Ei leitud kasutajat nimega" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Pole piisavalt punkte teiste kasutajate profiilide vaatamiseks." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Palun sisestage kehtiv e-posti aadress, et saada teavitusi vastuste või " +"kommentaaride kohta. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Tasemed" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Tagasi veebilehele." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Otsi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Otsi kasutajaid" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Meiliaadressi kinnitus on saadetud foorumi külastajatele " + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Dokumendile veebisaidi kaudu juurdepääsuks täielik URL." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "See kuu" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Antud profiil on privaatne!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "See nädal" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Avaldamata" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Uuenda" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Kasutaja" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Kasutaja tase" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Kasutajad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Kinnitusmeil saadeti aadressile" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Nähtav praegusel veebilehel" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Veebileht" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Veebilehe URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Kui lõpetad kursuse või saavutad eesmärke, siis antakse märke. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Kirjuta mõned sõnad enda kohta..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "punktid" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Punkte kogute näiteks iga kursuse lõpus vastates viktoriini küsimustele. " +"Samuti saab koguda punkte ka foorumis. Sellel lingil saad juhiseid foorumi " +"kohta: " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Teie konto pole veel kinnitatud.
\n" +" Klõpsake" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"Teie kontol pole e-posti aadressit lisatud. Palun lisage e-posti aadress! " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "navigatsioon" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "või" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punkt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "see kuu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "see nädal" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "kinnitusmeili saamiseks" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" uuele tasemele tõusmiseks!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "teie konto seaded" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profiili kinnitamine" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Kasutajad" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..36de11c --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,641 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Hanna Kheradroosta, 2023 +# Martin Trigaux, 2023 +# Hamed Mohammadi , 2023 +# Mostafa Barmshory , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Mostafa Barmshory , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "درباره" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "همه کاربران" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "بج‌ها" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "می تواند منتشر کند" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "پاک کردن" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "بستن" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "ویرایش" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "نشان گیمیفیکیشن" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "خانه" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "منتشر شده است" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "رتبه" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "جستجو" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "آدرس URL کامل برای دسترسی سند در وبسایت." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "این ماه" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "این هفته" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "منتشر نشده" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "به روز رسانی" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "کاربر" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "کاربران" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "قابل دید در وبسایت حاضر" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "تارنما" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL وبسایت" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "خرده نان" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "یا" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "این ماه" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "امتیاز" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..f58cc34 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,667 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Kari Lindgren , 2023 +# Mikko Salmela , 2023 +# Veikko Väätäjä , 2023 +# Miku Laitinen , 2023 +# Martin Trigaux, 2023 +# Jarmo Kortetjärvi , 2023 +# Tuomo Aura , 2023 +# Topi Aura , 2023 +# Miika Nissi , 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Etkö saanut sitä?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(ei vahvistettu)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Kerää pisteitä foorumilla tai verkko-oppimisen alustalla. Nällä pisteillä " +"saavutat uusia sijoituksia." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Kokeile toista hakua. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "MUOKKAA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Muokkaa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "MUOKKAA PROFIILIA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " palkitut käyttäjät" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Nykyinen sijoitus:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Liittynyt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Elämäkerta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Kaupunki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Maa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Sähköposti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nimi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Verkkosivusto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "Kokemuspisteet" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Onnittelut! Sähköpostisi on juuri " +"vahvistettu." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Korjaa sähköpostiosoitteesi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Lähetä uudelleen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "täällä" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Tietoja" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Kaikki käyttäjät" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Kautta aikojen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Ansiomerkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Sen lisäksi, että saat mainetta kysymyksilläsi ja vastauksillasi,\n" +" saat merkkejä siitä, että olet erityisen avulias.
Merkit\n" +" näkyvät profiilisivullasi ja viesteissäsi." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Kuvaus itsestäsi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Voi julkaista" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Pyyhi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Sulje" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Muokkaa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Profiilin muokkaus" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Foorumi: Sähköpostivarmennus" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Pelillistämisen ansiomerkki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Etusivu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Miten ansaitsen merkkejä?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Miten saan enemmän pisteitä?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "On julkaistu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Jatka oppimista" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimaalinen karma nähdäksesi muiden käyttäjien profiilin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobiilin ala-navigaatio" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Lisätiedot" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Uusi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Seuraava taso:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Ei tulostaulukkoa vielä :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Ei vielä merkkejä!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Käyttäjää ei löydy kohteelle" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Anna toimiva sähköpostiosoite vastaanottaaksesi päivityksiä uusista " +"vastauksista ja kommenteista." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Sijat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Palaa verkkosivulle." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Hae" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Etsi käyttäjiä" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" +"Lähetetään foorumin kävijöille heidän sähköpostiosoitteensa vahvistamiseksi" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Dokumentin URL-osoite verkkosivustolla." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Tässä kuussa" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Tämä profiili on yksityinen!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Tällä viikolla" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Julkaisematon" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Päivitä" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Käyttäjä" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Käyttäjän paikka pistekisassa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Käyttäjät" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Vahvistussähköposti lähetetään osoitteeseen" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Näkyy nykysellä verkkosivulla" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Verkkosivu" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Verkkosivuston osoite" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Kun suoritat kurssin loppuun tai saavutat virstanpylväitä, saat merkkejä." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Voit saada lisää pisteitä vastaamalla kunkin kurssin sisällön lopussa " +"oleviin tietokilpailuihin. Pisteitä voi ansaita myös foorumilla. Seuraa tätä" +" linkkiä foorumin ohjeisiin." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Tiliäsi ei ole vielä vahvistettu.
\n" +" Klikkaa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Tilillesi ei ole määritetty sähköpostia. Ole hyvä ja määritä se" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "murupolku" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "tai" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "piste" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "tämä kuukausi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "tämä viikko" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "saadaksesi vahvistussähköpostin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "tilisi asetukset" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profiilin validointi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Käyttäjät" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..733d246 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,754 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Vous ne l'avez pas reçu ?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(pas verifié)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Récoltez des points sur le forum ou sur la plateforme eLearning. Ces " +"points vous permettront d'atteindre de nouveaux rangs." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Essayez une autre recherche." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Obtenir des badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Annuler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "MODIFIER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Modifier" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "MODIFIER LE PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Tous les badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Tous les badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " utilisateurs récompensés" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Rang actuel :" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Rejoint" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biographie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Ville" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Pays" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nom" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Profil public" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Site web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Félicitations ! Votre email vient " +"d'être validé." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Classer par :" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Validation du profil de YourCompany \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Bonjour Marc Demo,

\n" +" Nous vous avons invité à valider votre adresse email afin d'avoir accès au site web de \"YourCompany\".\n" +" Pour valider votre adresse email, veuillez cliquer sur le lien suivant :\n" +"

\n" +" Merci pour votre participant !\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Généré par Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corriger votre adresse email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Renvoyer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "ici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "À propos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Tous les utilisateurs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "De tous les temps" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Les badges sont la collection de vos réalisations. Portez-les fièrement ! " +"
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"En plus de gagner en réputation grâce à vos questions et réponses,\n" +" vous recevez aussi des badges si vous êtes particulièrement utile à la communauté.
Les badges\n" +" apparaissent sur votre profil et vos publications." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biographie" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Peut publier" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Effacer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Fermer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Modifier" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Modifier le profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum : Vérification par email" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Badge de ludification" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Obtenez" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Page d'accueil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Comment puis-je gagner des badges ?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Comment puis-je marquer plus de points ?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Est publié" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Continuez à apprendre avec" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Points karma minimaux pour voir le profil d'un autre utilisateur" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Sous-navigateur mobile" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Plus d'infos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Prochain rang :" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Aucun classement pour l'instant :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Pas encore de badge !" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Aucun utilisateur trouvé pour" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" +"Vous n'avez pas assez de points karma pour voir le profil d'autres " +"utilisateurs." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Veuillez saisir une adresse email valide afin de recevoir les notifications " +"suite à des réponses ou commentaires." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Retourner au site web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Rechercher" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Rechercher des utilisateurs" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Envoyé aux visiteurs du forum pour confirmer leur adresse email" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "L'URL complète pour accéder au document à travers le site web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ce mois" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Ce profil est privé ! " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Cette semaine" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Non publié" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Mettre à jour" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Utilisateur" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rang utilisateur" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilisateurs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Email de vérification envoyé à" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visible sur le site web actuel" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Site Web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL de site web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Quand vous finissez un cours ou atteignez des étapes importantes, vous " +"recevez des badges." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Décrivez-vous en quelques mots..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Vous pouvez marquer plus de points en répondant à des questions à la fin de " +"chaque cours. Vous pouvez aussi gagner des points sur le forum. Suivez ce " +"lien pour connaître les règles d'usage sur le forum. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Votre compte n'a pas encore été vérifié.
\n" +" Cliquez" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"Aucun email n'a été configuré pour votre compte. Merci de le configurer sur" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "fil d'Ariane" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ou" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "point" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "ce mois-ci" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "cette semaine" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "pour recevoir un email de vérification" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" pour passer au niveau suivant !" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "vos paramètres de compte" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Validation du profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Utilisateurs" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..9a8e5b2 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Yihya Hugirat , 2023 +# Martin Trigaux, 2023 +# Lilach Gilliam , 2023 +# Ha Ketem , 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:56+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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(לא אומת)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". אסוף נקודות בפורום או בפלטפורמת eLearning. נקודות אלה יגרמו לך להגיע " +"לדרגות חדשות." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". נסה חיפוש נוסף." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "משתמשים שקיבלו פרסים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "תגים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"מזל טוב! הדוא\"ל שלך זה עתה " +"אומת." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "אודות" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "כל המשתמשים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "כל הזמן" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "תגים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "ביוגרפיה" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "יכול לפרסם" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "נקה" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "סגור" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "ערוך" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "ערוך פרופיל" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "תג משחק" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "בית" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "איך אני מרוויח תגים?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "איך אני מרוויח יותר נקודות?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "מפורסם" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "המשך ללמוד עם" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "קארמה מינימלית כדי לראות פרופיל של משתמשים אחרים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "מידע נוסף" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "ניווט" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "דרגה חדשה:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "אין עדיין מדליות!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "לא נמצא משתמש עבור" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "נא לנוסיף כתובת מייל תקינה כדי לקבל הודעות על תשובות או תגובות." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "דרגות" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "חזור לאתר האינטרנט." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "חיפוש" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "חפש משתמשים" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "כתובת האתר המלאה לגישה למסמך דרך אתר האינטרנט." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "חודש נוכחי" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "פרופיל זה הינו פרטי!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "שבוע נוכחי" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "לא פורסם" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "עדכן" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "משתמש" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "דרגת משתמש" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "משתמשים" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "גלוי באתר האינטרנט הנוכחי" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "אתר אינטרנט" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "כתובת אתר אינטרנט" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "כשאתה מסיים קורס או מגיע לאבני דרך, אתה מקבל תגים." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "סימני דרך" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "או" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "נקודה" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "החודש" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "שבוע נוכחי" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} אימות פרופיל" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ משתמשים" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..c9a782a --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,605 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Jasmina Otročak , 2022 +# Đurđica Žarković , 2022 +# Ivana Šimek , 2022 +# Karolina Tonković , 2022 +# Tina Milas, 2022 +# Hrvoje Sić , 2022 +# Vladimir Olujić , 2022 +# Martin Trigaux, 2022 +# Matej Mijoč, 2022 +# Bole , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:50+0000\n" +"PO-Revision-Date: 2022-09-22 05:57+0000\n" +"Last-Translator: Bole , 2023\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid ". Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Pokušajte drugu pretragu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " nagrađeni korisnici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Oznaka" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Congratulations! Your email has just been validated." +msgstr "Čestitamo! Vaša e-pošta je provjerena." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "O programu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Svi korisnici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Značke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografija" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Očisti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zatvori" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Uredi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Uredi profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Značka izazova" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Naslovna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "je objavljeno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Više informacija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Please enter a valid email address in order to receive notifications from answers or comments." +msgstr "Unesite valjanu e-mail adresu kako biste primali obavijesti o odgovorima i komentarima." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangovi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "Return to the website." +msgstr "Povratak na web stranicu." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Traži" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Traži korisnike" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Puni URL za pristup dokumentu putem web stranice." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ovaj mjesec" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Ovaj profil je privatan!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Ovaj tjedan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Neobjavljeno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Ažuriraj" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Korisnik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Korisnici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Vidljivo na trenutnoj web stranicama" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL web stranice" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "You can score more points by answering quizzes at the end of each course content. Points can also be earned on the forum. Follow this link to the guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ili" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "ovaj mjesec" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "ovaj tjedan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else ''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..1ce3278 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Gergő Kertész , 2023 +# sixsix six, 2023 +# gezza , 2023 +# Szabolcs Rádi, 2023 +# Martin Trigaux, 2023 +# krnkris, 2023 +# Tamás Németh , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tamás Németh , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " díjazott felhasználók" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Névjegy" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Minden felhasználó" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Jelvények" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Életrajz" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Publikálhat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Törlés" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Bezárás" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Szerkesztés" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Profil szerkesztés" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Kezdőlap" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Közzétett" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Tivábbi információ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Következő rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Kérem adjon meg egy érvényes email címet ahhoz, hogy figyelmeztetéseket " +"kapjon a válaszokról és a hozzászólásokról." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangok" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Keresés" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "" +"A teljes elérési út/URL a dokumentum weboldalon keresztüli eléréséhez." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ebben a hónapban" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Ez a profil privát!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Ezen a héten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nem közzétett" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Frissítés" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Felhasználó" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Felhasználók" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Látható ezen a weboldalon" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Honlap" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Honlap címe" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "vagy" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "ebben a hónapban" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "ez a hét" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..871afc9 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,748 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Abe Manyo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Abe Manyo, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Tidak menerima email?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(belum diverifikasi)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Kumpulkan poin pada forum atau pada platform eLearning. Poin-poin tersebut" +" akan membuat Anda mencapai peringkat baru." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Coba mencari lagi." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Dapatkan Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Batalkan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDIT" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Edit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDIT PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Semua Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Semua Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " user dengan piala" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Peringkat saat ini:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Bergabung" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Kota" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Negara" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nama" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Profil Publik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Selamat! Email Anda telah " +"divalidasi." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Peringkatkan berdasarkan:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Validasi profil\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Halo Marc Demo,

\n" +" Anda telah diundang untuk memvalidasi email Anda untuk mendapatkan akses ke website \"YourCompany\".\n" +" Untuk memvalidasi email Anda, silakan klik link berikut:\n" +"

\n" +" Terima kasih untuk partisipasi Anda!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Betulkan alamat email Anda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Kirim Lagi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "di sini" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Tentang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Semua User" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Sepanjang masa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Lencana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Lencana adalah koleksi pencapaian Anda. Tampilkan dengan bangga!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Selain mendapatkan reputasi dengan pertanyaan dan jawaban Anda,\n" +" Anda mendapatkan lencana karena sudah sangat membantu orang lain.
Lencana\n" +" akan tampil di halaman profil Anda, dan di post Anda." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Dapat Dipublikasikan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Bersihkan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Tutup" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Edit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Edit Profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: Verifikasi Email" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Lencana Gamifikasi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Dapatkan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Beranda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Bagaimana saya mendapatkan lencana?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Bagaimana saya mendapatkan lebih banyak poin?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Dipublikasikan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Terus belajar dengan" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma minimum yang dibutuhkan untuk melihat profil user lain" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Sub-nav Mobile" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Info lebih lanjut" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Ranking berikutnya:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Belum ada Leaderboard :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Belum ada lencana!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Tidak ada user yang ditemukan untuk" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Tidak cukup karma untuk melihat profil user lain." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Mohon masukkan alamat email yang valid untuk menerima notifikasi mengenai " +"jawaban atau komentar." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Peringkat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Kembali ke website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Pencarian" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Cari user" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Kirim ke pengunjung forum untuk mengonfirmasi alamat email mereka" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL lengkap untuk mengakses dokumen melalui website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Bulan ini" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Profil ini privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Minggu ini" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Belum dipublikasikan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Perbarui" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Pengguna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Peringkat user" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Pengguna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Email Verifikasi dikirim ke" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Terlihat pada website saat ini" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL Websi8te" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Saat Anda menyelesaikan kursus atau meraih milestone, Anda diberikan " +"lencana." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Tulis beberapa kata mengenai diri Anda sendiri..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"And mendapatkan lebih banyak poin dengan menjawab quiz di akhir setiap " +"konten kursus. Poin juga bisa didapatkan pada forum. Ikuti link ini ke " +"pedoman penggunaan forum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Akun Anda belum diverifikasi.
\n" +" Klik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Akun Anda tidak memiliki email. Mohon sediakan email pada" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "breadcrumb" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "atau" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "poin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "bulan ini" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "minggu ini" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "untuk menerima email verifikasi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" untuk level up!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "pengaturan akun Anda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} validasi Profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ User" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..2dd8da9 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,747 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Marianna Ciofani, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Marianna Ciofani, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Non lo hai ancora ricevuto?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(non verificato)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". La raccolta di punti nel forum o nella piattaforma di e-learning consente " +"di raggiungere nuovi livelli." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ", provare con un'altra ricerca." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Ottieni badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Annulla" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "MODIFICA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Modifica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "MODIFICA PROFILO" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Tutti i badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Tutti i badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " utenti premiati" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Classifica attuale:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Iscrizione" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Città" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Paese" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nome" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Profilo pubblico" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Sito web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "PE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Congratulazioni! L'e-mail è appena " +"stata confermata." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Classifica per:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Convalida profilo\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Ciao Marc Demo,

\n" +" sei stato invitato a verificare il tuo indirizzo e-mail per accedere al sito web di \"YourCompany\".\n" +" Per convalidare la tua e-mail, fai clic sul link di seguito:\n" +"

\n" +" Grazie per la partecipazione!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Correggi il tuo indirizzo e-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Invia di nuovo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "qui" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Informazioni" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Tutti gli utenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "In assoluto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "I badge rappresentano la tua collezione di successi. Sii fiero!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Oltre a guadagnare reputazione con domande e risposte, è\n" +" possibile ricevere riconoscimenti fornendo un aiuto sostanziale.
Sono\n" +" visibili nella pagina profilo e nei messaggi." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Può pubblicare" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Rimuovi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Chiudi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Modifica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Modifica profilo" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: verifica e-mail" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Riconoscimento gamification" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Ottieni" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Home" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Guadagnare riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Ottenere più punti" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "È pubblicato" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Apprendimento continuo con" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma minimo per vedere altri profili utente" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobile sub-nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Maggiori informazioni" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Prossimo livello:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Non c'è ancora una classifica :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Ancora nessun riconoscimento" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nessun utente trovato per" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Non hai abbastanza karma per vedere il proflo di altri utenti." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Inserire un indirizzo e-mail valido per ricevere notifiche da risposte o " +"commenti." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Livelli" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Ritorna al sito web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Ricerca" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Ricerca utenti" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Inviata ai visitatori del forum per confermare l'indirizzo e-mail" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL completo per accedere al documento dal sito web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Questo mese" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Questo profilo è privato." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Questa settimana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Non pubblicata" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Aggiorna" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Utente" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Livello utente" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "E-mail di verifica inviata a" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visibile nel sito web corrente" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Sito web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL sito web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Al termine di un corso o al raggiungimento degli obiettivi stabiliti vengono" +" assegnati dei riconoscimenti." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Scrivi qualche parola su te stesso..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "PE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Per ottenere più punti è possibile rispondere ai quiz che si trovano alla " +"fine di ciascun contenuto del corso. Per guadagnarli tramite il forum, " +"seguire il relativo link alle linee guida." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Il tuo account non è stato ancora verificato.
\n" +" Fai clic" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Il tuo account non ha un'e-mail associata. Configurane una su" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "percorso di navigazione" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "oppure" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "questo mese" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "questa settimana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "per ricevere un'e-mail di verifica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "pe" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" per salire di livello!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "le impostazioni del tuo account" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Convalida profilo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Utenti" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..6a5f037 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,738 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Junko Augias, 2023 +# Ryoko Tsuda , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ryoko Tsuda , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" 受け取っていませんか?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(未検証)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "。フォーラムやeラーニング・プラットフォームでポイントを集めましょう。そのポイントで新しいランクに到達できます。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "。また検索してみて下さい。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "バッジ獲得 " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "取消" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "編集" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "編集" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "プロフィールを編集" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "全てのバッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "全てのバッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " 受賞者" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "現在のランク:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "バッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "参加済" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "略歴" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "都市" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Eメール" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "名前" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "公開プロフィール" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "バッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "バッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "おめでとうございます。あなたのeメールが検証されました。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "以下によるランク:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany プロフィール検証\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" こんにちは、Marc Demo様、

\n" +" eメールを検証して、\"YourCompany\" ウェブサイトにアクセスできるようにして下さい。\n" +" eメールを検証するには、以下をクリックして下さい。\n" +"

\n" +" ご参加ありがとうございます!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Eメールアドレスの訂正" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "再送する" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "ここ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Odooについて" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "すべてのユーザ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "常に" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "バッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "バッジはあなたの功績のコレクションです。誇りを持って身につけましょう!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"質問や回答をすることで高い評価を得ることができます。\n" +"      特に役に立った場合にはバッジを獲得できます。
バッジ\n" +"はプロフィールページと投稿に表示されます。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "略歴" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "公開可" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "クリア" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "閉じる" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "編集" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "プロフィールを編集" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "フォーラム: Eメール認証" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "ゲーミフィケーションのバッジ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "取得" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "ホーム" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "バッジを取得するには?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "より多くのポイントを獲得するには?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "公開済" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "以下で継続して学ぶ:" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "他のユーザのプロフィールを閲覧するための最小カルマ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "モバイルサブナビゲーション" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "詳しくはこちらへ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "ナビゲーション" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "次のランク:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "現在リーダボードはありません :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "まだバッジがありません!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "以下用のユーザが見つかりません" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "他のユーザのプロフィールを閲覧するためカルマが不足しています" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "回答やコメントからの通知を受け取るには、有効なメールアドレスを入力してください。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "ランク" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "ウェブサイトに戻る。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "検索" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "ユーザを検索" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "メールアドレスを確認するためにフォーラム訪問者に送信" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "サイト経由して、文書にアクセスする完全なURL。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "今月" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "このプロフィールは非公開です。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "今週" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "未公開" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "更新" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "ユーザ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "ユーザランク" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "ユーザ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "認証メールを以下に送信:" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "現在のサイトに表示" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "サイトURL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "コース終了やマイルストン達成で、バッジを獲得できます。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "あなた自身について一言書いて下さい" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"コースの各コンテンツの最後にあるクイズに答えることで、より多くのポイントを獲得できます。また、フォーラムでもポイントを獲得できます。このリンクからフォーラムのガイドラインをご覧下さい。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"お客様のアカウントはまだ認証されていません。
\n" +"   クリック" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "アカウントにEメールが設定されていません。次のページで設定して下さい:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "パンくず" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "又は" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "ポイント" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "今月" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "今週" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "認証メールを受け取る" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" レベルアップする!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "アカウントセッティング" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} プロフィール検証" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ ユーザ" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..ae41c5f --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,738 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Daye Jeong, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Daye Jeong, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" 받지 못하셨습니까?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(확인되지 않음)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr ". 포럼 또는 온라인 학습 플랫폼의 점수를 수집하세요. 그 점수는 귀하를 새로운 등급으로 안내합니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". 다른 검색을 시도하십시오." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " 배지 획득하기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "취소" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "편집" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "편집" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "프로필 편집" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "모든 배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " 모든 배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " 수상자 " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "현재 순위:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "가입" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "이력" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "도시" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "국가" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "이메일" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "이름" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "공개 프로필" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "웹사이트" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "축하합니다! 귀하의 이메일을 확인하였습니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "순위 기준:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany 프로필 확인\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" 안녕하세요 Marc Demo님,

\n" +" \"YourCompany\" 웹사이트에 엑세스 권한을 승인하기 위하여 이메일을 확인해주시기 바랍니다.\n" +" 이메일을 확인하려면 아래 링크를 클릭해주십시오:\n" +"

\n" +" 협조해주셔서 진심으로 감사드립니다.\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "이메일 주소 수정하기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "다시 전송하기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "여기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "소개" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "모든 사용자" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "총 시간" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "뱃지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "배지는 업적을 나타내주는 컬렉션입니다! 자랑스럽게 사용하세요
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"질문과 답변으로 평판을 얻는 방법 외에도,\n" +" 도움을 줌으로써 배지를 획득할 수 있습니다.
배지는\n" +" 프로필 페이지와 게시물에서 확인하실 수 있습니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "이력" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "게시 가능" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "제거" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "닫기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "편집" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "프로필 편집" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "게시판: 이메일 인증" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "업적 배지" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "가져오기" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "홈" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "배지는 어떻게 받습니까?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "더 많은 점수를 어떻게 얻습니까?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "게시 여부" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "계속 학습" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "다른 사용자의 프로필을 볼 수 있는 최소 명성" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "모바일 하위 탐색" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "추가 정보" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "탐색" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "다음 등급 :" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "현재 획득한 점수가 없습니다. :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "아직 획득한 배지가 없습니다!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "다음에 대한 사용자를 찾을 수 없습니다" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "다른 사용자의 프로필을 볼 수 있을 만큼의 카르마가 없습니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "답변 또는 의견에 대한 알림을 수신하기 위한 유효한 이메일 주소를 입력하십시오." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "등급" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "웹사이트로 돌아갑니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "검색" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "사용자 검색" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "게시판 방문자에게 메일 주소 확인을 위해 전송" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "웹사이트를 통해 문서에 접근 하는 전체 URL입니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "이번 달" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "비공개 프로필입니다!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "이번 주" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "게시 안 함" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "갱신" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "사용자" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "사용자 순위" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "사용자" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "다음 주소로 인증 이메일 전송" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "현재 웹 사이트에 공개" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "웹사이트" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "웹 사이트 URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "과정을 마치거나 이정표에 도달하면 배지가 제공됩니다." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "본인에 대해 짧게 소개를 남겨주세요..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"각 강좌 내용이 끝날 때 퀴즈에 답하면 더 많은 점수를 얻을 수 있습니다. 게시판에서 점수를 얻을 수도 있습니다. 이 링크를 따라 가서 " +"게시판 지침에 따르십시오." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"계정이 아직 인증되지 않았습니다.
\n" +" 클릭" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "계정에 이메일이 설정되어 있지 않습니다. 다음에서 설정하세요." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "사이트 이동 경로" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "또는" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "점수" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "이번 달" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "이번 주" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "다음을 클릭하여 인증 이메일을 받습니다" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" 을 더 획득하면 레벨업할 수 있습니다!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "계정 설정" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} 프로필 검증" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ 사용자" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..189f3ee --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,592 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:50+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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid ". Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Congratulations! Your email has just been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Please enter a valid email address in order to receive notifications from answers or comments." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "You can score more points by answering quizzes at the end of each course content. Points can also be earned on the forum. Follow this link to the guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else ''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..186f7aa --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,647 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Arminas Grigonis , 2023 +# Jonas Zinkevicius , 2023 +# Monika Raciunaite , 2023 +# Linas Versada , 2023 +# Martin Trigaux, 2023 +# digitouch UAB , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: digitouch UAB , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " apdovanoti vartotojai" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Sveikiname! Jūsų el. pašto adresas buvo" +" patvirtintas." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Apie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Ženkleliai" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografija" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Gali publikuoti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Valyti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Uždaryti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Redaguoti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Redaguoti profilį" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Sužaidybinimo ženklelis" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Pradžia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Paskelbta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Daugiau informacijos" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Jei norite gauti pranešimus iš atsakymų ar komentarų, įveskite galiojantį " +"el. pašto adresą." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Paieška" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Pilna nuoroda dokumento pasiekimui per svetainę." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Šis mėnuo" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Šis profilis privatus!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Šią savaitę" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nepaskelbtas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Atnaujinti" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Vartotojas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Vartotojai" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Matomas dabartinėje svetainėje" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Svetainė" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Svetainės nuoroda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "kelias" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "arba" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "šį mėnesį" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..2a1344b --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,645 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2023 +# Anzelika Adejanova, 2023 +# ievaputnina , 2023 +# JanisJanis , 2023 +# Armīns Jeltajevs , 2023 +# Arnis Putniņš , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Arnis Putniņš , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Apsveicam! Jūsu e-pasts tika " +"apstiprināts." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Izlabojiet Jūsu e-pasta adresi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Par" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Nozīmītes" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Notīrīt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Aizvērt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Labot" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Spēliskošanas emblēma" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Sākums" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Meklēt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "The full URL to access the document through the website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nepublicēts" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Atjaunināt" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Lietotājs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Lietotāji" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Mājas lapa" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Website URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Jūsu kontam nav norādīta e-pasts. Lūdzam, to norādīt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "vai" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..8b595fc --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,599 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Khoschuluu Khuderchuluu , 2022 +# hish, 2022 +# Martin Trigaux, 2022 +# Uuganbayar Batbaatar , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:50+0000\n" +"PO-Revision-Date: 2022-09-22 05:57+0000\n" +"Last-Translator: Uuganbayar Batbaatar , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid ". Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " шагнуулсан хэрэглэгчид" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Тэмдэгтүүд" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Congratulations! Your email has just been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Тухай" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Бүх хэрэглэгчид" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Медаль" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Намтар" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Нийтлэж болно" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Цэвэрлэх" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Хаах" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Засах" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Профайлыг засах" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Нүүр хуудас" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Нийтлэгдсэн эсэх" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Дэлгэрэнгүй мэдээлэл" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Нав" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Хэрэглэгч олдсонгүй " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Please enter a valid email address in order to receive notifications from answers or comments." +msgstr "Хариулт эсвэл сэтгэгдлүүдээс мэдэгдэл хүлээн авахын тулд зөв имэйл хаяг оруулна уу." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Хайх" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Курс хайх" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Хэрэглэгч хайх" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Вебсайтаар дамжин баримт руу хандах бүтэн URL." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Энэ сар" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Энэ бол хувийн профайл!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Энэ долоо хоног" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Нийтлэгдээгүй" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Шинэчлэлт" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Хэрэглэгч" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Хэрэглэгчид" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Одоогийн вебсайт дээр харагдах" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Вэбсайт" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Вебсайт URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "You can score more points by answering quizzes at the end of each course content. Points can also be earned on the forum. Follow this link to the guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "Дотор тал" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "эсвэл" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "энэ сар" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else ''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Хэрэглэгчид" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..4f9794d --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,599 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2022 +# Jorunn D. Newth, 2022 +# Marius Stedjan , 2022 +# Henning Fyllingsnes, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:50+0000\n" +"PO-Revision-Date: 2022-09-22 05:57+0000\n" +"Last-Translator: Henning Fyllingsnes, 2023\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(ikke verifisert)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid ". Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks." +msgstr ". Samle poeng på forumet eller på e-læringsplatformen. Poengene gjør at du kan nå nye grader." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Prøv et annet søk." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " tildelte brukere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "ble med" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Medaljer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Congratulations! Your email has just been validated." +msgstr "Graulerer! E-postadressen din ble bekreftet." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Om" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Alle brukere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Medaljer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Kan publisere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Tøm" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Lukk" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Rediger" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Rediger profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Spillifiseringsmedalje" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Hjem" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Hvordan får jeg medaljer?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Hvordan får jeg flere poeng?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Er publisert" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Fortsett å lære med" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minste karma for å se andre brukeres profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobile sub-nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Mer info" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Neste grad:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Ingen bruker funnet for" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Please enter a valid email address in order to receive notifications from answers or comments." +msgstr "Du må oppgi en gyldig e-postadresse for å motta varslinger om svar eller kommentarer." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Grader" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "Return to the website." +msgstr "Gå tilbake til nettsted." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Søk" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Søk etter kurs" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Søk etter brukere" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Fullstendig link for å nå dokumentet via nettstedet." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Denne måneden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Denne profilen er privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Upublisert" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Oppdater" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Bruker" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Brukergrad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Brukere" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Synlig på nåværende nettsted" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Nettsted" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Nettsted-URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Når du fullfører et kurs eller en milepæl, vil du få tildelt medaljer." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "You can score more points by answering quizzes at the end of each course content. Points can also be earned on the forum. Follow this link to the guidelines of the forum." +msgstr "Du kan tjene flere poeng ved å svare på quizer på slutten av hvert kurssegment. Poeng kan også tjenes på forumet. Følg denne linken for å se retningslinjene for forumet." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "brødsmule" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "eller" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "poeng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "denne måneden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else ''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Brukere" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..6ff645b --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,752 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Niet ontvangen?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(niet geverifieerd)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Verzamel punten op het forum of op het e-learning platform. Deze punten " +"zorgen ervoor dat je nieuwe rang kan behalen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Probeer een andere zoekopdracht." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Badges bekomen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Annuleren" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "BEWERKEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Bewerken" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "PROFIEL BEWERKEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Alle badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Alle badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " toegekende gebruikers" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Huidige rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Aangesloten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Stad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Land" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Naam" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Openbaar profiel" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Gefeiciteerd! Jo e-mailadres is zojuist" +" bevestigd." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Rangschikken op:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Bevestiging profiel YourCompany\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hallo Marc Demo,

\n" +" Je bent uitgenodigd om je e-mailadres te bevestigen om toegang te krijgen tot de website van \"YourCompany\".\n" +" Klik op onderstaande link om je e-mailadres te bevestigen:\n" +"

\n" +" Hartelijk dank voor je deelname!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Aangeboden door Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corrigeer je e-mailadres" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Opnieuw verzenden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "hier" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Over" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Alle gebruikers" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Alle tijden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" +"Badges zijn een verzameling van je prestaties. Draag ze met trots!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Naast het verwerven van reputatie met je vragen en antwoorden,\n" +" ontvang je badges omdat je zeer behulpzaam bent.
1Badges\n" +"verschijnen op je profielpagina en in je berichten." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografie" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Kan publiceren" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Wissen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Afsluiten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Bewerken" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Wijzig profiel" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: E-mailverificatie" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamificatie badge" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Bekom" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Startpagina" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Hoe verdien ik badges?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Hoe behaal ik meer punten?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Is gepubliceerd" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Blijf leren met" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimale hoeveelheid karma om andere gebruikers hun profiel te zien" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobiele sub-nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Meer info" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Volgende rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Nog geen klassement :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Nog geen badges!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Geen gebruiker gevonden voor" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Niet genoeg karma om het profiel van andere gebruikers te bekijken." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Geef alsjeblieft een valide e-mailadres in om notificaties van antwoorden of" +" reacties te ontvangen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Keer terug naar de website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Zoeken" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Zoek gebruikers" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Verzonden naar forumbezoekers om hun e-mailadres te bevestigen" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "" +"De volledige URL om toegang tot het document te krijgen via de website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Deze maand" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Dit profiel is privé!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Deze week" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Niet gepubliceerd" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Bijwerken" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Gebruiker" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Gebruikersrang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Gebruikers" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Verificatie-e-mail verzonden naar" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Zichtbaar op huidige website" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Website URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Wanneer je een cursus af hebt of een milestone hebt bereikt wordt je beloond" +" met badges." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Schrijf een paar woorden over jezelf..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Je kunt meer punten scoren door de vragen te beantwoorden aan het einde van " +"elke cursus. Je kunt ook punten verdienen op het forum. Volg deze link naar " +"de regels van het forum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Je account is nog niet geverifieerd.
\n" +" Klik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"Er is geen e-mail ingesteld voor je account. Stel het alstublieft in op" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "kruimelpad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "of" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "deze maand" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "deze week" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "om een verificatie-e-mail te ontvangen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" om in level te stijgen!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "je accountinstellingen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profiel bevestiging" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Gebruikers" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..2cd1235 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +"Nie otrzymałeś go?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(niezweryfikowany)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Zbieraj punkty na forum lub na platformie eNauki. Te punkty pozwolą ci " +"osiągnąć nowe stopnie." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "Spróbuj innego wyszukiwania." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDYTUJ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Edytuj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDYTUJ PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "nagrodzeni użytkownicy" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Aktualna ranga:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Odznaki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Połączony" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Miasto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Kraj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nazwa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Witryna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Odznaki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Odznaki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "Gratulacje! Twój email został zweryfikowany." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Popraw swój adres e-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Wyślij ponownie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "tutaj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "O programie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Wszyscy użytkownicy" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Cały czas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Odznaki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Oprócz zdobywania reputacji dzięki pytaniom i odpowiedziom,\n" +"otrzymujesz odznaki za bycie szczególnie pomocnym.
Odznaki\n" +"pojawiają się na stronie profilu i w postach." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Można publikować" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Wyczyść" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zamknij" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Edytuj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Edycja profilu" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: Weryfikacja email" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Odznaka grywalizacji" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Dom" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Jak mogę zdobywać odznaki?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Jak zdobyć więcej punktów?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Opublikowane" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Kontynuuj naukę z" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimalna karma, aby zobaczyć profil innego użytkownika" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobilna nawigacja podrzędna" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Więcej informacji" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Następna Ranga;" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Nie ma jeszcze tabeli liderów :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Nie ma jeszcze odznak!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nie znaleziono użytkownika dla " + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Wprowadź prawidłowy adres e-mail, aby otrzymywać notyfikacje o odpowiedziach" +" i komentarzach" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rankingi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Powróć na stronę internetową." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Szukaj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Wyszukiwanie użytkowników" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Wysyłane do użytkowników forum w celu potwierdzenia adresu e-mail" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Pełny adres URL dostępu do dokumentu przez stronę." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ten miesiąc" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Ten profil jest prywatny!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Ten tydzień" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nieopublikowane" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Aktualizacja" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Użytkownik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Ranga użytkownika " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Użytkownicy" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Email weryfikacyjny wysłany do" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Widoczne na obecnej stronie" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Strona internetowa" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Adres strony internetowej" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Po ukończeniu kursu lub osiągnięciu kamieni milowych przyznawane są odznaki." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Możesz zdobyć więcej punktów, odpowiadając na quizy na końcu każdej treści " +"kursu. Punkty można również zdobywać na forum. Pod tym linkiem znajdują się " +"wytyczne dotyczące forum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Twoje konto nie zostało jeszcze zweryfikowane.
\n" +"Kliknij" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Twoje konto nie ma skonfigurowanego adresu e-mail. Skonfiguruj go na" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "okruszek" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "lub" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punkt" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "w tym miesiącu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "ten tydzień" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "aby otrzymać weryfikacyjną wiadomość e-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "ustawienia konta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Sprawdzanie poprawności profilu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Użytkownicy" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..81409ed --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,642 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Manuela Silva , 2023 +# Wil Odoo, 2023 +# Vasco Rodrigues, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Vasco Rodrigues, 2024\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " utilizadores recompensados" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Crachás" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Pode publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Limpar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Fechar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editar Perfil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Início" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Por favor insira um endereço de e-mail válido para receber notificações de " +"respostas ou comentários." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Procurar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "O URL completo para aceder ao documento através do Website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Este mês" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Este perfil é privado!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Não Publicada" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Atualizar" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Utilizador" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilizadores" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visível no website atual" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL do Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ou" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "este mês" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..471a743 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,745 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# 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:56+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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Não recebeu?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(não verificado)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Acumule pontos no fórum ou na plataforma de aprendizado online. Esses " +"pontos farão você alcançar novas classificações." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Tente outra busca." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Ganhe medalhas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Cancelar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Todos os emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Todos os emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " usuários premiados" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Classificação atual:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Ingressou" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Cidade" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "País" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Nome" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Perfil público" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Site" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Parabéns! Seu e-mail foi " +"validado." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Classificação por:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" SuaEmpresa - Validação do perfil\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Olá Marcos Diniz,

\n" +" Você deve validar o seu e-mail para ter acesso ao site da “SuaEmpresa”.\n" +" Para validar o e-mail, clique no link a seguir:\n" +"

\n" +" Agradecemos pela sua participação!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" SuaEmpresa\n" +" \n" +" +55 81 9999 9999\n" +" \n" +" | info@suaempresa.com\n" +" \n" +" \n" +" | http://www.exemplo.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Corrija o seu endereço de e-mail" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Envie novamente" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "aqui" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Sobre" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Todos os usuários" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "O tempo todo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "As medalhas são sua coleção de conquistas. Use-as com orgulho!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Além de ganhar reputação com suas perguntas e respostas,\n" +" você recebe emblemas por ajudar.
Os emblemas\n" +" aparecem em sua página de perfil e em suas publicações." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Pode publicar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Limpar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Fechar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editar perfil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Fórum: verificação de e-mail" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Emblema de gamificação" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Obtenha" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Início" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Como faço para ganhar emblemas?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Como faço para acumular mais pontos?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Está publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Continue aprendendo com" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma mínimo para ver o perfil de outro usuário" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Sub-nav em dispositivo móvel" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Mais informações" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Próxima classificação:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Nenhum placar atualmente :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Nenhum emblema ainda!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nenhum usuário encontrado para" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Não há karma suficiente para ver perfis de outros usuários." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Insira um endereço de e-mail válido para receber notificações de respostas " +"ou comentários." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Classificações" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Retorne ao site." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Pesquisar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Pesquisar usuários" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Enviado a visitantes do fórum para que confirmem seus e-mails" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "O URL completo para acessar o documento através do site." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Este mês" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Este perfil é privado." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Não publicado" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Atualizar" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Usuário" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Classificação do usuário" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuários" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "E-mail de verificação foi enviado para" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visível neste site" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Site" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL do site" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Quando você termina um curso ou atinge marcos, você recebe emblemas." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Escreva algumas palavras sobre você…" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Você pode acumular mais pontos respondendo a questionários ao final de cada " +"conteúdo do curso. Os pontos também podem ser acumulados no fórum. Siga este" +" link para ver as orientações do fórum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Sua conta ainda não foi verificada.
\n" +"Clique" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "A sua conta ainda não tem um e-mail. Configure em" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "trilha de navegação" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ou" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "ponto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "este mês" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "esta semana" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "para receber um e-mail de verificação." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" para subir de nível!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "suas configurações de conta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "Validação de perfil: {{ object.company_id.name }} " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuários" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..290f873 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,603 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Foldi Robert , 2022 +# Cozmin Candea , 2022 +# Martin Trigaux, 2022 +# Hongu Cosmin , 2022 +# Dorin Hongu , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0beta\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-05-16 13:50+0000\n" +"PO-Revision-Date: 2022-09-22 05:57+0000\n" +"Last-Translator: Dorin Hongu , 2023\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(nu e verificat)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid ". Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Încercați o altă căutare." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "utilizatori premiați" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Insigne" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Congratulations! Your email has just been validated." +msgstr "Felicitări! E-mail-ul dumneavoastră a fost validat." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Despre" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Toți utilizatorii" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Insigne" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Pe lângă câștigarea reputației cu întrebările și răspunsurile dumneavoastră,\n" +"primiți insigne deoarece ați fost deosebit de util.
Insignele\n" +"apar pe pagina profilului dumneavoastră și în postări." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografie" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Poate Publica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Golește" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Închide" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editare" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Editează profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Insignă Competiție" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Acasă" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Cum câștig insigne?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Cum scot mai multe puncte?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Este Publicat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Continuați să învățați cu" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma minimă pentru a vedea profilul altui utilizator" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Sub-nav mobil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Alte informații" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Următorul rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Nu există ecusoane încă!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nu a fost găsit niciun utilizator pentru" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Please enter a valid email address in order to receive notifications from answers or comments." +msgstr "Vă rugăm să introduceți o adresă de e-mail validă pentru a primi notificări de la răspunsuri sau comentarii." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Ranguri" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "Return to the website." +msgstr "Reveniți pe site-ul web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Caută" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Căutați cursuri" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Căutați utilizatori" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL-ul complet pentru accesarea documentului prin intermediul site-ului web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Luna aceasta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Acest profil este privat!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Săpt. curentă" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nepublicat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Actualizare" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Operator" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rangul utilizatorului" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilizatori" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Vizibil pe site-ul curent" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Pagină web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Când terminați un curs sau ajungeți la repere, vi se acordă insigne." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "You can score more points by answering quizzes at the end of each course content. Points can also be earned on the forum. Follow this link to the guidelines of the forum." +msgstr "Puteți înscrie mai multe puncte răspunzând la întrebări la sfârșitul fiecărui curs. Punctele pot fi câștigate și pe forum. Urmați acest link către liniile directoare ale forumului." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "breadcrumb" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "sau" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "punct" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "luna aceasta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "această săptămână" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else ''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..9c1a6c2 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,751 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Сергей Шебанин , 2023 +# Irina Fedulova , 2023 +# Collex100, 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Не получили?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(не проверено)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Набирайте очки на форуме или на платформе электронного обучения. Эти баллы" +" позволят вам достичь новых рангов." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Попробуйте другой поиск." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " Получить значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "Отмена" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDIT" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Редактировать" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "РЕДАКТИРОВАТЬ ПРОФИЛЬ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "Все значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Все значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " награжденные пользователи" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Текущее место:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Присоединился" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Биография" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Город" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Страна" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Электронная почта" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Имя" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "Публичный профиль" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Сайт" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Поздравляем! Ваш e-mail только что был " +"подтвержден." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "Ранг по:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" Проверка профиля вашей компании \n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Здравствуйте, Марк Демо,

\n" +" Для получения доступа к сайту\"YourCompany\" вам было предложено подтвердить свою электронную почту.\n" +" Чтобы подтвердить свою электронную почту, пожалуйста, перейдите по следующей ссылке:\n" +"

\n" +" Спасибо за участие!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Работает на Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Исправьте свой адрес электронной почты" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Отправить снова" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "здесь" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "О нас" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Все пользователи" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Все время" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "Значки - это коллекция ваших достижений. Носите их с гордостью!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Помимо того, что вы зарабатываете репутацию своими вопросами и ответами,\n" +" вы получаете значки за особую полезность.
Значки\n" +" отображаются на странице вашего профиля и в ваших сообщениях." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Биография" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Можно опубликовать" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Очистить" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Закрыть" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Редактировать" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Редактировать профиль" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Форум: Верификация электронной почты" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Значок геймификации" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "Получить" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Главная" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Как заработать значки?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Как набрать больше очков?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Опубликовано" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Продолжайте учиться вместе с" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Минимальная карма для просмотра профиля другого пользователя" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Мобильная вкладка" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Больше информации" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Навигация" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Следующий ранг:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Пока нет таблицы лидеров :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Значков пока нет!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Пользователь не найден для" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "Не хватает кармы для просмотра профиля других пользователей." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Введите действительный адрес электронной почты, чтобы получать уведомления " +"об ответах или комментариях." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Ранги" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Вернуться на сайт." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Поиск" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Поиск пользователей" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Отправляется посетителям форума для подтверждения почтового адреса" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Полный URL-адрес для доступа к документу через веб-сайт." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Этот месяц" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Этот профиль является частным!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Эта неделя" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Неопубликованный" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Обновить" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Пользователь" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Ранг пользователя" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Пользователи" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Письмо с подтверждением отправлено на" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Видимый на текущем веб-сайте" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Сайт" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Адрес сайта" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Когда вы заканчиваете курс или достигаете этапов, вы получаете значки." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "Напишите несколько слов о себе..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Вы можете набрать больше баллов, отвечая на вопросы викторины в конце " +"каждого материала курса. Баллы также можно заработать на форуме. Перейдите " +"по этой ссылке, чтобы ознакомиться с правилами форума." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Ваша учетная запись еще не проверена.
\n" +" Нажмите" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"В вашей учетной записи не настроена электронная почта. Пожалуйста, " +"установите его на" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "хлебные крошки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "или" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "балл" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "в этом месяце" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "на этой неделе" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "чтобы получить письмо с подтверждением" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" для повышения уровня!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "настройки вашей учетной записи" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Проверка профиля" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Пользователи" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..8c93e07 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,640 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " ocenený používatelia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Približne" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Všetci používatelia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Odmena" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografia" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Môžete publikovať" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Zmazať" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zatvoriť" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Upraviť" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Upraviť profil" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Ocenenie gemifikácie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Domov" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Publikované" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Viac informácií" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Prosím zadajte platnú emailovú adresu aby ste dostávali notifikácie z " +"odpovedí alebo komentárov." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Vyhľadávanie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Úplná URL na prístup k dokumentu cez webové stránky." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Tento mesiac" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Tento profil je súkromný!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Tento týždeň" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Nepublikované" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Aktualizácia" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Užívateľ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Užívatelia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Viditeľné na aktuálnej webstránke" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Webstránka" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL Webstránok" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "breadcrumb" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "alebo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "tento mesiac" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..afb3f0e --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,661 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Jasmina Macur , 2023 +# Matjaz Mozetic , 2023 +# matjaz k , 2023 +# Grega Vavtar , 2023 +# Martin Trigaux, 2023 +# Tomaž Jug , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tomaž Jug , 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Ga niste prejeli?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(ni preverjeno)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Zbirajte točke na forumu ali na platformi za e-učenje. S temi točkami " +"boste dosegli nove range." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Poskusite z drugim iskanjem." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "UREJANJE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "UREJANJE PROFILA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " nagrajeni uporabniki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Trenutni rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Značke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Pridružen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biografija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Mesto" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Država" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "E-pošta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Ime" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Spletna stran" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Značke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Značke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Čestitamo! Vaše e-poštno sporočilo je " +"bilo pravkar potrjeno." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Popravite svoj e-poštni naslov" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Pošlji ponovno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "tukaj" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "O bazi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Vsi uporabniki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Vse" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Priponke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Poleg tega, da si z vprašanji in odgovori pridobivate ugled,\n" +" prejmete tudi značke za posebno pomoč.
Značke\n" +" so prikazane na vaši profilni strani in v vaših objavah." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biografija" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Lahko objavite" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Počisti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zaključi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Uredi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Urejanje profila" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: Preverjanje e-pošte" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Značka za igrifikacijo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Domov" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Kako si zaslužim značke?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Kako lahko dosežem več točk?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Je objavljen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Nadaljuj z učenjem z" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimalna karma za ogled profila drugega uporabnika" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobilna podnavigacija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Več informacij" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Navigacija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Naslednji rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Še ni lestvice :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Ni še značk!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Ni bil najden noben uporabnik za" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Vnesite veljaven e-poštni naslov, da boste lahko prejemali obvestila o " +"odgovorih ali komentarjih." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Ranki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Vrnitev na spletno stran." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Iskanje" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Iskanje uporabnikov" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Poslano obiskovalcem foruma za potrditev njihovega poštnega naslova" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Polna URL povezava za dostop do dokumenta preko spletne strani." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ta mesec" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Ta profil je zaseben!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Ta teden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Neobjavljeno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Posodobi" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Uporabnik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Rang uporabnika" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Uporabniki" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "E-poštno sporočilo za preverjanje, poslano na" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Vidno na trenutni spletni strani" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Spletna stran" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL spletne strani" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Ko končate tečaj ali dosežete mejnike, prejmete značke." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Več točk lahko dosežete z odgovarjanjem na kvize ob koncu vsake vsebine " +"tečaja. Točke lahko zbirate tudi na forumu. Sledite tej povezavi do smernic " +"foruma." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Vaš račun še ni bil preverjen.
\n" +" Kliknite" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Vaš račun nima nastavljenega e-poštnega naslova. Nastavite ga na" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "dobtinice" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ali" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "točka" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "ta mesec" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "ta teden" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "za prejem potrditvenega e-poštnega sporočila" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "nastavitve računa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Potrditev profila" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Uporabniki" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..536bfae --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,658 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2023 +# Uros Kalajdzic , 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Did not receive it?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(not verified)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Pokušajte drugu pretragu." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDIT" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Uredi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDIT PROFILE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " nagrađeni korisnici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Current rank:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Joined" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biography" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "City" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Country" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Name" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Congratulations! Your email has just " +"been validated." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Correct your email address" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Pošalji ponovo" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "here" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "O" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "All Users" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "All time" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Bedževi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biography" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Može da objavljuje" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Obriši" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Zatvori" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Uredi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Edit Profile" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: Email Verification" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamifikacija Bedž" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Početak" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "How do I earn badges?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "How do I score more points?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Je objavljeno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Keep learning with" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Minimal karma to see other user's profile" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobilna sub-navigacija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Više informacija" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Naredni nivo:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "No Leaderboard Yet :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "No badges yet!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Nije pronađen korisnik za" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rangovi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Return to the website." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Pronađi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Pretraži korisnike" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Sent to forum visitors to confirm their mail address" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Kompletna URL adresa za pristup dokumentima putem website-a." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Ovaj mesec" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "This profile is private!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "This week" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Neobjavljeno" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Ažuriraj" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Korisnik" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Nivo korisnika" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Korisnici" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Verification Email sent to" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Vidljivo na trenutnom website-u" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Website URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "When you finish a course or reach milestones, you're awarded badges." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Your Account has not yet been verified.
\n" +" Click" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Your account does not have an email set up. Please set it up on" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "breadcrumb" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "ili" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "point" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "this month" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "this week" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "to receive a verification email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "your account settings" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profile validation" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Users" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..573b127 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,646 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Mikael Åkerberg , 2023 +# Robin Chatfield , 2023 +# Chrille Hedberg , 2023 +# 03992e16f8df6e39b9d1cc0ff635887e, 2023 +# Kim Asplund , 2023 +# Anders Wallenquist , 2023 +# Martin Trigaux, 2023 +# Lasse L, 2023 +# Jakob Krabbe , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jakob Krabbe , 2024\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Redigera" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " tilldelade användare" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Om" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Utmärkelser" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Kan publicera" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Töm" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Stäng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Redigera" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Utmärkelse Gamification" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Hem" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Är publicerad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobil undermeny" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Mera info" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Navigation" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Nästa nivå:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Sök" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Fullständig URL för åtkomst av dokument via webbplatsen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Denna månad" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Denna vecka" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Opublicerad" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Uppdatera" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Användare" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Användare" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Synlig på vald webbplats" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Webbplats" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Webbplatsens URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "synlig sökväg" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "eller" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "denna vecka" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..45d308c --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,745 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2024\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" ไม่ได้รับมันเหรอ?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(ไม่ได้รับการยืนยัน)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +"สะสมคะแนนในฟอรั่มหรือบนแพลตฟอร์ม eLearning " +"คะแนนเหล่านั้นจะทำให้คุณไปถึงอันดับใหม่" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "ลองค้นหาอีกครั้ง" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " รับเหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "แก้ไข" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "แก้ไข" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "แก้ไขโปรไฟล์" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "เหรียญรางวัลทั้งหมด" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " เหรียญรางวัลทั้งหมด" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "ผู้ใช้ที่ได้รับรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "อันดับปัจจุบัน:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "เหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "เข้าร่วม" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "ชีวประวัติ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "เมือง" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "ประเทศ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "อีเมล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "ชื่อ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "โปรไฟล์สาธารณะ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "เว็บไซต์" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "เหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "เหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"ยินดีด้วย! " +"อีเมลของคุณเพิ่งได้รับการตรวจสอบ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "จัดอันดับตาม:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" การตรวจสอบโปรไฟล์ YourCompany\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" เรียน Marc Demo,

\n" +" คุณได้รับเชิญให้ตรวจสอบอีเมลของคุณเพื่อเข้าถึงเว็บไซต์ \"YourCompany\"\n" +" หากต้องการตรวจสอบอีเมลของคุณ โปรดคลิกลิงก์ต่อไปนี้:\n" +"

\n" +" ขอขอบคุณสำหรับการเข้าร่วมของคุณ!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" สนับสนุนโดย Odoo\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "แก้ไขที่อยู่อีเมลของคุณ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "ส่งอีกครั้ง" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "ที่นี่" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "เกี่ยวกับ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "ผู้ใช้ทั้งหมด" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "เวลาทั้งหมด" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "เหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "เหรียญรางวัลคือชุดสะสมความสำเร็จของคุณ สวมใส่อย่างภาคภูมิใจ!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"นอกจากการได้รับชื่อเสียงจากคำถามและคำตอบของคุณแล้ว\n" +" คุณได้รับเหรียญรางวัลสำหรับการให้ความช่วยเหลือเป็นพิเศษ
เหรียญรางวัล\n" +" จะปรากฏบนหน้าโปรไฟล์ของคุณและโพสต์ของคุณ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "ชีวประวัติ" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "สามารถเผยแพร่" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "ล้าง" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "ปิด" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "แก้ไข" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "แก้ไขโปรไฟล์" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "ฟอรั่ม: การยืนยันอีเมล" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "เหรียญรางวัลในรูปแบบเกม" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "รับ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "โฮม" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "ฉันจะรับเหรียญรางวัลได้อย่างไร?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "ฉันจะทำคะแนนให้มากขึ้นได้อย่างไร?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "เผยแพร่" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "เรียนรู้ต่อไปกับ" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma ขั้นต่ำเพื่อดูโปรไฟล์ของผู้ใช้รายอื่น" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "การนำทางย่อยบนมือถือ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "ข้อมูลเพิ่มเติม" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "อันดับต่อไป:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "ยังไม่มีกระดานผู้นำ :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "ยังไม่มีเหรียญรางวัล!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "ไม่พบผู้ใช้สำหรับ" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "มี Karma ไม่เพียงพอที่จะดูโปรไฟล์ของผู้ใช้รายอื่น" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"โปรดป้อนที่อยู่อีเมลที่ถูกต้องเพื่อรับการแจ้งเตือนจากคำตอบหรือความคิดเห็น" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "อันดับ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "กลับไปที่เว็บไซต์" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "ค้นหา" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "ค้นหาผู้ใช้" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "ส่งไปยังผู้เยี่ยมชมฟอรั่มเพื่อยืนยันที่อยู่อีเมลของพวกเขา" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL แบบเต็มเพื่อเข้าถึงเอกสารผ่านเว็บไซต์" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "เดือนนี้" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "โปรไฟล์นี้เป็นส่วนตัว!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "สัปดาห์นี้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "ยกเลิกการเผยแพร่" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "อัปเดต" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "ผู้ใช้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "อันดับผู้ใช้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "ผู้ใช้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "ส่งอีเมลยืนยันไปที่" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "ปรากฏบนเว็บไซต์ปัจจุบัน" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "เว็บไซต์" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "เว็บไซต์ URL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "เมื่อคุณเรียนจบหลักสูตรหรือบรรลุเป้าหมายสำคัญ คุณจะได้รับเหรียญรางวัล" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "เขียนคำสองสามคำเกี่ยวกับตัวคุณ..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"คุณสามารถทำคะแนนได้มากขึ้นโดยตอบคำถามท้ายเนื้อหาแต่ละคอร์ส " +"สามารถรับคะแนนได้จากฟอรั่ม ติดตามลิงก์นี้ไปยังแนวทางปฏิบัติของฟอรั่ม" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"บัญชีของคุณยังไม่ได้รับการยืนยัน
\n" +" คลิก" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "บัญชีของคุณไม่ได้ตั้งค่าอีเมล โปรดตั้งค่าบน" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "เกล็ดขนมปัง" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "หรือ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "คะแนน" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "เดือนนี้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "สัปดาห์นี้" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "เพื่อรับอีเมลยืนยัน" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" เพื่อเพิ่มเลเวล!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "การตั้งค่าบัญชีของคุณ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }}การตรวจสอบโปรไฟล์" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ ผู้ใช้" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..9a772ca --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,668 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Ramiz Deniz Öner , 2023 +# Umur Akın , 2023 +# Gökhan Erdoğdu , 2023 +# Saban Yildiz , 2023 +# Halil, 2023 +# Ediz Duman , 2023 +# Levent Karakaş , 2023 +# Buket Şeker , 2023 +# Murat Kaplan , 2023 +# Martin Trigaux, 2023 +# abc Def , 2023 +# Tugay Hatıl , 2023 +# Murat Durmuş , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Murat Durmuş , 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Almadınız mı?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(Doğrulanmadı)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Forumda veya e-Öğrenim platformunda puan toplayın. Bu puanlar yeni " +"seviyelere ulaşmanızı sağlayacaktır." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Başka bir arama yapmayı deneyin." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "DÜZENLE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Düzenle" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "PROFİLİ DÜZENLE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " ödül kazanan kullanıcılar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Mevcut sıralama:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Rozetler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Katıldı" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Biyografi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Şehir" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Ülke" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Eposta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Adı" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Website" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Rozetler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Rozetler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Tebrikler! E-postanız " +"doğrulandı." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "E-posta adresinizi düzeltin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Tekrar Gönder" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "Burada" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Hakkında" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Tüm Kullanıcılar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Tüm Zaman" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Rozetler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Sorularınız ve cevaplarınızla itibar kazanmanın yanı sıra özellikle yardımcı" +" olduğunuz için rozetler alırsınız.
Rozetler profil sayfanızda ve gönderilerinizde görünür." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Biyografi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Yayınlanabilir" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Temizle" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Kapat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Düzenle" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Profili Düzenle" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Forum: E-posta Doğrulaması" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Oyunlaştırma Rozeti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Ana Sayfa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Rozetleri nasıl kazanabilirim?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Nasıl daha fazla puan kazanırım?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Yayınlandı" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "İle öğrenmeye devam et" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Diğer kullanıcıların profilini görmek için en az karma" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobil alt navigasyon" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Daha Fazla Bilgi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Gezinme" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Sonraki sıralama:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Henüz Skor Tahtası Yok :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Henüz rozet yok!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "İçin kullanıcı bulunamadı" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Cevap ya da yorumlardan bildirim almak için lütfen geçerli bir e-posta " +"adresi giriniz." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Rütbeler" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Web sitesine dön." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Arama" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Kullanıcı ara" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "Posta adreslerini doğrulamak için forum ziyaretçilerine gönderildi" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Web sitesi aracılığıyla belgeye erişmek için tam URL." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Bu Ay" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Bu profil özeldir!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Bu Hafta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Yayında Değil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Güncelle" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Kullanıcı" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Kullanıcı sıralaması" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Kullanıcılar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Doğrulama E-postası şuraya gönderildi:" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Mevcut web sitesinde görülebilir" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Websitesi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "Web Sitesi URL Adresi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Bir kursu bitirdiğinizde veya kilometre taşlarına ulaştığınızda, size " +"rozetler verilir." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Her dersin sonunda sınavlara cevap vererek daha fazla puan alabilirsiniz. " +"Puanlar forumda da kazanılabilir. Forumun yönergeleri için bu bağlantıyı " +"izleyin." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Hesabınız henüz doğrulanmadı.
\n" +" Tıkla" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "Hesabınızda bir e-posta kurulumu yok. Lütfen şuraya kurun:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "içerik haritası" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "veya" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "nokta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "bu ay" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "bu hafta" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "doğrulama e-postası almak için" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "hesap ayarlarınız" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Profil doğrulama" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└Kullanıcılar" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..d663248 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,658 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" Не отримали його?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(не підтверджено)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Збирайте бали на форумі або на платформі електронного навчання. Ці бали " +"допоможуть вам досягати нові звання." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Спробуйте інший пошук." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "РЕДАГУВАТИ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Редагувати" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "РЕДАГУАТИ ПРОФІЛЬ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " нагороджені користувачі" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "Поточне звання:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Приєднався" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Біографія" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Місто" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Країна" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "Email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Ім'я" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Вітаємо! Ваш email щойно " +"підтвердили." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "Відкоригуйте вашу адресу електронної пошти" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "Надіслати знову" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "тут" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Про" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Усі користувачі" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Увесь час" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Значки" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Крім того, щоб завоювати репутацію своїми питаннями та відповідями,\n" +" ви отримаєте значки, щоби стати особливо корисним.
Значки\n" +" з'являються на вашій сторінці профілю та публікаціях." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Біографія" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Можна опублікувати" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Очистити" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Закрити" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Редагувати" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Редагувати профіль" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "Форум: Email-підтвердження" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Геміфікація значка" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Головна" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Як заробити значки?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Як мені набрати більше балів?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Опубліковано" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Продовжіть навчання з" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Мінімальна карма для того, аби бачити профілі інших користувачів" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Mobile sub-nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Більше інформації" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Nav" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Наступне звання:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "Ще немає таблиці лідерів :(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Ще немає значків!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Не знайдено користувачів" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Будь ласка, введіть дійсну електронну адресу, щоб отримувати сповіщення від " +"відповідей або коментарів." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Звання" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Поверніться на веб-сайт." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Пошук" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Пошук користувачів" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" +"Надсилається відвідувачам форуму для підтвердження своєї електронної адреси" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL-адреса повністю, для доступу до документації через сайт." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Цього місяця" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Цей профіль є приватним!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Цього тижня" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Неопубліковано" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Оновити" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Користувач" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Звання користувача" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Користувачі" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "Email-підтвердження надіслане" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Видимий на поточному веб-сайті" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL сайту" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "Після завершення курсу або досягнення мети ви отримаєте значки." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Ви можете набрати більше балів, відповівши на вікторини в кінці кожного " +"змісту курсу. Бали також можна заробити на форумі. Дотримуйтесь цього " +"посилання на рекомендації форуму." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"Ваш обліковий запис ще не підтверджено.
\n" +" Натисніть" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" +"У вашому обліковому записі не налаштовано електронну адресу. Будь ласка, " +"налаштуйте її" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "Хлібні крихти" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "або" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "бал" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "цього місяця" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "цього тижня" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "для отримання email-підтвердження" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "налаштування вашого облікового запису" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Валідація профілю" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Users" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..6a8bd29 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,653 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# Thi Huong Nguyen, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Thi Huong Nguyen, 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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(chưa xác nhận)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" +". Thu thập điểm trên diễn đàn hoặc nền tảng học trực tuyến eLearning. Những " +"điểm này sẽ giúp bạn đạt thứ hạng mới. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". Thử tìm kiếm khác. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "Chỉnh sửa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " người dùng được thưởng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "Huy hiệu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" +"Xin chúc mừng! Email của bạn đã được " +"xác nhận." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "Về chúng tôi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "Tất cả người dùng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "Mọi lúc" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Huy chương" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"Ngoài việc có được danh tiếng nhờ câu hỏi và câu trả lời,\n" +" bạn còn nhận được huy hiệu vì đã giúp ích cho cộng đồng.
Huy hiệu\n" +" xuất hiện ở trang hồ sơ và các bài đăng của bạn. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "Tiểu sử" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Có thể đăng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Xoá" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Đóng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Chỉnh sửa" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Sửa hồ sơ" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Huy hiệu Gamification" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Trang chủ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Làm cách nào để nhận được huy hiệu? " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "Làm cách nào để ghi được nhiều điểm? " + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Được đăng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "Tiếp tục học với " + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "Karma tối thiểu để xem hồ sơ người dùng khác" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "Điều hướng phụ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Thêm thông tin" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "Điều hướng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "Hạng kế tiếp:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "Chưa có huy hiệu!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "Không tìm thấy người dùng cho" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" +"Vui lòng nhập địa chỉ email hợp lệ để nhận thông báo từ câu trả lời hoặc " +"nhận xét." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Ranks" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "Quay lại website. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "Tìm kiếm" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "Tìm kiếm người dùng" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL đầy đủ để truy cập tài liệu thông qua trang web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Tháng này" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "Hồ sơ này là riêng tư!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "Tuần này" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "Chưa xuất bản" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Cập nhật" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "Người dùng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Thứ hạng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Người dùng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Hiển thị trên trang web hiện tại" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Trang web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL trang web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" +"Khi bạn hoàn thành một khóa học hoặc tới một mốc nào đó, bạn sẽ được trao " +"tặng huy hiệu. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" +"Bạn có thể ghi điểm bằng cách trả lời câu hỏi ở cuối mỗi bài học. Bạn cũng " +"có thể giành thêm điểm ở diễn đàn. Đi theo liên kết này để xem hướng dẫn của" +" diễn đàn. " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "thanh điều hướng" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "hay" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "điểm" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "tháng này" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "tuần này" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} Xác nhận hồ sơ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Người dùng" diff --git a/i18n/website_profile.pot b/i18n/website_profile.pot new file mode 100644 index 0000000..2afe68c --- /dev/null +++ b/i18n/website_profile.pot @@ -0,0 +1,634 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..d39f1c1 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,736 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023 +# 湘子 南 <1360857908@qq.com>, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: 湘子 南 <1360857908@qq.com>, 2024\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: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" 没有收到吗?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(未验证)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr ".在论坛或在线学习平台上收集积分。这些点将使您达到新的等级。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ".尝试其他搜索。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr " 获取徽章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "取消" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "编辑" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr "编辑" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "编辑个人资料" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr "所有奖章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "所有奖章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " 授予用户" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "当前排名:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "徽标" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "加入" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "履历" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "城市" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "国家" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "电子邮件" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "名称" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "公众简介" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "网站" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "徽标" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "徽标" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "恭喜!您的电子邮件刚刚经过验证." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "排名:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany 个人档案验证\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Marc Demo您好!

\n" +" 验证您的电子邮件,以便访问 \"YourCompany\" 网站。 要验证您的电子邮件,请点击以下链接:\n" +"

\n" +" 谢谢您的参与!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" 由 ERP驱动\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "更正您的电子邮件地址" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "再次发送" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "这里" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "关于" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "所有用户" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "整天" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "徽标" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "徽章是您的成就收藏。骄傲地佩戴它们吧!
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"除了通过您的问题和答案获得声誉外,\n" +" 您会因为特别有帮助而获得徽标。
徽标\n" +" 现在您的个人资料网页和您的帖子上。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "传记" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "可以发布" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "清除" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "关闭" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "编辑" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "编辑个人资料" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "论坛:电子邮件验证" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "游戏化徽标" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "获得" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "首页" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "我如何获得徽标?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "如何获得更多积分?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "已发布" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "继续学习" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "查看其他用户个人资料的最少贡献值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "流动子导航" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "更多信息" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "导航" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "下一个排名:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "还没有排行榜:(" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "还没有徽标!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "找不到用户" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "没有足够的业力查看其他用户的个人资料。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "为了接收回复通知,请输入正确的邮箱地址。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "等级" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "返回网站。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "搜索" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "搜索用户" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "发送给论坛访客以确认他们的邮件地址" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "通过网站访问文档的完整网址。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "本月" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "此个人资料是私人的!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "本周" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "未发布" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "更新" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "用户" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "用户等级" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "用户" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "验证电子邮件发送给" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "在当前网站显示" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "网站" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "网站网址" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "当您完成课程或达到里程碑时,您将获得徽标。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "写几句关于你自己的话..." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "经验值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "您可以通过在每个课程内容结束时回答测验来获得更多分数。也可以在论坛上获得积分。按照此链接访问论坛的指南。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"您的帐户尚未验证。
\n" +" 点击" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "您的帐户没有设置电子邮件. 请设置在" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "浏览路径" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "或" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "积分" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "本月" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "本周
" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "接收验证电子邮件" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "经验值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"分\n" +" 即可升级!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "您的账户设置" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s 分' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} 个人资料验证" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ 用户" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..2fa57b4 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,734 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"!
\n" +" Did not receive it?" +msgstr "" +"!
\n" +" 沒有收到?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "(not verified)" +msgstr "(未核實)" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +". Collect points on the forum or on the eLearning platform. Those points " +"will make you reach new ranks." +msgstr ".在論壇或電子學習平臺上獲取積分。這些點將讓你提升等級。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid ". Try another search." +msgstr ". 請嘗試其他搜尋條件." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Get Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Cancel" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr " 編輯" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Edit" +msgstr " 編輯" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr " 編輯個人檔案" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "All Badges" +msgstr " 所有獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " 所有獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " 授予使用者" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Current rank:" +msgstr "目前排名:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "加入時間" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "個人簡介" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "城市" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "國家 / 地區" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Email" +msgstr "電郵" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "名字" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public Profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "網站" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "經驗值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Badges" +msgstr "獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "經驗值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Congratulations! Your email has just " +"been validated." +msgstr "恭喜您!您的電子郵件剛剛經過驗證。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "Rank by:" +msgstr "排名依據:" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany Profile validation\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello Marc Demo,

\n" +" You have been invited to validate your email in order to get access to \"YourCompany\" website.\n" +" To validate your email, please click on the following link:\n" +"

\n" +" Thanks for your participation!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Powered by Odoo\n" +"
\n" +"
\n" +" " +msgstr "" +"\n" +"\n" +"\n" +"
\n" +"\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" \n" +" YourCompany 個人檔案驗證\n" +" \n" +" \n" +" \n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Marc Demo 你好!

\n" +" 請驗證你的電子郵件地址,以便讓你存取「YourCompany」網站。
\n" +" 要驗證電郵地址,請按以下連結:\n" +"

\n" +" 謝謝你參與!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" YourCompany\n" +" \n" +" +1 650-123-4567\n" +" \n" +" | info@yourcompany.com\n" +" \n" +" \n" +" | http://www.example.com\n" +" \n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" 由 Odoo 驅動\n" +"
\n" +"
\n" +" " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Correct your email address" +msgstr "更正你的電郵地址" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Send Again" +msgstr "重新傳送" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "here" +msgstr "此處" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "About" +msgstr "關於" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All Users" +msgstr "所有用戶" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "All time" +msgstr "所有時間 " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Badges are your collection of achievements. Wear them proudly!
" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "" +"Besides gaining reputation with your questions and answers,\n" +" you receive badges for being especially helpful.
Badges\n" +" appear on your profile page, and your posts." +msgstr "" +"除了通過您的問題和答案贏得聲譽之外,您還會因特別有幫助而獲得成就。
成就將顯示在您的個人資料頁面和您的貼文上。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Biography" +msgstr "傳記" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "可以發佈" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "清除" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "關閉" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "編輯" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "編輯個人簡介" + +#. module: website_profile +#: model:mail.template,name:website_profile.validation_email +msgid "Forum: Email Verification" +msgstr "討論區:電郵驗證" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "遊戲化獎章" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "Get" +msgstr "取得" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "主頁" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "如何獲取成就?" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I score more points?" +msgstr "如何獲得更多分數?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "已發佈" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Keep learning with" +msgstr "永續學習由" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_website__karma_profile_min +msgid "Minimal karma to see other user's profile" +msgstr "查看其他用戶個人資料的最小活躍點數" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Mobile sub-nav" +msgstr "流動子導航" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "更多資訊" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Nav" +msgstr "導航" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Next rank:" +msgstr "下一個等級:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_main +msgid "No Leaderboard Yet :(" +msgstr "未有排行榜。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "No badges yet!" +msgstr "尚未獲得成就!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_content +msgid "No user found for" +msgstr "未找到使用者" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "Not have enough karma to view other users' profile." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "" +"Please enter a valid email address in order to receive notifications from " +"answers or comments." +msgstr "為了接收回覆通知,請輸入正確的郵箱地址。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "等級" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_access_denied +msgid "Return to the website." +msgstr "返回網站." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search" +msgstr "搜尋" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +msgstr "搜尋使用者" + +#. module: website_profile +#: model:mail.template,description:website_profile.validation_email +msgid "Sent to forum visitors to confirm their mail address" +msgstr "傳送給討論區訪客,以確認他們的電郵地址" + +#. module: website_profile +#: model:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "通過網站存取此文件的完整網址." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "本月" + +#. module: website_profile +#. odoo-python +#: code:addons/website_profile/controllers/main.py:0 +#, python-format +msgid "This profile is private!" +msgstr "此簡介是私人的!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This week" +msgstr "本周" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "Unpublished" +msgstr "未公開" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "更新" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +msgid "User" +msgstr "使用者" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "使用者等級" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "使用者" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Verification Email sent to" +msgstr "驗證電郵已發送至" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "在當前網站可見" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "網站" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "網站網址" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "When you finish a course or reach milestones, you're awarded badges." +msgstr "當您完成課程或達到里程碑時,您將獲得成就。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_biography_editor +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Write a few words about yourself..." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "XP" +msgstr "XP" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "" +"You can score more points by answering quizzes at the end of each course " +"content. Points can also be earned on the forum. Follow this link to the " +"guidelines of the forum." +msgstr "您可以通過在每個課程結束時回答測驗來獲取更多積分。也可以在論壇上賺取積分。請按照此連結連結到論壇指南。" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"Your Account has not yet been verified.
\n" +" Click" +msgstr "" +"你的帳戶尚未驗證。
\n" +" 請按" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Your account does not have an email set up. Please set it up on" +msgstr "你的帳戶未有設定電郵地址。請設定在" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "頁面路徑" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "or" +msgstr "或" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "point" +msgstr "點" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this month" +msgstr "本月" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "this week" +msgstr "本星期" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "to receive a verification email" +msgstr "以收取驗證電郵" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"xp\n" +" to level up!" +msgstr "" +"xp\n" +" 便可晉級!" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "your account settings" +msgstr "你的帳戶設定" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.profile_next_rank_card +msgid "" +"{{ '%s/%s xp' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" +msgstr "" +"{{ '%s/%s 分' % (user.karma, next_rank_id.karma_min) if next_rank_id else " +"''}}" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "{{ object.company_id.name }} Profile validation" +msgstr "{{ object.company_id.name }} 個人資料驗證" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ 使用者" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..e5d082a --- /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 gamification_badge +from . import website +from . import res_users diff --git a/models/gamification_badge.py b/models/gamification_badge.py new file mode 100644 index 0000000..3c02ced --- /dev/null +++ b/models/gamification_badge.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class GamificationBadge(models.Model): + _name = 'gamification.badge' + _inherit = ['gamification.badge', 'website.published.mixin'] diff --git a/models/res_users.py b/models/res_users.py new file mode 100644 index 0000000..2922365 --- /dev/null +++ b/models/res_users.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import hashlib +import uuid + +from datetime import datetime +from werkzeug import urls +from odoo import api, models + +VALIDATION_KARMA_GAIN = 3 + + +class Users(models.Model): + _inherit = 'res.users' + + @property + def SELF_READABLE_FIELDS(self): + return super().SELF_READABLE_FIELDS + ['karma'] + + @property + def SELF_WRITEABLE_FIELDS(self): + return super().SELF_WRITEABLE_FIELDS + [ + 'country_id', 'city', 'website', 'website_description', 'website_published', + ] + + @api.model + def _generate_profile_token(self, user_id, email): + """Return a token for email validation. This token is valid for the day + and is a hash based on a (secret) uuid generated by the forum module, + the user_id, the email and currently the day (to be updated if necessary). """ + profile_uuid = self.env['ir.config_parameter'].sudo().get_param('website_profile.uuid') + if not profile_uuid: + profile_uuid = str(uuid.uuid4()) + self.env['ir.config_parameter'].sudo().set_param('website_profile.uuid', profile_uuid) + return hashlib.sha256((u'%s-%s-%s-%s' % ( + datetime.now().replace(hour=0, minute=0, second=0, microsecond=0), + profile_uuid, + user_id, + email + )).encode('utf-8')).hexdigest() + + def _send_profile_validation_email(self, **kwargs): + if not self.email: + return False + token = self._generate_profile_token(self.id, self.email) + activation_template = self.env.ref('website_profile.validation_email') + if activation_template: + params = { + 'token': token, + 'user_id': self.id, + 'email': self.email + } + params.update(kwargs) + token_url = self.get_base_url() + '/profile/validate_email?%s' % urls.url_encode(params) + with self._cr.savepoint(): + activation_template.sudo().with_context(token_url=token_url).send_mail( + self.id, force_send=True, raise_exception=True) + return True + + def _process_profile_validation_token(self, token, email): + self.ensure_one() + validation_token = self._generate_profile_token(self.id, email) + if token == validation_token and self.karma == 0: + return self.write({'karma': VALIDATION_KARMA_GAIN}) + return False diff --git a/models/website.py b/models/website.py new file mode 100644 index 0000000..76a37eb --- /dev/null +++ b/models/website.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class Website(models.Model): + _inherit = 'website' + + karma_profile_min = fields.Integer(string="Minimal karma to see other user's profile", default=150) diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..213081c --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +gamification_karma_rank_access_restricted_editor,gamification.karma.rank.access.website.restricted_editor,gamification.model_gamification_karma_rank,website.group_website_restricted_editor,1,1,1,1 diff --git a/static/src/img/badge_bronze.svg b/static/src/img/badge_bronze.svg new file mode 100644 index 0000000..a94491e --- /dev/null +++ b/static/src/img/badge_bronze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/src/img/badge_gold.svg b/static/src/img/badge_gold.svg new file mode 100644 index 0000000..423f63e --- /dev/null +++ b/static/src/img/badge_gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/src/img/badge_silver.svg b/static/src/img/badge_silver.svg new file mode 100644 index 0000000..dd16d4f --- /dev/null +++ b/static/src/img/badge_silver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/src/img/rank_1.svg b/static/src/img/rank_1.svg new file mode 100644 index 0000000..6477a90 --- /dev/null +++ b/static/src/img/rank_1.svg @@ -0,0 +1 @@ +1st \ No newline at end of file diff --git a/static/src/img/rank_2.svg b/static/src/img/rank_2.svg new file mode 100644 index 0000000..e9ae886 --- /dev/null +++ b/static/src/img/rank_2.svg @@ -0,0 +1 @@ +2nd \ No newline at end of file diff --git a/static/src/img/rank_3.svg b/static/src/img/rank_3.svg new file mode 100644 index 0000000..8c22af9 --- /dev/null +++ b/static/src/img/rank_3.svg @@ -0,0 +1 @@ +3rd \ No newline at end of file diff --git a/static/src/js/website_profile.js b/static/src/js/website_profile.js new file mode 100644 index 0000000..4c078fd --- /dev/null +++ b/static/src/js/website_profile.js @@ -0,0 +1,165 @@ +/** @odoo-module **/ + +import publicWidget from "@web/legacy/js/public/public_widget"; +import { loadWysiwygFromTextarea } from "@web_editor/js/frontend/loadWysiwygFromTextarea"; + +publicWidget.registry.websiteProfile = publicWidget.Widget.extend({ + selector: '.o_wprofile_email_validation_container', + read_events: { + 'click .send_validation_email': '_onSendValidationEmailClick', + 'click .validated_email_close': '_onCloseValidatedEmailClick', + }, + + init() { + this._super(...arguments); + this.rpc = this.bindService("rpc"); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + /** + * @private + * @param {Event} ev + */ + _onSendValidationEmailClick: function (ev) { + ev.preventDefault(); + var $element = $(ev.currentTarget); + this.rpc('/profile/send_validation_email', { + 'redirect_url': $element.data('redirect_url'), + }).then(function (data) { + if (data) { + window.location = $element.data('redirect_url'); + } + }); + }, + + /** + * @private + */ + _onCloseValidatedEmailClick: function () { + this.rpc('/profile/validate_email/close'); + }, +}); + +publicWidget.registry.websiteProfileEditor = publicWidget.Widget.extend({ + selector: '.o_wprofile_editor_form', + read_events: { + 'click .o_forum_profile_pic_edit': '_onEditProfilePicClick', + 'change .o_forum_file_upload': '_onFileUploadChange', + 'click .o_forum_profile_pic_clear': '_onProfilePicClearClick', + 'click .o_forum_profile_bio_edit': '_onProfileBioEditClick', + 'click .o_forum_profile_bio_cancel_edit': '_onProfileBioCancelEditClick', + }, + + /** + * @override + */ + start: async function () { + const def = this._super.apply(this, arguments); + if (this.editableMode) { + return def; + } + + const $textarea = this.$("textarea.o_wysiwyg_loader"); + + const options = { + recordInfo: { + context: this._getContext(), + res_model: "res.users", + res_id: parseInt(this.$("input[name=user_id]").val()), + }, + resizable: true, + userGeneratedContent: true, + }; + + if ($textarea[0].attributes.placeholder) { + options.placeholder = $textarea[0].attributes.placeholder.value; + } + + this._wysiwyg = await loadWysiwygFromTextarea(this, $textarea[0], options); + + return Promise.all([def]); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + * @param {Event} ev + */ + _onEditProfilePicClick: function (ev) { + ev.preventDefault(); + $(ev.currentTarget).closest('form').find('.o_forum_file_upload').trigger('click'); + }, + /** + * @private + * @param {Event} ev + */ + _onFileUploadChange: function (ev) { + if (!ev.currentTarget.files.length) { + return; + } + var $form = $(ev.currentTarget).closest('form'); + var reader = new window.FileReader(); + reader.readAsDataURL(ev.currentTarget.files[0]); + reader.onload = function (ev) { + $form.find('.o_wforum_avatar_img').attr('src', ev.target.result); + }; + $form.find('#forum_clear_image').remove(); + }, + /** + * @private + * @param {Event} ev + */ + _onProfilePicClearClick: function (ev) { + var $form = $(ev.currentTarget).closest('form'); + $form.find('.o_wforum_avatar_img').attr('src', '/web/static/img/placeholder.png'); + $form.append($('', { + name: 'clear_image', + id: 'forum_clear_image', + type: 'hidden', + })); + }, + + /** + * @private + * @param {Event} ev + */ + _onProfileBioEditClick: function (ev) { + ev.preventDefault(); + ev.currentTarget.classList.add("d-none"); + document.querySelector(".o_forum_profile_bio_cancel_edit").classList.remove("d-none"); + document.querySelector(".o_forum_profile_bio").classList.add("d-none"); + document.querySelector(".o_forum_profile_bio_form").classList.remove("d-none"); + }, + + /** + * @private + * @param {Event} ev + */ + _onProfileBioCancelEditClick: function (ev) { + ev.preventDefault(); + ev.currentTarget.classList.add("d-none"); + document.querySelector(".o_forum_profile_bio_edit").classList.remove("d-none"); + document.querySelector(".o_forum_profile_bio_form").classList.add("d-none"); + document.querySelector(".o_forum_profile_bio").classList.remove("d-none"); + }, +}); + +publicWidget.registry.websiteProfileNextRankCard = publicWidget.Widget.extend({ + selector: '.o_wprofile_progress_circle', + + /** + * @override + */ + start: function () { + this.$('g[data-bs-toggle="tooltip"]').tooltip(); + return this._super.apply(this, arguments); + }, + +}); + +export default publicWidget.registry.websiteProfile; diff --git a/static/src/scss/website_profile.scss b/static/src/scss/website_profile.scss new file mode 100644 index 0000000..5c25a5e --- /dev/null +++ b/static/src/scss/website_profile.scss @@ -0,0 +1,276 @@ +// Retrive the tab's height by summ its properties +$owprofile-tabs-height: ($nav-link-padding-y*2) + ($font-size-base * $line-height-base); + +// Overal page bg-color: Blend it 'over' the color chosen by the user +// ($body-bg), rather than force it replacing the variable's value. +$owprofile-color-bg: mix($body-bg, #efeff4); + +.o_wprofile_body { + background-color: $owprofile-color-bg; +} + +.o_wprofile_gradient { + background-image: linear-gradient(120deg, #875A7B, darken(#875A7B, 10%)); +} + +.o_wprofile_pict { + width: 100%; + height: 100%; + padding-top: 30%; + background-size: cover; + background-position: center; + + @include media-breakpoint-up(md) { + padding-top: 70%; + border: 1px solid darken(#875A7B, 10%); + border-bottom-width: 0; + } +} + +.o_wprofile_header { + @include media-breakpoint-up(md) { + &:before { + content: ""; + @include o-position-absolute(auto, 0, 0, 0); + height: $owprofile-tabs-height; + background: rgba(black, 0.2); + } + } +} + +.o_wprofile_sidebar { + border: 1px solid $border-color; + + @include media-breakpoint-up(md) { + border-top-width: 0; + } +} + +.o_wprofile_nav_tabs { + @include media-breakpoint-up(md) { + margin-top: $owprofile-tabs-height * -1; + border-bottom: 0; + + .nav-link { + border-radius: 0; + border-width: 0 1px; + line-height: $line-height-base; + @include o-hover-text-color(rgba(white, 0.8), white); + + & { + border-color: transparent; + } + + &:hover { + border-color: transparent; + background: #3d2938; + } + + &.active { + color: color-contrast($owprofile-color-bg); + background: $owprofile-color-bg; + border-color: $owprofile-color-bg; + } + } + } + + @include media-breakpoint-only(xs) { + overflow-x: auto; + overflow-y: hidden; + + li { + white-space: nowrap; + } + } +} + +.o_wprofile_tabs_content { + @include media-breakpoint-down(md) { + background-color: $nav-tabs-link-active-bg; + padding:0 ($grid-gutter-width * 0.5); + } + + @include media-breakpoint-only(xs) { + margin: 0 ($grid-gutter-width * -0.5); + } +} + +/// Progress Circle +.o_wprofile_progress_circle { + position: relative; + + svg.o_pc_circular_chart { + // Allow hover effect on svg paths in order to display bootstrap tooltip, + // by pushing the circular chart above the next rank info. + z-index: 1; + position: relative; + display: block; + max-width: 100%; + + .o_pc_circle_bg, .o_pc_circle { + fill: none; + stroke-width: 1.5px; + stroke-linecap: round; + } + + .o_pc_circle_bg { + stroke: rgba(black, 0.1); + } + + .o_pc_circle { + animation: progress 1s ease-out forwards; + } + + #gradient { + --o-pc-color-stop-1: #{lighten(map-get($theme-colors, 'primary'), 10%)}; + --o-pc-color-stop-2: #{map-get($theme-colors, 'primary')}; + } + } + + .o_pc_overlay { + @include o-position-absolute(0,0,0,0); + h4 { + width: 60%; + // only apply ellipsis when in non-edit mode, that way the editor can see the full value + &:not(.o_editable) { + @include o-text-overflow(); + } + } + } + + @keyframes progress { + 0% { + stroke-dasharray: 0 100; + } + } +} + +// All Users Page +.o_wprofile_all_users_nav { + border-width: 1px 0; + + &, .o_wprofile_course_nav_search, .o_wprofile_all_users_nav_btn { + background-color: rgba(white, 0.05); + border-color: rgba(white, 0.1); + border-style: solid; + } + + .o_wprofile_course_nav_search, .o_wprofile_all_users_nav_btn { + border-width: 0 1px; + } + + .o_wprofile_all_users_nav_btn { + @include media-breakpoint-up(md) { + @include o-hover-text-color(white, $gray-800); + margin-top: -1px; + border-radius: 0; + min-height: 35px; + + &:hover { + background-color: white; + } + } + } + + .o_wprofile_all_users_nav_btn_container { + @include media-breakpoint-down(md) { + ~ .o_wprofile_user_profile_sub_nav_mobile_col { + padding-left: 0; + } + + .o_wprofile_all_users_nav_btn { + @include o-hover-text-color(white, white); + border-radius: $btn-border-radius; + background-color: rgba(black, 0.25); + } + } + } + + .breadcrumb-item.active a, .breadcrumb-item a:hover { + color: white; + } + + .breadcrumb-item a, .breadcrumb-item + .breadcrumb-item::before, .o_wprofile_course_nav_search input::placeholder { + color: rgba(white, 0.8); + } +} + +.o_wprofile_top3_card_footer div { + border-color: $border-color; + border-style: solid; + border-width: 1px 0; + margin-top: -1px; + + + div { + border-left-width: 1px; + margin-left: -1px; + } +} + +.o_wprofile_pager { + li.page-item { + a.page-link { + background-color: transparent; + border: 0; + color: $gray-600; + transition-duration: .3s; + + &:hover { + color: $primary; + } + } + + &.active { + a.page-link { + color: $white; + } + } + + &.o_wprofile_pager_arrow a { + color: $primary; + + &:hover { + transform: scaleX(1.50) scaleY(1.50); + } + } + + &.o_wprofile_pager_arrow.disabled a { + color: $gray-600; + } + + .page-link:focus { + box-shadow: 0 0 0 0; + } + } +} + +.wprofile_badge_img { + height: 2.5em; +} + + +// Other stuffs +.country_flag { + display: inline-block; + margin-left: 2px; + max-height: 13px; + width: auto !important; +} + +// Tools +.o_wprofile_pointer { + cursor: pointer; +} + +// Own profile border +.o_wprofile_border_focus { + border-left: 4px solid map-get($theme-colors, 'secondary'); +} + +// Edition mode +.editor_enable { + // Allow to edit rank picture in edit mode + .o_wprofile_progress_circle .o_pc_overlay { + z-index: initial; + } +} diff --git a/views/gamification_badge_views.xml b/views/gamification_badge_views.xml new file mode 100644 index 0000000..f7b3b08 --- /dev/null +++ b/views/gamification_badge_views.xml @@ -0,0 +1,15 @@ + + + + gamification.badge.view.form.inherit.website + gamification.badge + + + + + + + + diff --git a/views/website_profile.xml b/views/website_profile.xml new file mode 100644 index 0000000..45c1b1a --- /dev/null +++ b/views/website_profile.xml @@ -0,0 +1,704 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/views/website_views.xml b/views/website_views.xml new file mode 100644 index 0000000..6ae7819 --- /dev/null +++ b/views/website_views.xml @@ -0,0 +1,15 @@ + + + + + website.form.view + website + + + + + + + + +