From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/website_profile/__init__.py | 6 + addons/website_profile/__manifest__.py | 22 + addons/website_profile/controllers/__init__.py | 4 + addons/website_profile/controllers/main.py | 324 ++++++++++ addons/website_profile/data/profile_data.xml | 108 ++++ addons/website_profile/i18n/ar.po | 568 +++++++++++++++++ addons/website_profile/i18n/bg.po | 567 +++++++++++++++++ addons/website_profile/i18n/bn.po | 561 +++++++++++++++++ addons/website_profile/i18n/ca.po | 572 +++++++++++++++++ addons/website_profile/i18n/ckb.po | 560 +++++++++++++++++ addons/website_profile/i18n/cs.po | 572 +++++++++++++++++ addons/website_profile/i18n/da.po | 674 ++++++++++++++++++++ addons/website_profile/i18n/de.po | 669 ++++++++++++++++++++ addons/website_profile/i18n/el.po | 563 +++++++++++++++++ addons/website_profile/i18n/eo.po | 556 +++++++++++++++++ addons/website_profile/i18n/es.po | 670 ++++++++++++++++++++ addons/website_profile/i18n/es_MX.po | 659 ++++++++++++++++++++ addons/website_profile/i18n/et.po | 568 +++++++++++++++++ addons/website_profile/i18n/eu.po | 568 +++++++++++++++++ addons/website_profile/i18n/fa.po | 564 +++++++++++++++++ addons/website_profile/i18n/fi.po | 576 +++++++++++++++++ addons/website_profile/i18n/fr.po | 676 ++++++++++++++++++++ addons/website_profile/i18n/he.po | 567 +++++++++++++++++ addons/website_profile/i18n/hi.po | 560 +++++++++++++++++ addons/website_profile/i18n/hr.po | 572 +++++++++++++++++ addons/website_profile/i18n/hu.po | 567 +++++++++++++++++ addons/website_profile/i18n/id.po | 567 +++++++++++++++++ addons/website_profile/i18n/it.po | 669 ++++++++++++++++++++ addons/website_profile/i18n/ja.po | 567 +++++++++++++++++ addons/website_profile/i18n/ka.po | 566 +++++++++++++++++ addons/website_profile/i18n/km.po | 562 +++++++++++++++++ addons/website_profile/i18n/ko.po | 654 ++++++++++++++++++++ addons/website_profile/i18n/lb.po | 477 +++++++++++++++ addons/website_profile/i18n/lt.po | 569 +++++++++++++++++ addons/website_profile/i18n/lv.po | 556 +++++++++++++++++ addons/website_profile/i18n/mn.po | 564 +++++++++++++++++ addons/website_profile/i18n/nb.po | 664 ++++++++++++++++++++ addons/website_profile/i18n/nl.po | 671 ++++++++++++++++++++ addons/website_profile/i18n/pl.po | 574 +++++++++++++++++ addons/website_profile/i18n/pt.po | 567 +++++++++++++++++ addons/website_profile/i18n/pt_BR.po | 681 +++++++++++++++++++++ addons/website_profile/i18n/ro.po | 574 +++++++++++++++++ addons/website_profile/i18n/ru.po | 567 +++++++++++++++++ addons/website_profile/i18n/si.po | 556 +++++++++++++++++ addons/website_profile/i18n/sk.po | 569 +++++++++++++++++ addons/website_profile/i18n/sl.po | 566 +++++++++++++++++ addons/website_profile/i18n/sv.po | 564 +++++++++++++++++ addons/website_profile/i18n/th.po | 564 +++++++++++++++++ addons/website_profile/i18n/tr.po | 674 ++++++++++++++++++++ addons/website_profile/i18n/uk.po | 661 ++++++++++++++++++++ addons/website_profile/i18n/ur.po | 556 +++++++++++++++++ addons/website_profile/i18n/vi.po | 569 +++++++++++++++++ addons/website_profile/i18n/website_profile.pot | 556 +++++++++++++++++ addons/website_profile/i18n/zh_CN.po | 574 +++++++++++++++++ addons/website_profile/i18n/zh_TW.po | 650 ++++++++++++++++++++ addons/website_profile/models/__init__.py | 6 + .../website_profile/models/gamification_badge.py | 9 + addons/website_profile/models/res_users.py | 66 ++ addons/website_profile/models/website.py | 10 + .../website_profile/security/ir.model.access.csv | 2 + .../static/src/img/badge_bronze.svg | 1 + .../website_profile/static/src/img/badge_gold.svg | 1 + .../static/src/img/badge_silver.svg | 1 + addons/website_profile/static/src/img/rank_1.svg | 1 + addons/website_profile/static/src/img/rank_2.svg | 1 + addons/website_profile/static/src/img/rank_3.svg | 1 + .../static/src/js/website_profile.js | 143 +++++ .../static/src/scss/website_profile.scss | 256 ++++++++ .../views/gamification_badge_views.xml | 15 + addons/website_profile/views/website_profile.xml | 654 ++++++++++++++++++++ 70 files changed, 31148 insertions(+) create mode 100644 addons/website_profile/__init__.py create mode 100644 addons/website_profile/__manifest__.py create mode 100644 addons/website_profile/controllers/__init__.py create mode 100644 addons/website_profile/controllers/main.py create mode 100644 addons/website_profile/data/profile_data.xml create mode 100644 addons/website_profile/i18n/ar.po create mode 100644 addons/website_profile/i18n/bg.po create mode 100644 addons/website_profile/i18n/bn.po create mode 100644 addons/website_profile/i18n/ca.po create mode 100644 addons/website_profile/i18n/ckb.po create mode 100644 addons/website_profile/i18n/cs.po create mode 100644 addons/website_profile/i18n/da.po create mode 100644 addons/website_profile/i18n/de.po create mode 100644 addons/website_profile/i18n/el.po create mode 100644 addons/website_profile/i18n/eo.po create mode 100644 addons/website_profile/i18n/es.po create mode 100644 addons/website_profile/i18n/es_MX.po create mode 100644 addons/website_profile/i18n/et.po create mode 100644 addons/website_profile/i18n/eu.po create mode 100644 addons/website_profile/i18n/fa.po create mode 100644 addons/website_profile/i18n/fi.po create mode 100644 addons/website_profile/i18n/fr.po create mode 100644 addons/website_profile/i18n/he.po create mode 100644 addons/website_profile/i18n/hi.po create mode 100644 addons/website_profile/i18n/hr.po create mode 100644 addons/website_profile/i18n/hu.po create mode 100644 addons/website_profile/i18n/id.po create mode 100644 addons/website_profile/i18n/it.po create mode 100644 addons/website_profile/i18n/ja.po create mode 100644 addons/website_profile/i18n/ka.po create mode 100644 addons/website_profile/i18n/km.po create mode 100644 addons/website_profile/i18n/ko.po create mode 100644 addons/website_profile/i18n/lb.po create mode 100644 addons/website_profile/i18n/lt.po create mode 100644 addons/website_profile/i18n/lv.po create mode 100644 addons/website_profile/i18n/mn.po create mode 100644 addons/website_profile/i18n/nb.po create mode 100644 addons/website_profile/i18n/nl.po create mode 100644 addons/website_profile/i18n/pl.po create mode 100644 addons/website_profile/i18n/pt.po create mode 100644 addons/website_profile/i18n/pt_BR.po create mode 100644 addons/website_profile/i18n/ro.po create mode 100644 addons/website_profile/i18n/ru.po create mode 100644 addons/website_profile/i18n/si.po create mode 100644 addons/website_profile/i18n/sk.po create mode 100644 addons/website_profile/i18n/sl.po create mode 100644 addons/website_profile/i18n/sv.po create mode 100644 addons/website_profile/i18n/th.po create mode 100644 addons/website_profile/i18n/tr.po create mode 100644 addons/website_profile/i18n/uk.po create mode 100644 addons/website_profile/i18n/ur.po create mode 100644 addons/website_profile/i18n/vi.po create mode 100644 addons/website_profile/i18n/website_profile.pot create mode 100644 addons/website_profile/i18n/zh_CN.po create mode 100644 addons/website_profile/i18n/zh_TW.po create mode 100644 addons/website_profile/models/__init__.py create mode 100644 addons/website_profile/models/gamification_badge.py create mode 100644 addons/website_profile/models/res_users.py create mode 100644 addons/website_profile/models/website.py create mode 100644 addons/website_profile/security/ir.model.access.csv create mode 100644 addons/website_profile/static/src/img/badge_bronze.svg create mode 100644 addons/website_profile/static/src/img/badge_gold.svg create mode 100644 addons/website_profile/static/src/img/badge_silver.svg create mode 100644 addons/website_profile/static/src/img/rank_1.svg create mode 100644 addons/website_profile/static/src/img/rank_2.svg create mode 100644 addons/website_profile/static/src/img/rank_3.svg create mode 100644 addons/website_profile/static/src/js/website_profile.js create mode 100644 addons/website_profile/static/src/scss/website_profile.scss create mode 100644 addons/website_profile/views/gamification_badge_views.xml create mode 100644 addons/website_profile/views/website_profile.xml (limited to 'addons/website_profile') diff --git a/addons/website_profile/__init__.py b/addons/website_profile/__init__.py new file mode 100644 index 00000000..632e0b78 --- /dev/null +++ b/addons/website_profile/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models +from . import controllers diff --git a/addons/website_profile/__manifest__.py b/addons/website_profile/__manifest__.py new file mode 100644 index 00000000..240b22fa --- /dev/null +++ b/addons/website_profile/__manifest__.py @@ -0,0 +1,22 @@ +# -*- 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/profile_data.xml', + 'views/gamification_badge_views.xml', + 'views/website_profile.xml', + 'security/ir.model.access.csv', + ], + 'auto_install': False, + 'license': 'LGPL-3', +} diff --git a/addons/website_profile/controllers/__init__.py b/addons/website_profile/controllers/__init__.py new file mode 100644 index 00000000..5d4b25db --- /dev/null +++ b/addons/website_profile/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/addons/website_profile/controllers/main.py b/addons/website_profile/controllers/main.py new file mode 100644 index 00000000..6ad68d1b --- /dev/null +++ b/addons/website_profile/controllers/main.py @@ -0,0 +1,324 @@ +# -*- 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, modules, 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 _get_default_avatar(self): + img_path = modules.get_module_resource('web', 'static/src/img', 'placeholder.png') + with open(img_path, 'rb') as f: + return base64.b64encode(f.read()) + + def _check_user_profile_access(self, user_id): + 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 + if user_sudo.karma == 0 or not user_sudo.website_published or \ + (user_sudo.id != request.session.uid and request.env.user.karma < request.website.karma_profile_min): + return False + return user_sudo + + 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), + } + values.update(kwargs) + 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='image_256', width=0, height=0, crop=False, **post): + if field not in ('image_128', 'image_256'): + return werkzeug.exceptions.Forbidden() + + can_sudo = self._check_avatar_access(user_id, **post) + if can_sudo: + status, headers, image_base64 = request.env['ir.http'].sudo().binary_content( + model='res.users', id=user_id, field=field, + default_mimetype='image/png') + else: + status, headers, image_base64 = request.env['ir.http'].binary_content( + model='res.users', id=user_id, field=field, + default_mimetype='image/png') + if status == 301: + return request.env['ir.http']._response_by_status(status, headers, image_base64) + if status == 304: + return werkzeug.wrappers.Response(status=304) + + if not image_base64: + image_base64 = self._get_default_avatar() + if not (width or height): + width, height = tools.image_guess_size_from_field_name(field) + + image_base64 = tools.image_process(image_base64, size=(int(width), int(height)), crop=crop) + + content = base64.b64decode(image_base64) + headers = http.set_safe_image_headers(headers, content) + response = request.make_response(content, headers) + response.status_code = status + return response + + @http.route(['/profile/user/'], type='http', auth="public", website=True) + def view_user_profile(self, user_id, **post): + user = self._check_user_profile_access(user_id) + if not user: + return request.render("website_profile.private_profile") + values = self._prepare_user_values(**post) + params = self._prepare_user_profile_parameters(**post) + values.update(self._prepare_user_profile_values(user, **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 type(user).SELF_WRITEABLE_FIELDS if key in values} + user.write(whitelisted_values) + if kwargs.get('url_param'): + return werkzeug.utils.redirect("/profile/user/%d?%s" % (user.id, kwargs['url_param'])) + else: + return werkzeug.utils.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) + + 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/addons/website_profile/data/profile_data.xml b/addons/website_profile/data/profile_data.xml new file mode 100644 index 00000000..13e46434 --- /dev/null +++ b/addons/website_profile/data/profile_data.xml @@ -0,0 +1,108 @@ + + + + + + + Profile: Email Verification + + ${object.company_id.name} Profile validation + ${user.email_formatted | safe} + ${object.email_formatted | safe} + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + ${object.company_id.name} Profile validation + + + ${user.company_id.name} +
+
+
+
+ + + + + + + +
+

+ Hello ${object.name},

+ You have been invited to validate your email in order to get access to "${object.company_id.name}" website. + To validate your email, please click on the following link: +

+ Thanks for your participation! +

+
+
+
+
+ + + + + +
+ ${user.company_id.name} + + ${user.company_id.phone} + % if user.company_id.email: + | + ${user.company_id.email} + + % endif + % if user.company_id.website: + | + ${user.company_id.website} + + % endif +
+
+
+ + +
+ Powered by Odoo +
+
+
+ ${object.lang} + +
+
+
diff --git a/addons/website_profile/i18n/ar.po b/addons/website_profile/i18n/ar.po new file mode 100644 index 00000000..98f52472 --- /dev/null +++ b/addons/website_profile/i18n/ar.po @@ -0,0 +1,568 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Sherif Abd Ekmoniem , 2020 +# Mustafa Rawi , 2020 +# Akram Alfusayal , 2020 +# Martin Trigaux, 2020 +# hoxhe Aits , 2020 +# Osama Ahmaro , 2020 +# Shaima Safar , 2020 +# Rabie Bou Khodor , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Rabie Bou Khodor , 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "الدولة..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/bg.po b/addons/website_profile/i18n/bg.po new file mode 100644 index 00000000..d2ff75c8 --- /dev/null +++ b/addons/website_profile/i18n/bg.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov , 2020 +# Kaloyan Naumov , 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva , 2020 +# Maria Boyadjieva , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Maria Boyadjieva , 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "Държава..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/bn.po b/addons/website_profile/i18n/bn.po new file mode 100644 index 00000000..e74a9de4 --- /dev/null +++ b/addons/website_profile/i18n/bn.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# Abu Zafar , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Abu Zafar , 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/ca.po b/addons/website_profile/i18n/ca.po new file mode 100644 index 00000000..70e22daa --- /dev/null +++ b/addons/website_profile/i18n/ca.po @@ -0,0 +1,572 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Marc Tormo i Bochaca , 2020 +# Carles Antoli , 2020 +# Eric Antones , 2020 +# RGB Consulting , 2020 +# Quim - eccit , 2020 +# Sandra Franch , 2020 +# Manel Fernandez Ramirez , 2020 +# M Palau , 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr " Usuaris premiats" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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 "Insígnies" + +#. 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 "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Netejar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "País..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. 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 "Edita el perfil" + +#. 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.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 "" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. 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.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 "" +"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 "Rank badge" +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 "Cercar" + +#. 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:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "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 +#: 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 "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_profile_edit_content +msgid "Update" +msgstr "Actualitza" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuaris" + +#. 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 "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 "" + +#. 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.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.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 "aquest mes" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/ckb.po b/addons/website_profile/i18n/ckb.po new file mode 100644 index 00000000..6b0eb78c --- /dev/null +++ b/addons/website_profile/i18n/ckb.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Haval Abdulkarim , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Haval Abdulkarim , 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/cs.po b/addons/website_profile/i18n/cs.po new file mode 100644 index 00000000..8cf6e992 --- /dev/null +++ b/addons/website_profile/i18n/cs.po @@ -0,0 +1,572 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka , 2020 +# Rastislav Brencic , 2020 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Ověření profilu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "All Badges" +msgstr "Všechny odznaky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Všechny odznaky" + +#. 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 "UPRAVIT" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr " UPRAVIT PROFIL" + +#. 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_content +msgid "Current rank:" +msgstr "Aktuální úroveň:" + +#. module: website_profile +#: 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_profile_content +msgid "Joined" +msgstr "Připojen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Životopis" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Město" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Země" + +#. 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 "Název" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "Veřejný profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Odznaky" + +#. 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 "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 "Hodnocení podle:" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "Kliknutím sem odešlete ověřovací e-mail." + +#. 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 "Country..." +msgstr "Země..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Odznak gamifikace" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Úvod" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Zdá se, že váš e-mail nebyl ověřen.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. 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.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 +#: 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 "Rank badge" +msgstr "Odznak úrovně" + +#. 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.private_profile +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 "Hledání" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Hledat kurzy" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Aktualizace" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Uživatelé" + +#. 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 "Webstrá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.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.rank_badge_main +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "breadcrumb" +msgstr "drobečky" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Uživatelé" diff --git a/addons/website_profile/i18n/da.po b/addons/website_profile/i18n/da.po new file mode 100644 index 00000000..2310ebc6 --- /dev/null +++ b/addons/website_profile/i18n/da.po @@ -0,0 +1,674 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Hans Henrik Gabelgaard , 2020 +# Morten Schou , 2020 +# Jesper Carstensen , 2020 +# Sanne Kristensen , 2020 +# Ejner Sønniksen , 2020 +# lhmflexerp , 2020 +# walther_b , 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Mads Søndergaard , 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Profil bekræftelse" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "All Badges" +msgstr "Alle Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Alle Emblemer" + +#. 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 "REDIGER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "REDIGER PROFIL" + +#. 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_content +msgid "Current rank:" +msgstr "Nuværende rang:" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Badges" +msgstr "Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Deltager" + +#. 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 "By" + +#. 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 "Email" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Name" +msgstr "Navn" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "Offentlig profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "Erfaringspoint" + +#. 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 "Ranger ud fra :" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Profil validering\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hej ${object.name},

\n" +" Du er blevet inviteret til at godkende din email, for at få adgang til hjemmesiden for \"${object.company_id.name}\".\n" +" For at godkende din email, bedes du klikke på følgende link:\n" +"

\n" +" Tak for din deltagelse!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" I kraft af Odoo\n" +"
\n" +"
\n" +" " + +#. 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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "Klik her for at sende en verificerings email." + +#. 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 "Country..." +msgstr "Land..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Det ser ud til, at din email ikke er blevet godkendt.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. 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.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 +#: 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 "Rank badge" +msgstr "Rang emblem" + +#. 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.private_profile +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 courses" +msgstr "Søg kurser" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Opdater" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Brugere" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "erfaringspoint" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Brugere" diff --git a/addons/website_profile/i18n/de.po b/addons/website_profile/i18n/de.po new file mode 100644 index 00000000..465ac61e --- /dev/null +++ b/addons/website_profile/i18n/de.po @@ -0,0 +1,669 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Wolfgang Taferner, 2020 +# Ermin Trevisan , 2020 +# Andi, 2020 +# Thomas Neu , 2020 +# Leon Grill , 2020 +# Chris Egal , 2020 +# JEK Odoo , 2020 +# Oliver Roch , 2020 +# UteHaus, 2020 +# Kevin Harrings , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Kevin Harrings , 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Profil Validierung" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 auf das Forum und der eLearning Plaform. Dank dieser " +"Punkte erreichen Sie neue Ränge." + +#. 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 "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.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_header +msgid "EDIT PROFILE" +msgstr "PROFIL BEARBEITEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid " awarded users" +msgstr " Benutzer mit Auszeichnung" + +#. 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 "Auszeichnungen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Beigetregen" + +#. 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 "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 "Ö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 "Auszeichnungen" + +#. 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 "Auszeichnungen" + +#. 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 Email wurde soeben " +"validiert." + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Profilverifizierung\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Guten Tag ${object.name},

\n" +" Sie wurden eingeladen, Ihre E-Mail-Adresse zu verifizieren, damit Sie Zugang zur Website von \"${object.company_id.name}\" erhalten.\n" +" Um Ihre E-Mail-Adresse zu verifizieren, klicken Sie bitte auf den folgenden Link:\n" +"

\n" +" Danke für Ihre Teilnahme!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Unterstützt von Odoo\n" +"
\n" +"
\n" +" " + +#. 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 "" + +#. 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 "Auszeichnungen" + +#. 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 "Biographie" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Kann veröffentlichen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Löschen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Land..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. 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 "Bearbeite Profil" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamification-Pin" + +#. 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 gewinne ich Auszeichnungen?" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Es scheint, Ihre E-Mail-Adresse wurde noch nicht bestätigt.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. 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 "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.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 "Keinen Benutzer gefunden für" + +#. 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 bestätigte E-Mail Adresse ein, um bei Fragen & " +"Antworten benachrichtigt zu werden." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Rank badge" +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 "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 courses" +msgstr "Kurse 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: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 mit der das Dokument überall aufgerufen werden kann." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Dieser Monat" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Aktualisieren" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Benutzer" + +#. 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 " +"Auszeichnungen. " + +#. 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.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.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 "in diesem Monat" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Benutzer" diff --git a/addons/website_profile/i18n/el.po b/addons/website_profile/i18n/el.po new file mode 100644 index 00000000..35215d0d --- /dev/null +++ b/addons/website_profile/i18n/el.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis , 2020 +# George Tarasidis , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: George Tarasidis , 2020\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "Χώρα..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/eo.po b/addons/website_profile/i18n/eo.po new file mode 100644 index 00000000..31114931 --- /dev/null +++ b/addons/website_profile/i18n/eo.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/es.po b/addons/website_profile/i18n/es.po new file mode 100644 index 00000000..921436b4 --- /dev/null +++ b/addons/website_profile/i18n/es.po @@ -0,0 +1,670 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Pedro M. Baeza , 2020 +# Lina Maria Avendaño Carvajal , 2020 +# Rick Hunter , 2020 +# Luis M. Ontalba , 2020 +# gabriumaa , 2020 +# Antonio Trueba, 2020 +# Jon Perez , 2020 +# John Guardado , 2020 +# VivianMontana23 , 2020 +# Jesse Garza , 2020 +# Osiris Román , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Osiris Román , 2020\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Validación de perfil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. 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_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 "Unido" + +#. 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 "" + +#. 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 "Página 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 "" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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 ${object.company_id.name}\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hola ${object.name},

\n" +" Se te invita a validar tu email para obtener acceso al sitio de \"${object.company_id.name}\".\n" +" Para validar tu email, pulsa el siguiente enlace:\n" +"

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

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Con tecnología de Odoo\n" +"
\n" +"
\n" +" " + +#. 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 "" + +#. 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.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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "País..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Parece que su correo electrónico no ha sido verificado
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. 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.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 "No se encuenta ningún usuario con" + +#. 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 "Rank badge" +msgstr "Insignia de rango" + +#. 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.private_profile +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 courses" +msgstr "Buscar cursos" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Actualizar" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuarios" + +#. 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.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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuarios" diff --git a/addons/website_profile/i18n/es_MX.po b/addons/website_profile/i18n/es_MX.po new file mode 100644 index 00000000..94faf06c --- /dev/null +++ b/addons/website_profile/i18n/es_MX.po @@ -0,0 +1,659 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Cécile Collart , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Cécile Collart , 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Validación de perfil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. 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_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 "Unido" + +#. 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 "" + +#. 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 "Página 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 "" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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 ${object.company_id.name}\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hola ${object.name},

\n" +" Se te invita a validar tu email para obtener acceso al sitio de \"${object.company_id.name}\".\n" +" Para validar tu email, pulsa el siguiente enlace:\n" +"

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

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Con tecnología de Odoo\n" +"
\n" +"
\n" +" " + +#. 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 "" + +#. 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.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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "País..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Parece que su correo electrónico no ha sido verificado
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. 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.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 "No se encuenta ningún usuario con" + +#. 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 "Rank badge" +msgstr "Insignia de rango" + +#. 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.private_profile +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 courses" +msgstr "Buscar cursos" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Actualizar" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuarios" + +#. 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.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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuarios" diff --git a/addons/website_profile/i18n/et.po b/addons/website_profile/i18n/et.po new file mode 100644 index 00000000..985e6002 --- /dev/null +++ b/addons/website_profile/i18n/et.po @@ -0,0 +1,568 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Piia Paurson , 2020 +# Rivo Zängov , 2020 +# Arma Gedonsky , 2020 +# Martin Aavastik , 2020 +# Martin Trigaux, 2020 +# Andre Roomet , 2020 +# Algo Kärp , 2021 +# Triine Aavik , 2021 +# Eneli Õigus , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Eneli Õigus , 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr " tunnustatud kasutajad" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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 "Märgid" + +#. 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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Maa..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Mängustamise märk" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Home" +msgstr "Kodu" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. 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 "Rohkem informatsiooni" + +#. 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.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 "Rank badge" +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 "Otsi" + +#. 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: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 "Sellel kuul" + +#. 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 "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_profile_edit_content +msgid "Update" +msgstr "Uuenda" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Kasutajad" + +#. 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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/eu.po b/addons/website_profile/i18n/eu.po new file mode 100644 index 00000000..9f9355ce --- /dev/null +++ b/addons/website_profile/i18n/eu.po @@ -0,0 +1,568 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# oihane , 2021 +# Esther Martín Menéndez , 2021 +# Eneko , 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 , 2021 +# Iñaki Ibarrola , 2021 +# Maialen Rodriguez , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Maialen Rodriguez , 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +msgstr "erabiltzaile sarituak" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "Intsigniak " + +#. 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 "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Clear" +msgstr "Garbitu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Itxi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country..." +msgstr "Herrialdea..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Editatu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit Profile" +msgstr "Profila editatu " + +#. 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.user_profile_sub_nav +msgid "Home" +msgstr "Hasiera" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. 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 "Informazio gehiago" + +#. 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.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 "" +"Idatzi baliozko helbide elektronikoa erantzunak edo iruzkinen jakinarazpenak" +" jaso ahal izateko." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Rank badge" +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 "Bilatu" + +#. 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:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "URL osoa dokumentura sartzeko webgunearen bidez." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Hilabete honetan " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Profil hau pribatua da!" + +#. 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 "Argitaratu gabea" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Update" +msgstr "Eguneratu" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Erabiltzaileak" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Oraingo webgunean ikusgai" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +msgstr "Webgune" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/fa.po b/addons/website_profile/i18n/fa.po new file mode 100644 index 00000000..86340a4a --- /dev/null +++ b/addons/website_profile/i18n/fa.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Faraz Sadri Alamdari , 2020 +# Hamed Mohammadi , 2020 +# Mohsen Mohammadi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Mohsen Mohammadi , 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "کشور..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/fi.po b/addons/website_profile/i18n/fi.po new file mode 100644 index 00000000..a4bda31d --- /dev/null +++ b/addons/website_profile/i18n/fi.po @@ -0,0 +1,576 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren , 2020 +# Miku Laitinen , 2020 +# Mikko Salmela , 2020 +# Tuomo Aura , 2020 +# Veikko Väätäjä , 2020 +# Topi Aura , 2020 +# Miika Nissi , 2021 +# Jarmo Kortetjärvi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2021\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Profiilin vahvistaminen" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 eLearning-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 "All Badges" +msgstr "Kaikki merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Kaikki merkit" + +#. 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_header +msgid "EDIT PROFILE" +msgstr "MUOKKAA PROFIILIA" + +#. 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_content +msgid "Current rank:" +msgstr "Tämänhetkinen sija:" + +#. 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 "Kuvaus" + +#. 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 "Julkinen profiili" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Verkkosivu" + +#. 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 "Kokemuspisteet" + +#. 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 "Järjestä :" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "Ansiomerkit" + +#. 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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Maa..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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 "" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. 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 "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 "" + +#. 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 "" +"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 "Rank badge" +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 "Haku" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Päivitä" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Käyttäjät" + +#. 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 "" + +#. 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.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.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 "tämä kuukausi" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/fr.po b/addons/website_profile/i18n/fr.po new file mode 100644 index 00000000..0334b63b --- /dev/null +++ b/addons/website_profile/i18n/fr.po @@ -0,0 +1,676 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Olivier Dony , 2020 +# Fabien Pinckaers , 2020 +# Richard Mathot , 2020 +# Vincent Briffaux , 2020 +# Clo , 2020 +# Xavier Belmere , 2020 +# Aurélien Pillevesse , 2020 +# mathieu betton , 2020 +# Eloïse Stilmant , 2020 +# Cécile Collart , 2020 +# gdp Odoo , 2020 +# Gilles Mangin , 2020 +# Priscilla (prs) Odoo , 2020 +# Jonathan Quique , 2020 +# Alexandra Jubert , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Alexandra Jubert , 2021\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "EDITER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDITER LE PROFIL" + +#. 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_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 "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "Profil publique" + +#. 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 "" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Validation du profile\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Bonjour ${object.name},

\n" +" Vous avez été invité à valider votre adresse email afin d'accéder au site de \"${object.company_id.name}\" .\n" +" Pour valider votre adresse email, veuillez cliquer sur le lien suivant:\n" +"

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

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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.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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "Cliquez ici pour envoyer un email de vérification." + +#. 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 "Country..." +msgstr "Pays..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. 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: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.user_profile_sub_nav +msgid "Home" +msgstr "Accueil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "How do I earn badges?" +msgstr "Comment 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Votre adresse email n'a pas été vérifiée.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. 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 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.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 "Pas d'utilisateur trouvé" + +#. 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 entrer 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 "Rank badge" +msgstr "Badge de rang" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Ranks" +msgstr "Grades" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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 courses" +msgstr "Rechercher des cours" + +#. 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: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 afin d'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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Mettre à jour" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilisateurs" + +#. 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 "Adresse du 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 "" +"Quand vous finissez un cours ou atteignez une étape, vous recevez des " +"badges." + +#. 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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Utilisateurs" diff --git a/addons/website_profile/i18n/he.po b/addons/website_profile/i18n/he.po new file mode 100644 index 00000000..d443e1b7 --- /dev/null +++ b/addons/website_profile/i18n/he.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Yihya Hugirat , 2020 +# ZVI BLONDER , 2020 +# Lilach Gilliam , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Lilach Gilliam , 2021\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "ארץ..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "דרגת משתמש" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ משתמשים" diff --git a/addons/website_profile/i18n/hi.po b/addons/website_profile/i18n/hi.po new file mode 100644 index 00000000..29ef4c64 --- /dev/null +++ b/addons/website_profile/i18n/hi.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/hr.po b/addons/website_profile/i18n/hr.po new file mode 100644 index 00000000..61273100 --- /dev/null +++ b/addons/website_profile/i18n/hr.po @@ -0,0 +1,572 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Bole , 2020 +# Vladimir Olujić , 2020 +# Đurđica Žarković , 2020 +# Karolina Tonković , 2020 +# Jasmina Otročak , 2020 +# Tina Milas, 2020 +# Ivana Šimek , 2020 +# Hrvoje Sić , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Hrvoje Sić , 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Provjera profila" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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_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.user_profile_edit_content +msgid "" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "UREDI" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "UREDI PROFIL" + +#. 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_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 "Oznake" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Joined" +msgstr "Pridružio se" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Biography" +msgstr "Životopis" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Grad" + +#. 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 "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Public profile" +msgstr "Javni profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Web stranica" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Oznaka" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Država..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Naziv" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. 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.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 "Rank badge" +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 "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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Korisnici" + +#. 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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/hu.po b/addons/website_profile/i18n/hu.po new file mode 100644 index 00000000..c8fd1c91 --- /dev/null +++ b/addons/website_profile/i18n/hu.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Tamás Németh , 2021 +# gezza , 2021 +# Ákos Nagy , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Ákos Nagy , 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.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_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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Ország..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "Azonosító" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. 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 "" + +#. 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 "" +"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 "Rank badge" +msgstr "" + +#. 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.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 "Keresés" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Frissítés" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Felhasználók" + +#. 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 "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.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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/id.po b/addons/website_profile/i18n/id.po new file mode 100644 index 00000000..1e21361b --- /dev/null +++ b/addons/website_profile/i18n/id.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# William Surya Permana , 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan , 2020 +# oon arfiandwi , 2020 +# Ryanto The , 2020 +# Abdul Munif Hanafi , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Abdul Munif Hanafi , 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "Semua Pengguna" + +#. 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 "Lencana" + +#. 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 "" + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Negara" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Sunting" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "" + +#. 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 "" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. 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.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 "" +"Harap masukkan alamat email yang valid untuk menerima pemberitahuan dari " +"jawaban atau komentar." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Rank badge" +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 "Pencarian" + +#. 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: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 situs web." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Bulan ini" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +msgid "This profile is private!" +msgstr "Profil ini pribadi!" + +#. 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 "Perbaharui" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Pengguna" + +#. 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 "Situs Web" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_url +msgid "Website URL" +msgstr "URL Situs 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 "" + +#. 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.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.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 "bulan ini" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/it.po b/addons/website_profile/i18n/it.po new file mode 100644 index 00000000..3ecdf1a0 --- /dev/null +++ b/addons/website_profile/i18n/it.po @@ -0,0 +1,669 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Lorenzo Battistini , 2020 +# Paolo Valier, 2020 +# Sergio Zanchetta , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Sergio Zanchetta , 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "Conferma del profilo per ${object.company_id.name}" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "All Badges" +msgstr "Tutti i riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr " Tutti i riconoscimenti" + +#. 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_header +msgid "EDIT PROFILE" +msgstr "MODIFICA PROFILO" + +#. 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_content +msgid "Current rank:" +msgstr "Livello attuale:" + +#. module: website_profile +#: 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_profile_content +msgid "Joined" +msgstr "Iscritto" + +#. 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 "Nazione" + +#. 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 "Riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "XP" +msgstr "PE" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" Conferma profilo per ${object.company_id.name}\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Ciao ${object.name},

\n" +" Per accedere al sito web di \"${object.company_id.name}\" sei invitato a confermare l'e-mail.\n" +" Per procedere, fai clic sul seguente pulsante:\n" +"

\n" +" Grazie per aver partecipato!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Fornito da Odoo\n" +"
\n" +"
\n" +" " + +#. 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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Nazione..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Sembra che l'e-mail non sia stata verificata.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. 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 "" + +#. 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 "" + +#. 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.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 +#: 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 "Rank badge" +msgstr "" + +#. 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.private_profile +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 courses" +msgstr "Ricerca corsi" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Aggiorna" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utenti" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "pe" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Utenti" diff --git a/addons/website_profile/i18n/ja.po b/addons/website_profile/i18n/ja.po new file mode 100644 index 00000000..14ae8ff3 --- /dev/null +++ b/addons/website_profile/i18n/ja.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Shunho Kin , 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro , 2020 +# Manami Hashi , 2020 +# Norimichi Sugimoto , 2020 +# Tim Siu Lai , 2020 +# Tsuda Ryoko , 2021 +# Noma Yuki, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Noma Yuki, 2021\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "国..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/ka.po b/addons/website_profile/i18n/ka.po new file mode 100644 index 00000000..69705fc3 --- /dev/null +++ b/addons/website_profile/i18n/ka.po @@ -0,0 +1,566 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Davit Matchakhelidze , 2021 +# Mari Khomeriki , 2021 +# Saba Khmaladze , 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri , 2021 +# Gvantsa Gvinianidze , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Gvantsa Gvinianidze , 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "ქვეყანა..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/km.po b/addons/website_profile/i18n/km.po new file mode 100644 index 00000000..681cedb2 --- /dev/null +++ b/addons/website_profile/i18n/km.po @@ -0,0 +1,562 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Sengtha Chay , 2020 +# Chan Nath , 2020 +# Lux Sok , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Lux Sok , 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "ប្រទេស ..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/ko.po b/addons/website_profile/i18n/ko.po new file mode 100644 index 00000000..a962e588 --- /dev/null +++ b/addons/website_profile/i18n/ko.po @@ -0,0 +1,654 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI , 2020 +# Linkup , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Linkup , 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} 프로필 확인\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" ${object.name}님.

\n" +" \"${object.company_id.name}\" 웹사이트에 접속하기 위해서 이메일을 확인하고자 초대하였습니다.\n" +" 이메일을 확인하려면 다음 링크를 클릭하여 주십시오 :\n" +"

\n" +" 참여해 주셔서 감사합니다!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Odoo 제공\n" +"
\n" +"
\n" +" " + +#. 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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "국가..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "사용자 순위" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ 사용자" diff --git a/addons/website_profile/i18n/lb.po b/addons/website_profile/i18n/lb.po new file mode 100644 index 00000000..bfc76c6f --- /dev/null +++ b/addons/website_profile/i18n/lb.po @@ -0,0 +1,477 @@ +# 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: 2019-08-26 08:17+0000\n" +"PO-Revision-Date: 2019-08-26 09:16+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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_content +msgid "40%" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "Check all available badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " Check available badges" +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.badge_content +msgid " awarded users" +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.all_user_card +msgid "" +"Unpublished" +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 "Public profile" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Real name" +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: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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.badge_content +#: 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_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 "Country..." +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "It appears your email has not been verified.
" +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.user_badges +msgid "No badge 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 "Rank badge" +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_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.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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_website +msgid "Website" +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.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.user_profile_sub_nav +msgid "breadcrumb" +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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/lt.po b/addons/website_profile/i18n/lt.po new file mode 100644 index 00000000..01bf0114 --- /dev/null +++ b/addons/website_profile/i18n/lt.po @@ -0,0 +1,569 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# Arminas Grigonis , 2021 +# UAB "Draugiški sprendimai" , 2021 +# Antanas Muliuolis , 2021 +# Monika Raciunaite , 2021 +# digitouch UAB , 2021 +# Linas Versada , 2021 +# Jonas Zinkevicius , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jonas Zinkevicius , 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr " apdovanoti vartotojai" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Šalis..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. 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.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 "" +"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 "Rank badge" +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 "Paieška" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Atnaujinti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Vartotojai" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/lv.po b/addons/website_profile/i18n/lv.po new file mode 100644 index 00000000..5e93350f --- /dev/null +++ b/addons/website_profile/i18n/lv.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/mn.po b/addons/website_profile/i18n/mn.po new file mode 100644 index 00000000..e7098298 --- /dev/null +++ b/addons/website_profile/i18n/mn.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Khishigbat Ganbold , 2020 +# Uuganbayar Batbaatar , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Uuganbayar Batbaatar , 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "Улс..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Хэрэглэгчид" diff --git a/addons/website_profile/i18n/nb.po b/addons/website_profile/i18n/nb.po new file mode 100644 index 00000000..61b7a155 --- /dev/null +++ b/addons/website_profile/i18n/nb.po @@ -0,0 +1,664 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Jorunn D. Newth, 2020 +# Marius Stedjan , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Marius Stedjan , 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Validering av profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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_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.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "REDIGER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "REDIGER PROFIL" + +#. 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_content +msgid "Current rank:" +msgstr "Nåværende grad:" + +#. module: website_profile +#: 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.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 "Biografi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "City" +msgstr "Sted" + +#. 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-post" + +#. 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 "Offentlig profil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Website" +msgstr "Nettsted" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Medaljer" + +#. 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 "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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Validering av profil\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hei ${object.name},

\n" +" Her kommer e-post hvor du kan validere e-postadressen din, slik at du kan få: tilgang til \"${object.company_id.name}\"s nettsted.\n" +" Klikk på følgende link for å validere e-postadressen din:\n" +"

\n" +" Takk for at du deltar!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +"  \n" +"
\n" +"
\n" +" " + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Land..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Det ser ut til at e-postadressen din ikke er verifisert.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. 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.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 epostadresse for å motta varslinger om svar eller " +"kommentarer." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Rank badge" +msgstr "Gradmedalje" + +#. 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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Brukergrad" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Brukere" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Brukere" diff --git a/addons/website_profile/i18n/nl.po b/addons/website_profile/i18n/nl.po new file mode 100644 index 00000000..5ebf0e87 --- /dev/null +++ b/addons/website_profile/i18n/nl.po @@ -0,0 +1,671 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken , 2020 +# Cécile Collart , 2020 +# Odoo Experts Consultants , 2020 +# Erwin van der Ploeg (Odoo Experts) , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Erwin van der Ploeg (Odoo Experts) , 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Profiel validatie" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.user_profile_edit_content +msgid "" +msgstr "" +"" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT" +msgstr "WIJZIG" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "WIJZIG PROFIEL" + +#. 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_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 "Geregistreerd" + +#. 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 "Plaats" + +#. 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! Uw 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Profiel validatie\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hallo ${object.name},

\n" +" U bent uitgenodigd om uw e-mail te valideren om toegang te krijgen tot \"${object.company_id.name}\" zijn website.\n" +" Klik op de volgende link om uw profiel te valideren:\n" +"

\n" +" Bedankt voor uw medewerking!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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 "Zichtbaar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "Klik hier om een verificatie e-mail te sturen." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "Close" +msgstr "Sluiten" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country..." +msgstr "Land..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "Wijzigen" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Gamification badge" + +#. 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 "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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Het lijkt erop alsof uw e-mailadres nog niet gecontroleerd is.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. 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.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 +#: 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 "Rank badge" +msgstr "Rangbadge" + +#. 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.private_profile +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 "Zoek" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Zoek cursussen" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Bijwerken" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Gebruikersrang" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Gebruikers" + +#. 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 u een cursus af hebt of een mijlpaal hebt bereikt wordt u beloond " +"met badges." + +#. 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 "" +"U kan meer punten scoren door de vragen te beantwoorden aan het einde van " +"elke cursus. U kan 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Gebruikers" diff --git a/addons/website_profile/i18n/pl.po b/addons/website_profile/i18n/pl.po new file mode 100644 index 00000000..19c3a7cc --- /dev/null +++ b/addons/website_profile/i18n/pl.po @@ -0,0 +1,574 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Dariusz Żbikowski , 2020 +# Grzegorz Grzelak , 2020 +# Tomasz Leppich , 2020 +# Piotr Szlązak , 2020 +# Marcin Młynarczyk , 2020 +# Karol Rybak , 2020 +# Piotr Cierkosz , 2020 +# Paweł Wodyński , 2020 +# Maksym , 2020 +# Martin Trigaux, 2020 +# Piotr Strębski , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Piotr Strębski , 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr "nagrodzeni użytkownicy" + +#. 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 "Biografia" + +#. 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 "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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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.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 "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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Kraj..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. 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: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.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 "" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. 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 "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 "" + +#. 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.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 "Nie znaleziono użytkownika dla " + +#. 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 "Rank badge" +msgstr "" + +#. 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.private_profile +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 courses" +msgstr "Szukaj Kursów " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +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 "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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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 "" + +#. 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_profile_edit_content +msgid "Update" +msgstr "Aktualizacja" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Użytkownicy" + +#. 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 WWW" + +#. 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 "" + +#. 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.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.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 "w tym miesiącu" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/pt.po b/addons/website_profile/i18n/pt.po new file mode 100644 index 00000000..a20b58da --- /dev/null +++ b/addons/website_profile/i18n/pt.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Manuela Silva , 2020 +# Nuno Silva , 2020 +# Reinaldo Ramos , 2020 +# Marcelo Pereira , 2020 +# Pedro Filipe , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Pedro Filipe , 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr " utilizadores recompensados" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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 "" + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "País..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nome" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. 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.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 "" +"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 "Rank badge" +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 "Procurar" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Atualizar" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilizadores" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/pt_BR.po b/addons/website_profile/i18n/pt_BR.po new file mode 100644 index 00000000..cf59efb2 --- /dev/null +++ b/addons/website_profile/i18n/pt_BR.po @@ -0,0 +1,681 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo , 2020 +# Rafael H L Moretti , 2020 +# danimaribeiro , 2020 +# Martin Trigaux, 2020 +# Marcel Savegnago , 2020 +# Emanuel Martins , 2020 +# Mateus Lopes , 2020 +# Peter Leaf , 2020 +# Luiz Carlos de Lima , 2020 +# AlexSandro Cruz , 2020 +# grazziano , 2020 +# André Augusto Firmino Cordeiro , 2020 +# Hélio Dias de Brito Teixeira , 2020 +# Silmar , 2020 +# Lauro de Lima , 2020 +# Fernando Colus , 2020 +# Keli Brugalli , 2020 +# Éder Brito , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Éder Brito , 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Validação de perfil" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 cursos 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 ". Tentar outra pesquisa." + +#. 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.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_header +msgid "EDIT PROFILE" +msgstr "EDITAR PERFIL" + +#. 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_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 "Participante" + +#. 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 email acaba de ser " +"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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Validação de Perfil\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Olá ${object.name},

\n" +" Você foi convidado a validar seu e-mail para obter acesso ao site \"${object.company_id.name}\".\n" +" Para validar o seu e-mail, clique no link a seguir:\n" +"

\n" +" Obrigado por sua participação!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Distribuído por Odoo\n" +"
\n" +"
\n" +" " + +#. 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 "Todo o tempo" + +#. 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 "Distintivos" + +#. 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 ser especialmente útil.
Emblemas\n" +" aparecem em sua página de perfil e suas postagens." + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "Clique aqui para enviar um e-mail de verificação." + +#. 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 "Country..." +msgstr "País..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Medalha de Gamificação" + +#. 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 marcar mais pontos?" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Parece que seu e-mail não foi verificado.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. 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 mobile" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "More info" +msgstr "Mais informação" + +#. 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.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 +#: 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 poder receber " +"notificações de respostas ou comentários." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.rank_badge_main +msgid "Rank badge" +msgstr "Emblema de classificação" + +#. 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.private_profile +msgid "Return to the website." +msgstr "Retornar 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 courses" +msgstr "Pesquisar cursos" + +#. 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:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "A URL completa 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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Atualizar" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Usuários" + +#. 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 "Website" + +#. 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.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 marcar mais pontos respondendo a questionários no final de cada " +"conteúdo do curso. Os pontos também podem ser ganhos no fórum. Siga este " +"link para as orientações do fórum." + +#. 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 "Detalhes" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Usuários" diff --git a/addons/website_profile/i18n/ro.po b/addons/website_profile/i18n/ro.po new file mode 100644 index 00000000..132726fe --- /dev/null +++ b/addons/website_profile/i18n/ro.po @@ -0,0 +1,574 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu , 2020 +# Foldi Robert , 2020 +# Hongu Cosmin , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Hongu Cosmin , 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Validarea profilului" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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_badges +msgid "All Badges" +msgstr "Toate insignele" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid " All Badges" +msgstr "Toate insignele" + +#. 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 "EDITARE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "EDIT PROFILE" +msgstr "EDITARE PROFIL" + +#. 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_content +msgid "Current rank:" +msgstr "Rang curent:" + +#. module: website_profile +#: 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.user_profile_content +msgid "Joined" +msgstr "Alăturat" + +#. 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 "Localitate" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Country" +msgstr "Țară" + +#. 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 "Nume" + +#. 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-ul web" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "Badges" +msgstr "Insigne" + +#. 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 "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 "Clasează după :" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "Faceți clic aici pentru a trimite un e-mail de verificare." + +#. 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 "Country..." +msgstr "Țara..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +msgstr "Insignă gamificare" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Se pare că e-mailul dumneavoastră nu a fost verificat.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. 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 "" + +#. 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 "" + +#. 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.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 "Rank badge" +msgstr "Rang insignă" + +#. 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: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 "Actualizează" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Utilizatori" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/ru.po b/addons/website_profile/i18n/ru.po new file mode 100644 index 00000000..c1b46af0 --- /dev/null +++ b/addons/website_profile/i18n/ru.po @@ -0,0 +1,567 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Collex100, 2020 +# Ivan Yelizariev , 2020 +# Sergey Vilizhanin, 2020 +# ILMIR , 2020 +# Irina Fedulova , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Irina Fedulova , 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "Страна..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/si.po b/addons/website_profile/i18n/si.po new file mode 100644 index 00000000..b4a58866 --- /dev/null +++ b/addons/website_profile/i18n/si.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/sk.po b/addons/website_profile/i18n/sk.po new file mode 100644 index 00000000..5ef207d0 --- /dev/null +++ b/addons/website_profile/i18n/sk.po @@ -0,0 +1,569 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Robert Kirschner , 2020 +# Martin Trigaux, 2020 +# Jaroslav Bosansky , 2020 +# gebri , 2020 +# Jan Prokop, 2020 +# Alexandra Brencicova , 2020 +# Rastislav Brencic , 2020 +# karolína schusterová , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: karolína schusterová , 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +msgstr " ocenený používatelia" + +#. 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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Krajina..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. 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.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 "" +"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 "Rank badge" +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 "Vyhľadávanie" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Aktualizácia" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Užívatelia" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/sl.po b/addons/website_profile/i18n/sl.po new file mode 100644 index 00000000..7b8ecf91 --- /dev/null +++ b/addons/website_profile/i18n/sl.po @@ -0,0 +1,566 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic , 2021 +# matjaz k , 2021 +# Grega Vavtar , 2021 +# Jasmina Macur , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jasmina Macur , 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "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 "" + +#. 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.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 "Počisti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Država..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. 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.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 "" +"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 "Rank badge" +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 "Iskanje" + +#. 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: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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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 "" + +#. 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 "Posodobi" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Uporabniki" + +#. 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 "" + +#. 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.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.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 "ta mesec" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/sv.po b/addons/website_profile/i18n/sv.po new file mode 100644 index 00000000..dfb92b39 --- /dev/null +++ b/addons/website_profile/i18n/sv.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2021 +# Robin Chatfield , 2021 +# 03992e16f8df6e39b9d1cc0ff635887e, 2021 +# Kim Asplund , 2021 +# Anders Wallenquist , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Anders Wallenquist , 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "Emblem" + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Land..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. 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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. 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 "Nästa nivå:" + +#. 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 "Rank badge" +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 "Sök" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Sök kurser" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +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 fullständiga 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 +#: 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 "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_profile_edit_content +msgid "Update" +msgstr "Uppdatera" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Användare" + +#. 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.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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/th.po b/addons/website_profile/i18n/th.po new file mode 100644 index 00000000..7dc27817 --- /dev/null +++ b/addons/website_profile/i18n/th.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# Khwunchai Jaengsawang , 2020 +# gsong , 2020 +# Somchart Jabsung , 2020 +# Odoo Thaidev , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Odoo Thaidev , 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "Can Publish" + +#. 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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "ประเทศ..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "รหัส" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__is_published +msgid "Is Published" +msgstr "Is Published" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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 +#: 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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "ผู้ใช้งาน" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__website_published +msgid "Visible on current website" +msgstr "Visible on current website" + +#. 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 "" + +#. 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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/tr.po b/addons/website_profile/i18n/tr.po new file mode 100644 index 00000000..7b5ea4a6 --- /dev/null +++ b/addons/website_profile/i18n/tr.po @@ -0,0 +1,674 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Ediz Duman , 2020 +# Martin Trigaux, 2020 +# Levent Karakaş , 2020 +# Murat Kaplan , 2020 +# Ahmet Altinisik , 2020 +# Saban Yildiz , 2020 +# Ertuğrul Güreş , 2020 +# Ramiz Deniz Öner , 2020 +# Gökhan Erdoğdu , 2020 +# Umur Akın , 2020 +# Buket Şeker , 2020 +# abc Def , 2020 +# Tugay Hatıl , 2020 +# Murat Durmuş , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Murat Durmuş , 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_profile +#: model:mail.template,subject:website_profile.validation_email +msgid "${object.company_id.name} Profile validation" +msgstr "${object.company_id.name} Profil doğrulaması" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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_header +msgid "EDIT PROFILE" +msgstr "PROFİLİ DÜZENLE" + +#. 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_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ılım" + +#. 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 "Kent" + +#. 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 "E-posta" + +#. 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 "Halka açık 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 "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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Profil doğrulaması\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Merhaba ${object.name},

\n" +" Adresine erişmek için e-postanızı doğrulamaya davet edildiniz \"${object.company_id.name}\" website.\n" +" E-postanızı doğrulamak için lütfen aşağıdaki bağlantıyı tıklayın:\n" +"

\n" +" Katılımınız için teşekkürler!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Tarafından desteklenmektedir Odoo\n" +"
\n" +"
\n" +" " + +#. 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 "" + +#. 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.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 "Biyografi" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__can_publish +msgid "Can Publish" +msgstr "Yayımlanabilir" + +#. 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.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Ülke..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. 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: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.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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +msgstr "Görünüşe göre e-postanız doğrulanmadı.
" + +#. 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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. 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.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 "İçin kullanıcı bulunamadı" + +#. 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 "Rank badge" +msgstr "Sıralama rozeti" + +#. 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.private_profile +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 courses" +msgstr "Kursları ara" + +#. 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:ir.model.fields,help:website_profile.field_gamification_badge__website_url +msgid "The full URL to access the document through the website." +msgstr "Belgeye web sitesinden erişim için tam URL adresi." + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "This month" +msgstr "Bu Ay" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Güncelle" + +#. 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:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Kullanıcılar" + +#. 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.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.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.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 "" + +#. 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.user_profile_sub_nav +msgid "└ Users" +msgstr "└Kullanıcılar" diff --git a/addons/website_profile/i18n/uk.po b/addons/website_profile/i18n/uk.po new file mode 100644 index 00000000..f369ee3f --- /dev/null +++ b/addons/website_profile/i18n/uk.po @@ -0,0 +1,661 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# ТАрас , 2020 +# Alina Lisnenko , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Alina Lisnenko , 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Вітаємо ${object.name},

\n" +" Вас запросили перевірити свій email на замовленні, щоб отримати доступ на веб-сайт \"${object.company_id.name}\" .\n" +" Щоби перевірити email, перейдіть за цим посиланням:\n" +"

\n" +" Дякуємо за вашу участь!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +"
\n" +" Зроблено Odoo\n" +"
\n" +"
\n" +" " + +#. 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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "Країна..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "Звання користувача" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ Users" diff --git a/addons/website_profile/i18n/ur.po b/addons/website_profile/i18n/ur.po new file mode 100644 index 00000000..64281df3 --- /dev/null +++ b/addons/website_profile/i18n/ur.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: 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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/vi.po b/addons/website_profile/i18n/vi.po new file mode 100644 index 00000000..4b1397be --- /dev/null +++ b/addons/website_profile/i18n/vi.po @@ -0,0 +1,569 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# sao sang , 2020 +# fanha99 , 2020 +# Thang Duong Bao , 2020 +# Duy BQ , 2020 +# Trinh Tran Thi Phuong , 2020 +# Dung Nguyen Thi , 2020 +# Nancy Momoland , 2021 +# Trần Hà , 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Trần Hà , 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.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_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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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 "" + +#. 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 "Huy chương" + +#. 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 "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 "Làm sạch" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "Click here to send a verification email." +msgstr "" + +#. 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 "Country..." +msgstr "Quốc gia..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "Edit" +msgstr "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: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.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 "" + +#. 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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. 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 "Nhiều thông tin hơn" + +#. 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 "Hạng kế tiếp:" + +#. 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 "" +"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 "Rank badge" +msgstr "" + +#. 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.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 "Tìm kiếm" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search courses" +msgstr "Tìm khóa học" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Search users" +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 +#: model_terms:ir.ui.view,arch_db:website_profile.private_profile +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_profile_edit_content +msgid "Update" +msgstr "Cập nhật" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +msgstr "Người dùng" + +#. 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ị ở website 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 "Địa chỉ 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.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.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.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 "tháng này" + +#. 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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/website_profile.pot b/addons/website_profile/i18n/website_profile.pot new file mode 100644 index 00000000..c67e2720 --- /dev/null +++ b/addons/website_profile/i18n/website_profile.pot @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-01 07:29+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: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.email_validation_banner +msgid "&times;" +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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "" + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/zh_CN.po b/addons/website_profile/i18n/zh_CN.po new file mode 100644 index 00000000..5e13de7d --- /dev/null +++ b/addons/website_profile/i18n/zh_CN.po @@ -0,0 +1,574 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# Martin Trigaux, 2020 +# liAnGjiA , 2020 +# v2exerer <9010446@qq.com>, 2020 +# 苏州远鼎 , 2020 +# xiaobin wu , 2020 +# 老窦 北京 <2662059195@qq.com>, 2020 +# bf2549c5415a9287249cba2b8a5823c7, 2020 +# 敬雲 林 , 2020 +# Fisher , 2020 +# Felix Yuen , 2020 +# snow wang <147156565@qq.com>, 2020 +# Jeanphy , 2020 +# John An , 2020 +# Felix Yang - Elico Corp , 2020 +# Jeffery CHEN Fan , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jeffery CHEN Fan , 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "国家..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "经验值" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "" diff --git a/addons/website_profile/i18n/zh_TW.po b/addons/website_profile/i18n/zh_TW.po new file mode 100644 index 00000000..5da62f3b --- /dev/null +++ b/addons/website_profile/i18n/zh_TW.po @@ -0,0 +1,650 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_profile +# +# Translators: +# 敬雲 林 , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: 敬雲 林 , 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: 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.email_validation_banner +msgid "&times;" +msgstr "&times;" + +#. 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 "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.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.badge_content +msgid " awarded users" +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" +" ${object.company_id.name} Profile validation\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" Hello ${object.name},

\n" +" You have been invited to validate your email in order to get access to \"${object.company_id.name}\" 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" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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" +" ${object.company_id.name} 個人資料驗證\n" +" \n" +" \n" +" \"${user.company_id.name}\"/\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +"

\n" +" 您好 ${object.name},

\n" +" 您被邀請驗證電子郵件來登入 \"${object.company_id.name}\" 網站平台.\n" +" 請點選以下連結驗證您的電子郵件:\n" +"

\n" +" 感謝您!\n" +"

\n" +"
\n" +"
\n" +"
\n" +"
\n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
\n" +" ${user.company_id.name}\n" +" \n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | \n" +" ${user.company_id.email}\n" +" \n" +" % endif\n" +" % if user.company_id.website:\n" +" | \n" +" ${user.company_id.website}\n" +" \n" +" % endif\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.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.user_profile_content +msgid "Click here to send a verification email." +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 "Country..." +msgstr "國家..." + +#. module: website_profile +#: model:ir.model.fields,field_description:website_profile.field_gamification_badge__display_name +#: model:ir.model.fields,field_description:website_profile.field_res_users__display_name +#: model:ir.model.fields,field_description:website_profile.field_website__display_name +msgid "Display Name" +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:ir.model,name:website_profile.model_gamification_badge +msgid "Gamification Badge" +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__id +#: model:ir.model.fields,field_description:website_profile.field_res_users__id +#: model:ir.model.fields,field_description:website_profile.field_website__id +msgid "ID" +msgstr "ID" + +#. 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.email_validation_banner +msgid "It appears your email has not been verified.
" +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_gamification_badge____last_update +#: model:ir.model.fields,field_description:website_profile.field_res_users____last_update +#: model:ir.model.fields,field_description:website_profile.field_website____last_update +msgid "Last Modified on" +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.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 "Rank badge" +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: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_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "User rank" +msgstr "使用者等級" + +#. module: website_profile +#: model:ir.model,name:website_profile.model_res_users +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "Users" +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.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.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.profile_next_rank_card +msgid "xp" +msgstr "xp" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_sub_nav +msgid "└ Users" +msgstr "└ 使用者" diff --git a/addons/website_profile/models/__init__.py b/addons/website_profile/models/__init__.py new file mode 100644 index 00000000..e5d082ad --- /dev/null +++ b/addons/website_profile/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/addons/website_profile/models/gamification_badge.py b/addons/website_profile/models/gamification_badge.py new file mode 100644 index 00000000..3c02cedb --- /dev/null +++ b/addons/website_profile/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/addons/website_profile/models/res_users.py b/addons/website_profile/models/res_users.py new file mode 100644 index 00000000..6b184ddc --- /dev/null +++ b/addons/website_profile/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' + + def __init__(self, pool, cr): + init_res = super(Users, self).__init__(pool, cr) + type(self).SELF_WRITEABLE_FIELDS = list( + set( + self.SELF_WRITEABLE_FIELDS + + ['country_id', 'city', 'website', 'website_description', 'website_published'])) + type(self).SELF_READABLE_FIELDS = type(self).SELF_READABLE_FIELDS + ['karma'] + return init_res + + @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) + base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url') + token_url = 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/addons/website_profile/models/website.py b/addons/website_profile/models/website.py new file mode 100644 index 00000000..76a37eba --- /dev/null +++ b/addons/website_profile/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/addons/website_profile/security/ir.model.access.csv b/addons/website_profile/security/ir.model.access.csv new file mode 100644 index 00000000..7ab1ca91 --- /dev/null +++ b/addons/website_profile/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_website_publisher,gamification.karma.rank.access.website.publisher,gamification.model_gamification_karma_rank,website.group_website_publisher,1,1,1,1 diff --git a/addons/website_profile/static/src/img/badge_bronze.svg b/addons/website_profile/static/src/img/badge_bronze.svg new file mode 100644 index 00000000..a94491e8 --- /dev/null +++ b/addons/website_profile/static/src/img/badge_bronze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/website_profile/static/src/img/badge_gold.svg b/addons/website_profile/static/src/img/badge_gold.svg new file mode 100644 index 00000000..423f63e6 --- /dev/null +++ b/addons/website_profile/static/src/img/badge_gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/website_profile/static/src/img/badge_silver.svg b/addons/website_profile/static/src/img/badge_silver.svg new file mode 100644 index 00000000..dd16d4f2 --- /dev/null +++ b/addons/website_profile/static/src/img/badge_silver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/website_profile/static/src/img/rank_1.svg b/addons/website_profile/static/src/img/rank_1.svg new file mode 100644 index 00000000..6477a906 --- /dev/null +++ b/addons/website_profile/static/src/img/rank_1.svg @@ -0,0 +1 @@ +1st \ No newline at end of file diff --git a/addons/website_profile/static/src/img/rank_2.svg b/addons/website_profile/static/src/img/rank_2.svg new file mode 100644 index 00000000..e9ae886a --- /dev/null +++ b/addons/website_profile/static/src/img/rank_2.svg @@ -0,0 +1 @@ +2nd \ No newline at end of file diff --git a/addons/website_profile/static/src/img/rank_3.svg b/addons/website_profile/static/src/img/rank_3.svg new file mode 100644 index 00000000..8c22af97 --- /dev/null +++ b/addons/website_profile/static/src/img/rank_3.svg @@ -0,0 +1 @@ +3rd \ No newline at end of file diff --git a/addons/website_profile/static/src/js/website_profile.js b/addons/website_profile/static/src/js/website_profile.js new file mode 100644 index 00000000..105bdb03 --- /dev/null +++ b/addons/website_profile/static/src/js/website_profile.js @@ -0,0 +1,143 @@ +odoo.define('website_profile.website_profile', function (require) { +'use strict'; + +var publicWidget = require('web.public.widget'); +var wysiwygLoader = require('web_editor.loader'); + +publicWidget.registry.websiteProfile = publicWidget.Widget.extend({ + selector: '.o_wprofile_email_validation_container', + read_events: { + 'click .send_validation_email': '_onSendValidationEmailClick', + 'click .validated_email_close': '_onCloseValidatedEmailClick', + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + /** + * @private + * @param {Event} ev + */ + _onSendValidationEmailClick: function (ev) { + ev.preventDefault(); + var self = this; + var $element = $(ev.currentTarget); + this._rpc({ + route: '/profile/send_validation_email', + params: {'redirect_url': $element.data('redirect_url')}, + }).then(function (data) { + if (data) { + self.$('button.validation_email_close').click(); + } + }); + }, + + /** + * @private + */ + _onCloseValidatedEmailClick: function () { + this._rpc({ + route: '/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_wprofile_submit_btn': '_onSubmitClick', + }, + + /** + * @override + */ + start: function () { + var def = this._super.apply(this, arguments); + if (this.editableMode) { + return def; + } + + // Warning: Do not activate any option that adds inline style. + // Because the style is deleted after save. + var toolbar = [ + ['style', ['style']], + ['font', ['bold', 'italic', 'underline', 'clear']], + ['para', ['ul', 'ol', 'paragraph']], + ['table', ['table']], + ['insert', ['link', 'picture']], + ['history', ['undo', 'redo']], + ]; + + var $textarea = this.$('textarea.o_wysiwyg_loader'); + var loadProm = wysiwygLoader.load(this, $textarea[0], { + toolbar: toolbar, + recordInfo: { + context: this._getContext(), + res_model: 'res.users', + res_id: parseInt(this.$('input[name=user_id]').val()), + }, + disableResizeImage: true, + }).then(wysiwyg => { + this._wysiwyg = wysiwyg; + }); + + return Promise.all([def, loadProm]); + }, + + //-------------------------------------------------------------------------- + // 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_forum_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_forum_avatar_img').attr('src', '/web/static/src/img/placeholder.png'); + $form.append($('', { + name: 'clear_image', + id: 'forum_clear_image', + type: 'hidden', + })); + }, + /** + * @private + */ + _onSubmitClick: function () { + if (this._wysiwyg) { + this._wysiwyg.save(); + } + }, +}); + +return publicWidget.registry.websiteProfile; + +}); diff --git a/addons/website_profile/static/src/scss/website_profile.scss b/addons/website_profile/static/src/scss/website_profile.scss new file mode 100644 index 00000000..98e7da85 --- /dev/null +++ b/addons/website_profile/static/src/scss/website_profile.scss @@ -0,0 +1,256 @@ +// 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 { + @include size(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-yiq($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(sm) { + 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 { + 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(theme-color('primary'), 10%); + --o-pc-color-stop-2: theme-color('primary'); + } + } + + .o_pc_overlay { + @include o-position-absolute(0,0,0,0); + } + + @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(sm) { + ~ .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 theme-color('secondary'); +} diff --git a/addons/website_profile/views/gamification_badge_views.xml b/addons/website_profile/views/gamification_badge_views.xml new file mode 100644 index 00000000..f7b3b087 --- /dev/null +++ b/addons/website_profile/views/gamification_badge_views.xml @@ -0,0 +1,15 @@ + + + + gamification.badge.view.form.inherit.website + gamification.badge + + + + + + + + diff --git a/addons/website_profile/views/website_profile.xml b/addons/website_profile/views/website_profile.xml new file mode 100644 index 00000000..52a7338b --- /dev/null +++ b/addons/website_profile/views/website_profile.xml @@ -0,0 +1,654 @@ + + +