diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/website_profile | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_profile')
70 files changed, 31148 insertions, 0 deletions
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/<int:user_id>', + ], 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/<int:user_id>'], 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/<int: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 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + + <!-- Email template for email validation (for karma purpose) --> + <record id="validation_email" model="mail.template"> + <field name="name">Profile: Email Verification</field> + <field name="model_id" ref="base.model_res_users"/> + <field name="subject">${object.company_id.name} Profile validation</field> + <field name="email_from">${user.email_formatted | safe}</field> + <field name="email_to">${object.email_formatted | safe}</field> + <field name="body_html" type="html"> +<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center"> +<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;"> +<tbody> + <!-- HEADER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr> + <td valign="middle"> + <span style="font-size: 20px; font-weight: bold;"> + ${object.company_id.name} Profile validation + </span> + </td> + <td valign="middle" align="right"> + <img src="/logo.png?company=${user.company_id.id}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${user.company_id.name}"/> + </td> + </tr> + <tr> + <td colspan="2" style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/> + </td> + </tr> + </table> + </td> + </tr> + <!-- CONTENT --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr> + <td valign="top" style="font-size: 13px;"> + <p style="margin: 0px; padding: 0px; font-size: 13px;"> + Hello ${object.name},<br /><br /> + 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: + <div style="margin: 16px 0px 16px 0px;"> + <a href="${ctx.get('token_url')}" + style="background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;"> + Validate my account + </a> + </div> + Thanks for your participation! + </p> + </td> + </tr> + <tr> + <td style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/> + </td> + </tr> + </table> + </td> + </tr> + <!-- FOOTER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style=" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr> + <td valign="middle" align="left"> + ${user.company_id.name} + </td> + <td valign="middle" align="right" style="opacity: 0.7;"> + ${user.company_id.phone} + % if user.company_id.email: + | <a href="'mailto:%s' % ${user.company_id.email}" style="text-decoration:none; color: #454748;"> + ${user.company_id.email} + </a> + % endif + % if user.company_id.website: + | <a href="${user.company_id.website}" style="text-decoration:none; color: #454748;"> + ${user.company_id.website} + </a> + % endif + </td> + </tr> + </table> + </td> + </tr> +</tbody> +</table> +</td></tr> +<!-- POWERED BY --> +<tr><td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;"> + <tr><td style="text-align: center; font-size: 13px;"> + Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&utm_medium=forum" style="color: #875A7B;">Odoo</a> + </td></tr> + </table> +</td></tr> +</table> + </field> + <field name="lang">${object.lang}</field> + <field name="auto_delete" eval="True"/> + </record> + </data> +</odoo> 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 <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Martin Trigaux, 2020 +# hoxhe Aits <hoxhe0@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Shaima Safar <shaima.safar@open-inside.com>, 2020 +# Rabie Bou Khodor <RBK@odoo.com>, 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 <RBK@odoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> المستخدمون المكافئون</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <vladimirov.rosen@gmail.com>, 2020 +# Kaloyan Naumov <kaloyan@lumnus.net>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 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 <marabo2000@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> наградени потребители</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <azmikbal@gmail.com>, 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 <azmikbal@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <mtbochaca@gmail.com>, 2020 +# Carles Antoli <carlesantoli@hotmail.com>, 2020 +# Eric Antones <eantones@users.noreply.github.com>, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Sandra Franch <sandra.franch@upc.edu>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# M Palau <mpalau@tda.ad>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> Usuaris premiats</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <haval.abdulkarim@gmail.com>, 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 <haval.abdulkarim@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <jan.horzinka@centrum.cz>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Všechny odznaky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Všechny odznaky" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>UPRAVIT" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/> UPRAVIT PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> ocenění uživatelé</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Aktuální úroveň:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Odznaky</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Připojen</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Životopis</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Město</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Země</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-mail</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Název</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Veřejný profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Odznaky</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Odznaky</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">Zkušenost</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Gratulujeme! Váš e-mail byl právě " +"ověřen.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Hodnocení podle:</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Zdá se, že váš e-mail nebyl ověřen. <br/>" + +#. 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 <hhg@gabelgaard.org>, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Ejner Sønniksen <ejner@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# walther_b <wba@miracle.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 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 <mads@vkdata.dk>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Alle Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Alle Emblemer" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Rediger\"/> " + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>REDIGER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>REDIGER PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> tildelte brugere</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Nuværende rang:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Emblemer</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Deltager</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografi</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">By</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Land</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Email</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Navn</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Offentlig profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Hjemmeside</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Emblemer</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Erfaringspoint</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Emblemer</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">Erfaringspoint</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Tillykke! Din email er lige blevet " +"godkendt.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Ranger ud fra :</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profil validering\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hej ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Godkend min konto\n" +" </a>\n" +" </div>\n" +" Tak for din deltagelse!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" I kraft af <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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. <br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Det ser ud til, at din email ikke er blevet godkendt.<br/>" + +#. 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 <trevi@twanda.com>, 2020 +# Andi, 2020 +# Thomas Neu <t.neu@runbox.com>, 2020 +# Leon Grill <leg@odoo.com>, 2020 +# Chris Egal <sodaswed@web.de>, 2020 +# JEK Odoo <jek@odoo.com>, 2020 +# Oliver Roch <oliver.roch@d9t.de>, 2020 +# UteHaus, 2020 +# Kevin Harrings <kha@odoo.com>, 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 <kha@odoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>BEARBEITEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>PROFIL BEARBEITEN" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> Benutzer mit Auszeichnung</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Aktueller Rang:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Auszeichnungen</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Beigetregen</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografie</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Stadt</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Land</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Email</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Öffentliches Profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Website</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Auszeichnungen</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Auszeichnungen</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Glückwunsch! Ihre Email wurde soeben " +"validiert.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profilverifizierung\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Guten Tag ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Mein Konto verifizieren\n" +" </a>\n" +" </div>\n" +" Danke für Ihre Teilnahme!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Unterstützt von <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Es scheint, Ihre E-Mail-Adresse wurde noch nicht bestätigt.<br/>" + +#. 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 <goutoudis@gmail.com>, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 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 <george_tarasidis@yahoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <pedro.baeza@gmail.com>, 2020 +# Lina Maria Avendaño Carvajal <lina8823@gmail.com>, 2020 +# Rick Hunter <rick_hunter_ec@yahoo.com>, 2020 +# Luis M. Ontalba <luis.martinez@tecnativa.com>, 2020 +# gabriumaa <gabriel.umana@delfixcr.com>, 2020 +# Antonio Trueba, 2020 +# Jon Perez <jop@odoo.com>, 2020 +# John Guardado <jgu@odoo.com>, 2020 +# VivianMontana23 <vivianpvm@gmail.com>, 2020 +# Jesse Garza <jga@odoo.com>, 2020 +# Osiris Román <osiris.roman@yachaytech.edu.ec>, 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 <osiris.roman@yachaytech.edu.ec>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> usuarios premiados</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Rango actual:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Insignias</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Unido</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografía</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Ciudad</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">País</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Correo electrónico</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Perfil público</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Página web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Insignias</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Insignias</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\"> ¡Felicitaciones! Su correo " +"electrónico acaba de ser validado.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" Validación del perfil de ${object.company_id.name}\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hola ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Valida mi cuenta\n" +" </a>\n" +" </div>\n" +" ¡Gracias por tu participación!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Con tecnología de <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Parece que su correo electrónico no ha sido verificado<br/>" + +#. 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 <cco@odoo.com>, 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 <cco@odoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> usuarios premiados</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Rango actual:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Insignias</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Unido</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografía</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Ciudad</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">País</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Correo electrónico</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Perfil público</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Página web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Insignias</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Insignias</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\"> ¡Felicitaciones! Su correo " +"electrónico acaba de ser validado.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" Validación del perfil de ${object.company_id.name}\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hola ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Valida mi cuenta\n" +" </a>\n" +" </div>\n" +" ¡Gracias por tu participación!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Con tecnología de <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Parece que su correo electrónico no ha sido verificado<br/>" + +#. 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 <piia@avalah.ee>, 2020 +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# Martin Trigaux, 2020 +# Andre Roomet <andreroomet@gmail.com>, 2020 +# Algo Kärp <algokarp@gmail.com>, 2021 +# Triine Aavik <triine@avalah.ee>, 2021 +# Eneli Õigus <enelioigus@gmail.com>, 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 <enelioigus@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> tunnustatud kasutajad</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <oihanecruce@gmail.com>, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 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 <maialenrodriguez98@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\">erabiltzaile sarituak</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <ifarazir@gmail.com>, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Mohsen Mohammadi <iammohsen.123@gmail.com>, 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 <iammohsen.123@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>همه نشانها" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>ویرایش" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>ویرایش پروفایل" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">رتبه فعلی:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">رتبهبندی با :</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Mikko Salmela <salmemik@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# Topi Aura <topi@aurat.fi>, 2020 +# Miika Nissi <miika.nissi@tawasta.fi>, 2021 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 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 <jarmo.kortetjarvi@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Kaikki merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Kaikki merkit" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Muokkaa\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>MUOKKAA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>MUOKKAA PROFIILIA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> palkitut käyttäjät</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Tämänhetkinen sija:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Merkit</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Liittynyt</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Kuvaus</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Kaupunki</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Maa</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Sähköposti</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Nimi</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Julkinen profiili</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Verkkosivu</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Merkit</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Kokemuspisteet</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Merkit</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">Kokemuspisteet</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Onnittelut! Sähköpostisi on juuri " +"vahvistettu.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Järjestä :</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <odo@odoo.com>, 2020 +# Fabien Pinckaers <fp@openerp.com>, 2020 +# Richard Mathot <rim@odoo.com>, 2020 +# Vincent Briffaux <vincent.briffaux@gmail.com>, 2020 +# Clo <clo@odoo.com>, 2020 +# Xavier Belmere <Info@cartmeleon.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# mathieu betton <mathieu.betton@gmail.com>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# gdp Odoo <gdp@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Priscilla (prs) Odoo <prs@odoo.com>, 2020 +# Jonathan Quique <jqu@odoo.com>, 2020 +# Alexandra Jubert <aju@odoo.com>, 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 <aju@odoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>EDITER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>EDITER LE PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> utilisateurs récompensés</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Rang actuel:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Badges</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Rejoint</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biographie</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Ville</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Pays</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Email</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Profil publique</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Site Web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Badges</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Badges</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Félicitations! Votre email vient d'être" +" validé.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Validation du profile\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Bonjour ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Valider mon compte\n" +" </a>\n" +" </div>\n" +" Merci pour votre participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Votre adresse email n'a pas été vérifiée.<br/>" + +#. 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 <hugirat@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Lilach Gilliam <lilach.gilliam@gmail.com>, 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 <lilach.gilliam@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>ערוך" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>ערוך פרופיל" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">תגים</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">עיר</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">ארץ</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">אתר אינטרנט</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">תגים</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">תגים</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">מזל טוב! הדוא\"ל שלך זה עתה " +"אומת.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Jasmina Otročak <jasmina@uvid.hr>, 2020 +# Tina Milas, 2020 +# Ivana Šimek <ivanasimek@gmail.com>, 2020 +# Hrvoje Sić <hrvoje.sic@gmail.com>, 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ć <hrvoje.sic@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>UREDI" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>UREDI PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> nagrađeni korisnici</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Trenutni rang:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Oznake</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Pridružio se</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Životopis</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Grad</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Država</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-pošta</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Javni profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Web stranica</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Oznaka</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Oznaka</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Čestitamo! Vaša e-pošta je " +"provjerena.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 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 <akos.nagy@oregional.hu>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> díjazott felhasználók</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <zarambie_game@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# oon arfiandwi <oon.arfiandwi@gmail.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 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 <amunifhanafi@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <lb@takobi.online>, 2020 +# Paolo Valier, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 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 <primes2h@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Tutti i riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Tutti i riconoscimenti" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Modifica\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>MODIFICA" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>MODIFICA PROFILO" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> utenti premiati</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Livello attuale:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Riconoscimenti</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Iscritto</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografia</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Città</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Nazione</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-mail</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Nome</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Profilo pubblico</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Sito web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Riconoscimenti</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">PE</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Riconoscimenti</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">PE</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Congratulazioni! L'e-mail è appena " +"stata confermata.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Classifica per :</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- INTESTAZIONE -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" Conferma profilo per ${object.company_id.name}\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENUTO -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Ciao ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Conferma account\n" +" </a>\n" +" </div>\n" +" Grazie per aver partecipato!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- PIÈ DI PAGINA -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- FORNITO DA -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Fornito da <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Sembra che l'e-mail non sia stata verificata.<br/>" + +#. 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 <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Manami Hashi <manami@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Tim Siu Lai <tl@roomsfor.hk>, 2020 +# Tsuda Ryoko <ryoko04nov@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> 受賞者</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">現在のランク:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# Gvantsa Gvinianidze <gvantsa@live.com>, 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 <gvantsa@live.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <sengtha@gmail.com>, 2020 +# Chan Nath <channath@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 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 <sok.lux@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <hwangtog@gmail.com>, 2020 +# Linkup <link-up@naver.com>, 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 <link-up@naver.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>편집" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>프로필 수정" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> 상 받은 사용자 </i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">현재 순위 :</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">배지</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">가입함</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">이력</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">시/군/구</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">국가</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">이메일</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">공개 프로필</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">웹사이트</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">배지</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">배지</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "<span id=\"email_validated_message\">축하합니다! 귀하의 이메일을 확인하였습니다.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} 프로필 확인\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" ${object.name}님.<br/><br/>\n" +" \"${object.company_id.name}\" 웹사이트에 접속하기 위해서 이메일을 확인하고자 초대하였습니다.\n" +" 이메일을 확인하려면 다음 링크를 클릭하여 주십시오 :\n" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" 내 계정 확인\n" +" </a>\n" +" </div>\n" +" 참여해 주셔서 감사합니다!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a> 제공\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "이메일이 확인되지 않은 것 같습니다.<br/>" + +#. 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 "<i class=\"fa fa-arrow-right mr-1\"/>Check all available badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> Check available badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "" +"<span class=\"badge badge-danger font-weight-normal px-2 py-1 " +"m-1\">Unpublished</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Real name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <arminas@versada.lt>, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Antanas Muliuolis <an.muliuolis@gmail.com>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# Jonas Zinkevicius <jozi@odoo.com>, 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 <jozi@odoo.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> apdovanoti vartotojai</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <khishigbat@asterisk-tech.mn>, 2020 +# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 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 <uuganaaub33@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>ЗАСАХ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>Танилцуулга засах" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> шагнуулсан хэрэглэгчид</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Тэмдэгтүүд</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Намтар</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Хот</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Улс</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Имэйл</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Вебсайт</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Тэмдэгтүүд</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Тэмдэгтүүд</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <marius@stedjan.com>, 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 <marius@stedjan.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Rediger\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>REDIGER" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>REDIGER PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> tildelte brukere</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Nåværende grad:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Medaljer</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Ble med</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografi</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Sted</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Land</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-post</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Offentlig profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Nettsted</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Medaljer</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Medaljer</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Graulerer! E-postadressen din ble " +"bekreftet.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- TOPPTEKST -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Validering av profil\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- INNHOLD -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hei ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Valider min konto\n" +" </a>\n" +" </div>\n" +" Takk for at du deltar!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- BUNNTEKST -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" \n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Det ser ut til at e-postadressen din ikke er verifisert.<br/>" + +#. 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 <yenthespam@gmail.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Odoo Experts Consultants <consultants@odooexperts.nl>, 2020 +# Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 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) <erwin@odooexperts.nl>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Alle badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Alle badges" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Wijzig\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>WIJZIG" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>WIJZIG PROFIEL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> toegekende gebruikers</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Huidige rang:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Badges</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Geregistreerd</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografie</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Plaats</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Land</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-mail</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Naam</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Openbaar profiel</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Website</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Badges</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Badges</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Gefeiciteerd! Uw e-mailadres is zojuist" +" bevestigd.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Rangschikken op:</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profiel validatie\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hallo ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Bevestig mijn account\n" +" </a>\n" +" </div>\n" +" Bedankt voor uw medewerking!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Aangeboden door <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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. <br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Het lijkt erop alsof uw e-mailadres nog niet gecontroleerd is.<br/>" + +#. 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 <darek@krokus.com.pl>, 2020 +# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Karol Rybak <karolrybak85@gmail.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Martin Trigaux, 2020 +# Piotr Strębski <strebski@gmail.com>, 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 <strebski@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\">nagrodzeni użytkownicy</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografia</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "Gratulacje! Twój email został zweryfikowany.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <manuelarodsilva@gmail.com>, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 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 <pedro2.10@hotmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> utilizadores recompensados</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <rmsolucoeseminformatica@protonmail.com>, 2020 +# Rafael H L Moretti <rafael.moretti@gmail.com>, 2020 +# danimaribeiro <danimaribeiro@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Marcel Savegnago <marcel.savegnago@gmail.com>, 2020 +# Emanuel Martins <emanuel.breno@gmail.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Peter Leaf <pablleaf@gmail.com>, 2020 +# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2020 +# AlexSandro Cruz <alex@sapienzae.com.br>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Hélio Dias de Brito Teixeira <helio.dbt@gmail.com>, 2020 +# Silmar <pinheirosilmar@gmail.com>, 2020 +# Lauro de Lima <lauro@ciclix.com>, 2020 +# Fernando Colus <fcolus1@gmail.com>, 2020 +# Keli Brugalli <kbr@odoo.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 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 <britoederr@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Todos os Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/> Todos os Emblemas" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" +"<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" " +"title=\"Editar\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>EDITAR" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>EDITAR PERFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> usuários premiados</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Classificação Atual:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Emblemas</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Participante</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografia</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Cidade</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">País</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-mail</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Nome</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Perfil Público</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Site</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Emblemas</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Emblemas</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Parabéns! Seu email acaba de ser " +"validado.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Classificação por:</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Validação de Perfil\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Olá ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validar Minha Conta\n" +" </a>\n" +" </div>\n" +" Obrigado por sua participação!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Distribuído por <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Parece que seu e-mail não foi verificado.<br/>" + +#. 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 <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 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 <cosmin513@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "<i class=\"fa fa-arrow-right mr-1\"/>Toate insignele" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "<i class=\"fa fa-arrow-right\"/>Toate insignele" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>EDITARE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>EDITARE PROFIL" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\">utilizatori premiați</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Rang curent:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Insigne</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Alăturat</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biografie</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Localitate</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Țară</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-mail</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "<span class=\"font-weight-bold\">Nume</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Profil Public</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Site-ul web</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Insigne</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Insigne</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Felicitări! E-mail-ul dumneavoastră a " +"fost validat.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "<strong class=\"form-group text-white mr-2\">Clasează după :</strong>" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br class=\"d-none d-lg-inline-block\"/> 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.<br/>" +msgstr "Se pare că e-mailul dumneavoastră nu a fost verificat.<br/>" + +#. 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 <yelizariev@it-projects.info>, 2020 +# Sergey Vilizhanin, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 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 <istartlin@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> награжденные пользователи</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <robertkirschner@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Alexandra Brencicova <alexandra.brencicova@gmail.com>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 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á <karolina.schusterova@vdp.sk>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> ocenený používatelia</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.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: Jasmina Macur <jasmina@hbs.si>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <robin.chatfield@gmail.com>, 2021 +# 03992e16f8df6e39b9d1cc0ff635887e, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 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 <anders.wallenquist@vertel.se>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <khwunchai.j@ku.th>, 2020 +# gsong <gsong2014@foxmail.com>, 2020 +# Somchart Jabsung <jabsung.s@gmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 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 <odoothaidev@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2020 +# Saban Yildiz <sabany@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Ramiz Deniz Öner <deniz@denizoner.com>, 2020 +# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Buket Şeker <buket_skr@hotmail.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Tugay Hatıl <tugayh@projetgrup.com>, 2020 +# Murat Durmuş <muratd@projetgrup.com>, 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ş <muratd@projetgrup.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>DÜZENLE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>PROFİLİ DÜZENLE" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> ödül kazanan kullanıcılar</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Mevcut sıralama:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Rozetler</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Katılım</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Biyografi</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Kent</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">ülke</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">E-posta</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Halka açık profil</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Website</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Rozetler</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Rozetler</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Tebrikler! E-postanız " +"doğrulandı.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- ÜSTBİLGİ-->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profil doğrulaması\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- İÇERİK -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Merhaba ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Hesabımı doğrula\n" +" </a>\n" +" </div>\n" +" Katılımınız için teşekkürler!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- ALTBİLGİ -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- TARAFINDAN DESTEKLENMEKTEDİR -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Tarafından desteklenmektedir <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Görünüşe göre e-postanız doğrulanmadı.<br/>" + +#. 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 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 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 <alinasemeniuk1@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>РЕДАГУВАТИ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>РЕДАГУВАТИ ПРОФІЛЬ" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> нагороджені користувачі</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">Поточне звання:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">Значки</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">Приєднався</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">Біографія</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">Місто</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">Країна</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">Email</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">Публічний профіль</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">Веб-сайт</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">Значки</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">Значки</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">XP</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" +"<span id=\"email_validated_message\">Вітаємо! Ваш email щойно " +"підтвердили.</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Вітаємо ${object.name},<br/><br/>\n" +" Вас запросили перевірити свій email на замовленні, щоб отримати доступ на веб-сайт \"${object.company_id.name}\" .\n" +" Щоби перевірити email, перейдіть за цим посиланням:\n" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Підтвердити мій обліковий запис\n" +" </a>\n" +" </div>\n" +" Дякуємо за вашу участь!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Зроблено <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "Здається, вашу електронну пошту не підтверджено.<br/>" + +#. 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <saosangmo@yahoo.com>, 2020 +# fanha99 <fanha99@hotmail.com>, 2020 +# Thang Duong Bao <nothingctrl@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2021 +# Trần Hà <tranthuha13590@gmail.com>, 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à <tranthuha13590@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> người dùng được thưởng</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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 <liangjia@qq.com>, 2020 +# v2exerer <9010446@qq.com>, 2020 +# 苏州远鼎 <tiexinliu@126.com>, 2020 +# xiaobin wu <bd5dml@gmail.com>, 2020 +# 老窦 北京 <2662059195@qq.com>, 2020 +# bf2549c5415a9287249cba2b8a5823c7, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Fisher <fisher@kdomi.com>, 2020 +# Felix Yuen <fyu@odoo.com>, 2020 +# snow wang <147156565@qq.com>, 2020 +# Jeanphy <hzh0292@qq.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 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 <jeffery9@gmail.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> 授予用户</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">奖章</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">奖章</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">奖章</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +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: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 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: 敬雲 林 <chingyun@yuanchih-consult.com>, 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 "<i class=\"fa fa-arrow-right mr-1\"/>All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_badges +msgid "<i class=\"fa fa-arrow-right\"/> All Badges" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"Edit\"/>" +msgstr "<i class=\"fa fa-pencil fa-1g float-sm-none float-md-left\" title=\"編輯\"/>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-1\"/>EDIT" +msgstr "<i class=\"fa fa-pencil mr-1\"/>編輯" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_header +msgid "<i class=\"fa fa-pencil mr-2\"/>EDIT PROFILE" +msgstr "<i class=\"fa fa-pencil mr-2\"/>編輯個人簡介" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.badge_content +msgid "<i class=\"text-muted\"> awarded users</i>" +msgstr "<i class=\"text-muted\"> 授予使用者</i>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold mr-2\">Current rank:</small>" +msgstr "<small class=\"font-weight-bold mr-2\">目前等級:</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Badges</small>" +msgstr "<small class=\"font-weight-bold\">成就</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_content +msgid "<small class=\"font-weight-bold\">Joined</small>" +msgstr "<small class=\"font-weight-bold\">已加入</small>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Biography</span>" +msgstr "<span class=\"font-weight-bold\">自我介紹</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">City</span>" +msgstr "<span class=\"font-weight-bold\">城市</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Country</span>" +msgstr "<span class=\"font-weight-bold\">國家</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Email</span>" +msgstr "<span class=\"font-weight-bold\">電子郵件</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Name</span>" +msgstr "" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Public profile</span>" +msgstr "<span class=\"font-weight-bold\">公開資訊</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.user_profile_edit_content +msgid "<span class=\"font-weight-bold\">Website</span>" +msgstr "<span class=\"font-weight-bold\">網站</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">Badges</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">成就</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.all_user_card +msgid "<span class=\"text-muted small font-weight-bold\">XP</span>" +msgstr "<span class=\"text-muted small font-weight-bold\">經驗值</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">Badges</span>" +msgstr "<span class=\"text-muted\">成就</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.top3_user_card +msgid "<span class=\"text-muted\">XP</span>" +msgstr "<span class=\"text-muted\">Xp</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.email_validation_banner +msgid "" +"<span id=\"email_validated_message\">Congratulations! Your email has just " +"been validated.</span>" +msgstr "<span id=\"email_validated_message\">恭喜您!您的電子郵件剛剛經過驗證。</span>" + +#. module: website_profile +#: model_terms:ir.ui.view,arch_db:website_profile.users_page_header +msgid "<strong class=\"form-group text-white mr-2\">Rank by :</strong>" +msgstr "" + +#. module: website_profile +#: model:mail.template,body_html:website_profile.validation_email +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} Profile validation\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" Hello ${object.name},<br/><br/>\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" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" Validate my account\n" +" </a>\n" +" </div>\n" +" Thanks for your participation!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\">\n" +" <span style=\"font-size: 20px; font-weight: bold;\">\n" +" ${object.company_id.name} 個人資料驗證\n" +" </span>\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"top\" style=\"font-size: 13px;\">\n" +" <p style=\"margin: 0px; padding: 0px; font-size: 13px;\">\n" +" 您好 ${object.name},<br/><br/>\n" +" 您被邀請驗證電子郵件來登入 \"${object.company_id.name}\" 網站平台.\n" +" 請點選以下連結驗證您的電子郵件:\n" +" <div style=\"margin: 16px 0px 16px 0px;\">\n" +" <a href=\"${ctx.get('token_url')}\" style=\"background-color: #875A7B; padding: 8px 16px 8px 16px; text-decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">\n" +" 驗證我的帳號\n" +" </a>\n" +" </div>\n" +" 感謝您!\n" +" </p>\n" +" </td>\n" +" </tr>\n" +" <tr>\n" +" <td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\" font-family: 'Verdana Regular'; color: #454748; min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr>\n" +" <td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td>\n" +" <td valign=\"middle\" align=\"right\" style=\"opacity: 0.7;\">\n" +" ${user.company_id.phone}\n" +" % if user.company_id.email:\n" +" | <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.email}\n" +" </a>\n" +" % endif\n" +" % if user.company_id.website:\n" +" | <a href=\"${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">\n" +" ${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td>\n" +" </tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=forum\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\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.<br class=\"d-none d-lg-inline-block\"/>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.<br/>" +msgstr "您的電子郵件似乎尚未驗證。<br>" + +#. 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 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><g fill="none"><circle cx="150" cy="150" r="150" fill="#FFF"/><path fill="#C37933" d="M150 300C67.157 300 0 232.843 0 150S67.157 0 150 0s150 67.157 150 150-67.157 150-150 150zm0-9.375c77.665 0 140.625-62.96 140.625-140.625 0-77.665-62.96-140.625-140.625-140.625C72.335 9.375 9.375 72.335 9.375 150c0 77.665 62.96 140.625 140.625 140.625zm0-14.063C80.101 276.563 23.437 219.9 23.437 150S80.102 23.437 150 23.437 276.563 80.102 276.563 150 219.899 276.563 150 276.563zm56.757-126.57l12.882-12.602c1.867-1.743 2.49-3.922 1.867-6.536-.747-2.551-2.365-4.139-4.854-4.76l-17.55-4.482 4.947-17.365c.747-2.552.156-4.73-1.773-6.535-1.805-1.93-3.983-2.52-6.535-1.774l-17.363 4.948-4.48-17.551c-.623-2.552-2.21-4.14-4.761-4.761-2.552-.685-4.73-.094-6.535 1.773L150 93.324l-12.602-12.977c-1.805-1.93-3.983-2.52-6.535-1.773-2.551.622-4.138 2.209-4.76 4.76l-4.481 17.552-17.363-4.948c-2.552-.747-4.73-.155-6.535 1.774-1.929 1.805-2.52 3.983-1.773 6.535l4.947 17.365-17.55 4.481c-2.489.623-4.107 2.21-4.854 4.761-.622 2.614 0 4.793 1.867 6.536l12.882 12.603-12.882 12.603c-1.867 1.743-2.49 3.921-1.867 6.535.747 2.552 2.365 4.14 4.854 4.762l17.55 4.481-4.947 17.365c-.747 2.552-.156 4.73 1.773 6.535 1.805 1.93 3.983 2.52 6.535 1.774l17.363-4.948 4.48 17.551c.623 2.552 2.21 4.17 4.761 4.855 2.614.622 4.792 0 6.535-1.867L150 206.755l12.602 12.884c1.245 1.369 2.832 2.053 4.761 2.053.436 0 1.027-.062 1.774-.186 2.551-.747 4.138-2.365 4.76-4.855l4.481-17.551 17.363 4.948c2.552.747 4.73.155 6.535-1.774 1.929-1.805 2.52-3.983 1.773-6.535l-4.947-17.365 17.55-4.481c2.489-.623 4.107-2.21 4.854-4.762.622-2.614 0-4.792-1.867-6.535l-12.882-12.603z"/></g></svg>
\ 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 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><g fill="none"><circle cx="150" cy="150" r="150" fill="#FFF"/><path fill="#E2BE00" d="M150 300C67.157 300 0 232.843 0 150S67.157 0 150 0s150 67.157 150 150-67.157 150-150 150zm0-9.375c77.665 0 140.625-62.96 140.625-140.625 0-77.665-62.96-140.625-140.625-140.625C72.335 9.375 9.375 72.335 9.375 150c0 77.665 62.96 140.625 140.625 140.625zm0-14.063C80.101 276.563 23.437 219.9 23.437 150S80.102 23.437 150 23.437 276.563 80.102 276.563 150 219.899 276.563 150 276.563zm56.757-126.57l12.882-12.602c1.867-1.743 2.49-3.922 1.867-6.536-.747-2.551-2.365-4.139-4.854-4.76l-17.55-4.482 4.947-17.365c.747-2.552.156-4.73-1.773-6.535-1.805-1.93-3.983-2.52-6.535-1.774l-17.363 4.948-4.48-17.551c-.623-2.552-2.21-4.14-4.761-4.761-2.552-.685-4.73-.094-6.535 1.773L150 93.324l-12.602-12.977c-1.805-1.93-3.983-2.52-6.535-1.773-2.551.622-4.138 2.209-4.76 4.76l-4.481 17.552-17.363-4.948c-2.552-.747-4.73-.155-6.535 1.774-1.929 1.805-2.52 3.983-1.773 6.535l4.947 17.365-17.55 4.481c-2.489.623-4.107 2.21-4.854 4.761-.622 2.614 0 4.793 1.867 6.536l12.882 12.603-12.882 12.603c-1.867 1.743-2.49 3.921-1.867 6.535.747 2.552 2.365 4.14 4.854 4.762l17.55 4.481-4.947 17.365c-.747 2.552-.156 4.73 1.773 6.535 1.805 1.93 3.983 2.52 6.535 1.774l17.363-4.948 4.48 17.551c.623 2.552 2.21 4.17 4.761 4.855 2.614.622 4.792 0 6.535-1.867L150 206.755l12.602 12.884c1.245 1.369 2.832 2.053 4.761 2.053.436 0 1.027-.062 1.774-.186 2.551-.747 4.138-2.365 4.76-4.855l4.481-17.551 17.363 4.948c2.552.747 4.73.155 6.535-1.774 1.929-1.805 2.52-3.983 1.773-6.535l-4.947-17.365 17.55-4.481c2.489-.623 4.107-2.21 4.854-4.762.622-2.614 0-4.792-1.867-6.535l-12.882-12.603z"/></g></svg>
\ 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 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><g fill="none"><circle cx="150" cy="150" r="150" fill="#FFF"/><path fill="#838997" d="M150 300C67.157 300 0 232.843 0 150S67.157 0 150 0s150 67.157 150 150-67.157 150-150 150zm0-9.375c77.665 0 140.625-62.96 140.625-140.625 0-77.665-62.96-140.625-140.625-140.625C72.335 9.375 9.375 72.335 9.375 150c0 77.665 62.96 140.625 140.625 140.625zm0-14.063C80.101 276.563 23.437 219.9 23.437 150S80.102 23.437 150 23.437 276.563 80.102 276.563 150 219.899 276.563 150 276.563zm56.757-126.57l12.882-12.602c1.867-1.743 2.49-3.922 1.867-6.536-.747-2.551-2.365-4.139-4.854-4.76l-17.55-4.482 4.947-17.365c.747-2.552.156-4.73-1.773-6.535-1.805-1.93-3.983-2.52-6.535-1.774l-17.363 4.948-4.48-17.551c-.623-2.552-2.21-4.14-4.761-4.761-2.552-.685-4.73-.094-6.535 1.773L150 93.324l-12.602-12.977c-1.805-1.93-3.983-2.52-6.535-1.773-2.551.622-4.138 2.209-4.76 4.76l-4.481 17.552-17.363-4.948c-2.552-.747-4.73-.155-6.535 1.774-1.929 1.805-2.52 3.983-1.773 6.535l4.947 17.365-17.55 4.481c-2.489.623-4.107 2.21-4.854 4.761-.622 2.614 0 4.793 1.867 6.536l12.882 12.603-12.882 12.603c-1.867 1.743-2.49 3.921-1.867 6.535.747 2.552 2.365 4.14 4.854 4.762l17.55 4.481-4.947 17.365c-.747 2.552-.156 4.73 1.773 6.535 1.805 1.93 3.983 2.52 6.535 1.774l17.363-4.948 4.48 17.551c.623 2.552 2.21 4.17 4.761 4.855 2.614.622 4.792 0 6.535-1.867L150 206.755l12.602 12.884c1.245 1.369 2.832 2.053 4.761 2.053.436 0 1.027-.062 1.774-.186 2.551-.747 4.138-2.365 4.76-4.855l4.481-17.551 17.363 4.948c2.552.747 4.73.155 6.535-1.774 1.929-1.805 2.52-3.983 1.773-6.535l-4.947-17.365 17.55-4.481c2.489-.623 4.107-2.21 4.854-4.762.622-2.614 0-4.792-1.867-6.535l-12.882-12.603z"/></g></svg>
\ 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 @@ +<svg height="37" viewBox="0 0 35 37" width="35" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="a" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0" stop-color="#ffe897"/><stop offset="1" stop-color="#f1c363"/></linearGradient><circle id="b" cx="17.5" cy="17.5" r="17.5"/><filter id="c" height="111.4%" width="105.7%" x="-2.9%" y="-2.9%"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 0.564705882 0 0 0 0 0.37254902 0 0 0 0 0.192156863 0 0 0 1 0"/></filter></defs><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><use fill="#000" filter="url(#c)" xlink:href="#b"/><use fill="url(#a)" xlink:href="#b"/></g><text fill="#905f31" font-family="Montserrat-Bold, Montserrat" font-size="11" font-weight="bold"><tspan x="10.031" y="22">1st</tspan></text></g></svg>
\ 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 @@ +<svg height="37" viewBox="0 0 35 37" width="35" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="a" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0" stop-color="#d7dde1"/><stop offset="1" stop-color="#b7c3c8"/></linearGradient><circle id="b" cx="17.5" cy="17.5" r="17.5"/><filter id="c" height="111.4%" width="105.7%" x="-2.9%" y="-2.9%"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 0.360784314 0 0 0 0 0.388235294 0 0 0 0 0.403921569 0 0 0 1 0"/></filter></defs><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><use fill="#000" filter="url(#c)" xlink:href="#b"/><use fill="url(#a)" xlink:href="#b"/></g><text fill="#5c6367" font-family="Montserrat-Bold, Montserrat" font-size="11" font-weight="bold"><tspan x="6.615" y="22">2nd</tspan></text></g></svg>
\ 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 @@ +<svg height="37" viewBox="0 0 35 37" width="35" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="a" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0" stop-color="#ecc29f"/><stop offset="1" stop-color="#d09e7d"/></linearGradient><circle id="b" cx="17.5" cy="17.5" r="17.5"/><filter id="c" height="111.4%" width="105.7%" x="-2.9%" y="-2.9%"><feOffset dy="2" in="SourceAlpha" result="shadowOffsetOuter1"/><feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 0.62745098 0 0 0 0 0.462745098 0 0 0 0 0.329411765 0 0 0 1 0"/></filter></defs><g fill="none" fill-rule="evenodd"><g fill-rule="nonzero"><use fill="#000" filter="url(#c)" xlink:href="#b"/><use fill="url(#a)" xlink:href="#b"/></g><text fill="#5e4129" font-family="Montserrat-Bold, Montserrat" font-size="11" font-weight="bold"><tspan x="8.117" y="22">3rd</tspan></text></g></svg>
\ 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($('<input/>', { + 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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="gamification_badge_view_form" model="ir.ui.view"> + <field name="name">gamification.badge.view.form.inherit.website</field> + <field name="model">gamification.badge</field> + <field name="inherit_id" ref="gamification.badge_form_view"/> + <field name="arch" type="xml"> + <xpath expr="//div[@name='button_box']" position="inside"> + <button name="website_publish_button" type="object" class="oe_stat_button" icon="fa-globe"> + <field name="is_published" widget="website_publish_button"/> + </button> + </xpath> + </field> + </record> +</odoo> 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 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo><data> + <template id="assets_frontend" inherit_id="website.assets_frontend"> + <xpath expr="link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/website_profile/static/src/scss/website_profile.scss"/> + </xpath> + <xpath expr="script[last()]" position="after"> + <script type="text/javascript" src="/website_profile/static/src/js/website_profile.js"/> + </xpath> + </template> + + <!-- Sub nav --> + <template id="user_profile_sub_nav" name="User profile subnav"> + <div class="o_wprofile_all_users_nav"> + <div class="container"> + <div class="row align-items-center justify-content-between"> + <!-- Desktop Mode --> + <nav aria-label="breadcrumb" class="col d-none d-md-flex"> + <ol class="breadcrumb bg-transparent mb-0 pl-0 py-0"> + <li t-attf-class="breadcrumb-item #{'active' if not view_user else ''}"> + <a href="/profile/users">Users</a> + </li> + <li t-if="view_user" class="breadcrumb-item active"> + <a><t t-esc="view_user"/></a> + </li> + </ol> + </nav> + + <div class="col d-none d-md-flex flex-row align-items-center justify-content-end"> + <!-- search --> + <form t-attf-action="/profile/users" role="search" method="get"> + <div class="input-group o_wprofile_course_nav_search ml-1 position-relative"> + <span class="input-group-prepend"> + <button class="btn btn-link text-white rounded-0 pr-1" type="submit" aria-label="Search" title="Search"> + <i class="fa fa-search"></i> + </button> + </span> + <input type="text" class="form-control border-0 rounded-0 bg-transparent text-white" name="search" placeholder="Search users"/> + </div> + </form> + </div> + + <!-- Mobile Mode --> + <div class="col d-md-none py-1 o_wprofile_user_profile_sub_nav_mobile_col"> + <div class="btn-group w-100 position-relative" role="group" aria-label="Mobile sub-nav"> + <div class="btn-group w-100 ml-2"> + <a class="btn bg-black-25 text-white dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Nav</a> + + <ul class="dropdown-menu"> + <a class="dropdown-item" t-att-href="home_url or '/'">Home</a> + <a class="dropdown-item" href="/profile/users">└ Users</a> + <a t-if="view_user" class="dropdown-item">└ <t t-esc="view_user"/></a> + </ul> + </div> + + <div class="btn-group ml-1 position-static mr-2"> + <a class="btn bg-black-25 text-white dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-search"></i></a> + <div class="dropdown-menu dropdown-menu-right w-100" style="right: 10px;"> + <form class="px-3" t-attf-action="/profile/users" role="search" method="get"> + <div class="input-group"> + <input type="text" class="form-control" name="search" placeholder="Search courses"/> + <span class="input-group-append"> + <button class="btn btn-primary" type="submit" aria-label="Search" title="Search"> + <i class="fa fa-search"/> + </button> + </span> + </div> + </form> + </div> + </div> + </div> + </div> + </div> + </div> + </div> + </template> + + <!-- + Single User Profile Page + --> + + <!-- Edit Profile Page --> + <template id="user_profile_edit_main" name="Edit Profile"> + <t t-set="body_classname" t-value="'o_wprofile_body'"/> + <t t-call="website.layout"> + <div id="wrap" class="o_wprofile_wrap"> + <div class="container pt-4 pb-5"> + <t t-call="website_profile.user_profile_edit_content"/> + </div> + </div> + </t> + </template> + + <template id="user_profile_edit_content" name="Edit Profile"> + <h1 class="o_page_header">Edit Profile</h1> + <div> + <form t-attf-action="/profile/user/save" method="post" role="form" class="o_wprofile_editor_form js_website_submit_form row" enctype="multipart/form-data"> + <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> + <input type="file" class="d-none o_forum_file_upload" name="ufile" accept="image/*"/> + <input type="hidden" name="url_param" t-att-value="request.params.get('url_param')"/> + <div class="col-3"> + <div class="card o_card_people"> + <div class="card-body"> + <img class="o_forum_avatar_img w-100 mb-3" t-att-src="website.image_url(user, 'image_128')"/> + <div class="text-center"> + <a href="#" class="o_forum_profile_pic_edit btn btn-primary" aria-label="Edit"> + <i class="fa fa-pencil fa-1g float-sm-none float-md-left" title="Edit"></i> + </a> + <a href="#" title="Clear" aria-label="Clear" class="btn border-primary o_forum_profile_pic_clear"> + <i class="fa fa-trash-o float-sm-none float-md-right"></i> + </a> + </div> + <div class="form-group mt-3 mb-0 pt-2 border-top"> + <label class="text-primary" for="user_website_published" t-if="user.id == uid"><span class="font-weight-bold">Public profile</span></label> + <div class=" mb-0 float-right" t-if="user.id == uid"> + <input type="checkbox" class="mt8" name="website_published" id="user_website_published" value="True" t-if="not user.website_published"/> + <input type="checkbox" class="mt8" name="website_published" id="user_website_published" value="True" checked="checked" t-if="user.website_published"/> + </div> + </div> + </div> + </div> + </div> + <div class="col-9 mb-3"> + <div class="card"> + <div class="card-body"> + <div class="row"> + <input name="user_id" t-att-value="user.id" type="hidden"/> + <div class="form-group col-12"> + <label class="text-primary mb-1 d-block" for="user_name"><span class="font-weight-bold">Name</span></label> + <div> + <input type="text" class="form-control" name="name" id="user_name" required="True" t-attf-value="#{user.name}"/> + </div> + </div> + + <div class="form-group col-6"> + <label class="mb-1 text-primary" for="user_website"><span class="font-weight-bold">Website</span></label> + <div> + <input type="text" class="form-control" name="website" id="user_website" t-attf-value="#{user.partner_id.website or ''}"/> + </div> + </div> + <div class="form-group col-6"> + <div t-if="email_required" class="alert alert-danger alert-dismissable oe_email_required" role="alert"> + <button type="button" class="close" data-dismiss="alert">x</button> + <p>Please enter a valid email address in order to receive notifications from answers or comments.</p> + </div> + <label class="mb-1 text-primary" for="user_email"><span class="font-weight-bold">Email</span></label> + <div> + <input type="text" class="form-control" name="email" id="user_email" required="True" t-attf-value="#{user.partner_id.email}"/> + </div> + </div> + <div class="form-group col-6"> + <label class="mb-1 text-primary" for="user_city"><span class="font-weight-bold">City</span></label> + <div> + <input type="text" class="form-control" name="city" id="user_city" t-attf-value="#{user.partner_id.city or ''}"/> + </div> + </div> + <div class="form-group col-6"> + <label class="mb-1 text-primary"><span class="font-weight-bold">Country</span></label> + <div> + <select class="form-control" name="country"> + <option value="">Country...</option> + <t t-foreach="countries or []" t-as="country"> + <option t-att-value="country.id" t-att-selected="country.id == user.partner_id.country_id.id"><t t-esc="country.name"/></option> + </t> + </select> + </div> + </div> + <div class="form-group col-12"> + <label class="mb-1 text-primary" for="description"><span class="font-weight-bold">Biography</span></label> + <textarea name="description" id="description" style="min-height: 120px" + class="form-control o_wysiwyg_loader"><t t-esc="user.partner_id.website_description"/></textarea> + </div> + <div class="col"> + <button type="submit" class="btn btn-primary o_wprofile_submit_btn">Update</button> + </div> + </div> + </div> + </div> + </div> + </form> + </div> + </template> + + <!-- Profile Page --> + <template id="user_profile_main" name="Profile Page"> + <t t-set="body_classname" t-value="'o_wprofile_body'"/> + <t t-call="website.layout"> + <div id="wrap" class="o_wprofile_wrap mt-0"> + <t t-call="website_profile.user_profile_header"/> + <t t-call="website_profile.user_profile_content"/> + </div> + </t> + </template> + + <template id="user_profile_header" name="Profile Page Header"> + <div class="o_wprofile_header o_wprofile_gradient position-relative text-white"> + <t t-call="website_profile.user_profile_sub_nav"> + <t t-set="view_user"><t t-esc="user.name"/></t> + </t> + + <div class="container pb-3 pb-md-0 pt-2 pt-md-5"> + <div class="row"> + <!-- ==== Header Left ==== --> + <div class="col-12 col-md-4 col-lg-3"> + <div t-attf-class="d-flex align-items-start h-100 #{'justify-content-between' if (request.env.user == user) else 'justify-content-around' }"> + <div class="o_wprofile_pict d-inline-block mb-3 mb-md-0" t-attf-style="background-image: url(#{website.image_url(user, 'image_1024')});"/> + <a class="btn btn-primary d-inline-block d-md-none" + t-if="request.env.user == user and user.karma != 0" + t-attf-href="/profile/edit?url_param=#{edit_button_url_param}&user_id=#{user.id}"> + <i class="fa fa-pencil mr-1"/>EDIT + </a> + </div> + </div> + + <!-- ==== Header Right ==== --> + <div class="col-12 col-md-8 col-lg-9 d-flex flex-column"> + <div class="d-flex justify-content-between align-items-start"> + <h1 class="o_card_people_name"> + <span t-field="user.name"/><small t-if="user.karma == 0"> (not verified)</small> + </h1> + <a class="btn btn-primary d-none d-md-inline-block" t-if="request.env.user == user and user.karma != 0 or request.env.user._is_admin()" t-attf-href="/profile/edit?url_param=#{edit_button_url_param}&user_id=#{user.id}"> + <i class="fa fa-pencil mr-2"/>EDIT PROFILE + </a> + </div> + + <div class="d-flex flex-column justify-content-center flex-grow-1 mb-0 mb-md-5"> + <div t-if="user.partner_id.company_name" class="lead mb-2"> + <i class="fa fa-building-o fa-fw mr-1"/><span t-field="user.partner_id.company_name"/> + </div> + <div t-if="user.city or user.country_id" class="lead mb-2"> + <i class="fa fa-map-marker fa-fw mr-1"/> + <span t-field="user.city"/><span class="text-nowrap ml-1" t-if="user.country_id">(<span t-field="user.country_id"/>)</span> + </div> + <div t-if="user.website" class="lead mb-2"> + <i class="fa fa-globe fa-fw mr-1"/><span t-field="user.website"/> + </div> + </div> + </div> + </div> + </div> + </div> + </template> + + <template id="user_profile_content" name="Profile Page Content"> + <div class="container"> + <div class="row"> + + <!-- ========== SIDEBAR ========== --> + <div class="col-12 col-md-4 col-lg-3 mt-3 mt-md-0"> + <div class="o_wprofile_sidebar bg-white px-3 py-2 py-md-3 mb-3 mb-md-5"> + <div class="o_wprofile_sidebar_top d-flex justify-content-between"> + <div t-if="user.rank_id" class="d-flex align-items-center"> + <small class="font-weight-bold mr-2">Current rank:</small> + <img t-att-src="website.image_url(user.rank_id, 'image_128')" width="16" height="16" alt="" class="o_object_fit_cover mr-1"/> + <a t-attf-href="/profile/ranks_badges?url_origin=#{request.httprequest.path}&name_origin=#{user.name}" t-field="user.rank_id"/> + </div> + <button class="btn btn-sm d-md-none bg-white border" type="button" data-toggle="collapse" data-target="#o_wprofile_sidebar_collapse" aria-expanded="false" aria-controls="o_wprofile_sidebar_collapse">More info</button> + </div> + <div class="collapse d-md-block" id="o_wprofile_sidebar_collapse"> + <t t-set="next_rank_id" t-value="user._get_next_rank()"/> + <small t-if="next_rank_id" class="font-weight-bold mt-1">Next rank:</small> + <t t-if="next_rank_id or user.rank_id" t-call="website_profile.profile_next_rank_card"> + <t t-set="img_max_width" t-valuef="40%"/> + </t> + + <table class="table table-sm w-100" id="o_wprofile_sidebar_table"> + <tbody> + <tr> + <th><small class="font-weight-bold">Joined</small></th> + <td><span t-field="user.create_date" t-options='{"format": "d MMM Y"}'/></td> + </tr> + <tr> + <th><small class="font-weight-bold">Badges</small></th> + <td t-if="user.badge_ids" t-esc="len(user.badge_ids.filtered(lambda b: b.badge_id.website_published))"/> + <td t-else="">0</td> + </tr> + </tbody> + </table> + </div> + </div> + </div> + + <!-- ========== PROFILE CONTENT ========== --> + <div class="col-12 col-md-8 col-lg-9"> + <ul class="nav nav-tabs o_wprofile_nav_tabs flex-nowrap" role="tablist" id="profile_extra_info_tablist"> + <li class="nav-item"> + <a role="tab" aria-controls="about" href="#profile_tab_content_about" class="nav-link active" data-toggle="tab">About</a> + </li> + </ul> + <div class="tab-content py-4 o_wprofile_tabs_content mb-4" id="profile_extra_info_tabcontent"> + <div role="tabpanel" class="tab-pane active" id="profile_tab_content_about"> + <div class="o_wprofile_email_validation_container mb16 mt16"> + <t t-call="website_profile.email_validation_banner"> + <t t-set="redirect_url" t-value="'/profile/user/%s' % user.id"/> + <t t-set="send_validation_email_message">Click here to send a verification email.</t> + </t> + </div> + <div id="profile_about_badge" class="mb32"> + <h5 class="border-bottom pb-1">Badges</h5> + <t t-call="website_profile.user_badges"></t> + </div> + <div t-if="user.partner_id.website_description" class="mb32"> + <h5 class="border-bottom pb-1">Biography</h5> + <span t-field="user.partner_id.website_description"/> + </div> + </div> + </div> + </div> + </div> + </div> + </template> + + <template id="profile_next_rank_card" name="Profile Next Rank Card"> + <div class="o_wprofile_progress_circle"> + <svg viewBox="0 0 36 36" class="o_pc_circular_chart"> + <t t-set="next_rank_id" t-value="next_rank_id or user._get_next_rank()"/> + <t t-if="next_rank_id and user.rank_id"> + <t t-if="(next_rank_id.karma_min - user.rank_id.karma_min) > 0"> + <t t-set="user_points" t-value="int(100*(user.karma - user.rank_id.karma_min)/(next_rank_id.karma_min - user.rank_id.karma_min))"/> + </t> + <t t-else=""> + <t t-set="user_points" t-value="0"/> + </t> + </t> + <t t-elif="user.rank_id"> + <t t-set="user_points" t-value="100"/> + </t> + <t t-else=""> + <t t-set="user_points" t-value="0"/> + </t> + <path class="o_pc_circle_bg" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" /> + <path class="o_pc_circle" t-attf-stroke-dasharray="#{user_points}, 100" d="M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831" stroke="url(#gradient)" mask="url(#mask)"/> + <mask id="mask"> + <polygon points="0,0 17.2,0 17.2,10 18,10 18,0 36,0 36,36 0,36" fill="white"/> + </mask> + <linearGradient id="gradient"> + <stop offset="0%" stop-color="var(--o-pc-color-stop-1)"/> + <stop offset="100%" stop-color="var(--o-pc-color-stop-2)"/> + </linearGradient> + </svg> + <div class="o_pc_overlay d-flex flex-column align-items-center justify-content-center"> + <img class="img-fluid" + t-att-src="website.image_url(next_rank_id if next_rank_id else user.rank_id, 'image_128')" + t-att-alt="(next_rank_id.name if next_rank_id else user.rank_id.name) + ' badge'" + t-att-style="'max-width: ' + (img_max_width if img_max_width else '50%;')"/> + <h4 class=" mb-0"> + <span t-if="next_rank_id" t-field="next_rank_id.name"/> + <span t-else="" t-field="user.rank_id.name"/> + </h4> + <small> + <span class="font-weight-bold text-primary" t-field="user.karma"/> / + <span t-if="next_rank_id" class="font-weight-bold" t-field="next_rank_id.karma_min"/> + <span t-else="" class="font-weight-bold" t-field="user.rank_id.karma_min"/> + xp + </small> + </div> + </div> + </template> + + <template id="user_badges" name="User Bagdes"> + <div t-if="user.badge_ids" class="row mx-n1"> + <t t-foreach="user.badge_ids" t-as="badge"> + <t t-if="badge.badge_id.website_published"> + <div class="col px-1 mb-2 col-xl-4"> + <div class="card"> + <div class="card-body p-2 pr-3"> + <div class="media align-items-center"> + <img t-if="not badge.badge_id.image_1920 and badge.badge_id.level" + width="38" height="38" + t-attf-src="/website_profile/static/src/img/badge_#{badge.badge_id.level}.svg" + class="o_object_fit_cover mr-0" + t-att-alt="badge.badge_id.name"/> + <img t-else="" + width="38" height="38" + t-att-src="website.image_url(badge.badge_id, 'image_128')" + class="o_object_fit_cover mr-0" + t-att-alt="badge.badge_id.name"/> + <div class="media-body col-md-10 p-0"> + <h6 class="my-0 pl-1 text-truncate" t-field="badge.badge_id.name"/> + </div> + </div> + </div> + </div> + </div> + </t> + </t> + </div> + <div class="mb-3 d-inline-block" t-if="not user.badge_ids"> + <p class="text-muted">No badges yet!</p> + </div> + <div class="text-right d-inline-block pull-right"> + <a t-if="not user.badge_ids and badge_category" t-attf-href="/profile/ranks_badges?badge_category=#{badge_category}&url_origin=#{request.httprequest.path}&name_origin=#{user.name}" + class="btn btn-link btn-sm"><i class="fa fa-arrow-right"/> All Badges</a> + <a t-else="" t-attf-href="/profile/ranks_badges?url_origin=#{request.httprequest.path}&name_origin=#{user.name}" + class="btn btn-link btn-sm"><i class="fa fa-arrow-right mr-1"/>All Badges</a> + </div> + </template> + + <!-- About Ranks and badges Page --> + <template id="rank_badge_main" name="Ranks Page"> + <t t-call="website.layout"> + <div class="container mb32 mt48"> + <nav t-if="request.params.get('url_origin') and request.params.get('name_origin')" aria-label="breadcrumb"> + <ol class="breadcrumb p-0 bg-white"> + <li class="breadcrumb-item"> + <a t-att-href="request.website._get_http_domain() + request.params.get('url_origin')" t-esc="request.params.get('name_origin')"/> + </li> + <li class="breadcrumb-item">Badges</li> + </ol> + </nav> + <div class="row justify-content-between" t-if="ranks"> + <div class="col-12 col-md-6 col-lg-5"> + <h1>Ranks</h1> + <p class="lead mb-4">Keep learning with <t t-esc="website.company_id.name"/>. Collect points on the forum or on the eLearning platform. Those points will make you reach new ranks.</p> + <h5>How do I earn badges?</h5> + <p>When you finish a course or reach milestones, you're awarded badges.</p> + <h5>How do I score more points?</h5> + <p>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.</p> + </div> + <div class="col-12 col-md-5 col-lg-4"> + <div class="card"> + <div class="card-header border-bottom-0">Ranks</div> + <ul class="list-group list-group-flush"> + <t t-foreach="ranks" t-as="rank"> + <li t-attf-class="list-group-item"> + <div class="media align-items-center"> + <img t-att-src="website.image_url(rank, 'image_128')" class="mr-2 o_image_40_cover" alt="Rank badge"/> + <div class="media-body"> + <h5 class="mt-0 mb-0" t-field="rank.name"/> + <span class="badge badge-success"><span t-field="rank.karma_min"/></span> point<span t-if="rank.karma_min">s</span> + </div> + </div> + </li> + </t> + </ul> + </div> + </div> + </div> + <t t-call="website_profile.badge_content"/> + </div> + </t> + </template> + + <template id="badge_content" name="Badges Page content"> + <div id="website_profile_badges"> + <div class="row"> + <div class="col-12"> + <h1 class="mt-4 mt-lg-2">Badges</h1> + <p class="lead"> + Besides gaining reputation with your questions and answers, + you receive badges for being especially helpful.<br class="d-none d-lg-inline-block"/>Badges + appear on your profile page, and your posts. + </p> + </div> + </div> + <div class="row col-12 align-items-center p-0" t-foreach="badges" t-as="badge"> + <div class="col-3 d-flex align-items-center"> + <t t-call="website_profile.badge_header"/> + </div> + <div class="col-6"> + <span t-field="badge.description"/> + </div> + <div class="col-3 text-right"> + <b t-esc="badge.granted_users_count"/> + <i class="text-muted"> awarded users</i> + </div> + </div> + </div> + </template> + + <template id="badge_header"> + <img t-if="not badge.image_1920 and badge.level" t-attf-src="/website_profile/static/src/img/badge_#{badge.level}.svg" + class="my-1 mr-1 wprofile_badge_img" t-att-alt="badge.name"/> + <img t-else="" t-att-src="website.image_url(badge, 'image_1024')" class="my-1 mr-1 wprofile_badge_img" t-att-alt="badge.name"/> + <a t-if="badge_url" t-att-href="badge_url"> + <h6 t-field="badge.name" class="d-inline my-0"/> + </a> + <h6 t-else="" t-field="badge.name" class="d-inline my-0"/> + </template> + + <!--Private profile--> + <template id="private_profile" name="Private Profile Page"> + <t t-call="website.layout"> + <div class="container mb32 mt48"> + <h1 class="mt32">This profile is private!</h1> + <div id="private_profile_return_link_container"> + <p><a t-attf-href="/">Return to the website.</a></p> + </div> + </div> + </t> + </template> + + <!-- + All Users Page + --> + <template id="users_page_main" name="Users Page"> + <t t-set="body_classname" t-value="'o_wprofile_body'"/> + <t t-call="website.layout"> + <div id="wrap" class="o_wprofile_wrap mt-0 pb-5"> + <t t-call="website_profile.users_page_header"/> + <t t-call="website_profile.users_page_content"/> + </div> + </t> + </template> + + <template id="users_page_header" name="Users Page Header"> + <div class="o_wprofile_all_users_header o_wprofile_gradient mb-n5 pb-5"> + <t t-call="website_profile.user_profile_sub_nav"/> + <div class="container"> + <h1 class="py-4 text-white d-inline-block">All Users</h1> + <div class="form-inline py-4 float-right"> + <strong class="form-group text-white mr-2">Rank by :</strong> + <div class="form-group btn-group"> + <a t-attf-class="btn btn-secondary #{ 'active' if group_by == 'week' else ''}" + t-att-href="'/profile/users?' + keep_query('search', group_by='week')">This week</a> + <a t-attf-class="btn btn-secondary #{ 'active' if group_by == 'month' else ''}" + t-att-href="'/profile/users?' + keep_query('search', group_by='month')">This month</a> + <a t-attf-class="btn btn-secondary #{ 'active' if group_by == 'all' else ''}" + t-att-href="'/profile/users?' + keep_query('search')">All time</a> + </div> + </div> + </div> + </div> + </template> + + <template id="users_page_content"> + <div class="container mb32"> + <div class="row mb-3"> + <div class="col-md-4 d-flex flex-grow-1" t-foreach="top3_users" t-as="user" t-attf-onclick="location.href='/profile/user/#{user['id']}';"> + <t t-call="website_profile.top3_user_card"></t> + </div> + </div> + <table class="table table-sm" t-if='users'> + <t t-foreach="users" t-as="user"> + <tr t-attf-onclick="location.href='/profile/user/#{user['id']}';" t-attf-class="o_wprofile_pointer bg-white #{user['id'] == user_id.id and 'o_wprofile_border_focus'}"> + <t t-call="website_profile.all_user_card"/> + </tr> + </t> + <t t-if="my_user"> + <!-- keep same table to avoid missaligment --> + <tr> + <td colspan="7"></td> + </tr> + <t t-set='user' t-value='my_user'/> + <tr t-attf-onclick="location.href='/profile/user/#{user['id']}';" t-attf-class="o_wprofile_pointer bg-white o_wprofile_border_focus"> + <t t-call="website_profile.all_user_card"> + </t> + </tr> + </t> + </table> + <t t-if='search and not users'> + <div class='alert alert-warning'>No user found for <strong><t t-esc="search"/></strong>. Try another search.</div> + </t> + <div class="form-inline justify-content-center"> + <t t-call="website_profile.pager_nobox"/> + </div> + </div> + </template> + + <template id="top3_user_card" name="Top 3 User Card"> + <div class="card w-100 text-center mb-2 border-bottom-0 o_wprofile_pointer"> + <div class="card-body"> + <div class="d-inline-block position-relative"> + <img class="rounded-circle img-fluid" + style="width: 128px; height: 128px; object-fit: cover;" + t-att-src="'/profile/avatar/%s?field=image_256%s' % (user['id'], '&res_model=%s&res_id=%s' % (record._name, record.id) if record else '')"/> + <img class="position-absolute" t-attf-src="/website_profile/static/src/img/rank_#{user_index + 1}.svg" alt="User rank" style="bottom: 0; right: -10px"/> + </div> + <h3 class="mt-2 mb-0" t-esc="user['name']"></h3> + <span class="badge badge-danger font-weight-normal px-2" t-if="not user['website_published']">Unpublished</span> + <strong class="text-muted" t-esc="user['rank']"/> + <div class="h3 my-2" t-if="user['karma_gain']"> + <span class="badge badge-pill badge-success px-3 py-2" >+ <t t-esc="user['karma_gain']"/> XP</span> + </div> + </div> + <div class="row mx-0 o_wprofile_top3_card_footer text-nowrap"> + <div class="col py-3"><b t-esc="user['karma']"/> <span class="text-muted">XP</span></div> + <div class="col py-3"><b t-esc="user['badge_count']"/> <span class="text-muted">Badges</span></div> + </div> + </div> + </template> + + <template id="all_user_card" name="All User Card"> + <td class="align-middle text-right text-muted" style="width: 0"> + <span t-esc="user['position']"/> + </td> + <td class="align-middle d-none d-sm-table-cell"> + <img class="o_object_fit_cover rounded-circle o_wprofile_img_small" width="30" height="30" t-att-src="'/profile/avatar/%s?field=image_128%s' % (user['id'], '&res_model=%s&res_id=%s' % (record._name, record.id) if record else '')"/> + </td> + <td class="align-middle w-md-75"> + <span class="font-weight-bold" t-esc="user['name']"/><br/> + <span class="text-muted font-weight-bold" t-esc="user['rank']"></span> + </td> + <td class="align-middle text-nowrap"> + <t t-if="user['karma_gain']"> + <span class="badge badge-pill badge-success d-inline">+ <t t-esc="user['karma_gain']"/> XP</span> + <span class="text-muted pl-2 pr-3"> + <t t-if="group_by == 'week'">this week</t> + <t t-elif="group_by == 'month'">this month</t> + <t t-else="">All time </t> + </span> + </t> + </td> + <td class="align-middle font-weight-bold text-right text-nowrap"> + <span t-if="not user['website_published']" class="badge badge-danger font-weight-normal px-2 py-1 m-1">Unpublished</span> + </td> + <td class="align-middle font-weight-bold text-right text-nowrap"> + <b t-esc="user['karma']"/> <span class="text-muted small font-weight-bold">XP</span> + </td> + <td class="align-middle font-weight-bold text-right pr-3 text-nowrap all_user_badge_count"> + <b t-esc="user['badge_count']"/> <span class="text-muted small font-weight-bold">Badges</span> + </td> + </template> + + <!-- Custom Pager: lighter than existing one, no box around number, first / end displayed --> + <template id="pager_nobox" name="Pager (not box display)"> + <ul t-if="pager['page_count'] > 1" t-attf-class="o_wprofile_pager font-weight-bold pagination m-0"> + <li t-attf-class="page-item o_wprofile_pager_arrow #{'disabled' if pager['page']['num'] == 1 else ''}"> + <a t-att-href=" pager['page_first']['url'] if pager['page']['num'] != 1 else None" class="page-link"><i class="fa fa-step-backward"/></a> + </li> + <li t-attf-class="page-item o_wprofile_pager_arrow #{'disabled' if pager['page']['num'] == 1 else ''}"> + <a t-att-href=" pager['page_previous']['url'] if pager['page']['num'] != 1 else None" class="page-link"><i class="fa fa-caret-left"/></a> + </li> + <t t-foreach="pager['pages']" t-as="page"> + <li t-attf-class="page-item #{'active disabled bg-primary rounded-circle' if page['num'] == pager['page']['num'] else ''}"> <a t-att-href="page['url']" class="page-link" t-raw="page['num']"></a></li> + </t> + <li t-attf-class="page-item o_wprofile_pager_arrow #{'disabled' if pager['page']['num'] == pager['page_count'] else ''}"> + <a t-att-href="pager['page_next']['url'] if pager['page']['num'] != pager['page_count'] else None" class="page-link"><i class="fa fa-caret-right"/></a> + </li> + <li t-attf-class="page-item o_wprofile_pager_arrow #{'disabled' if pager['page']['num'] == pager['page_count'] else ''}"> + <a t-att-href=" pager['page_last']['url'] if pager['page']['num'] != pager['page_count'] else None" class="page-link"><i class="fa fa-step-forward"/></a> + </li> + </ul> + </template> + + <template id="email_validation_banner"> + <t t-set="send_alert_classes" t-value="send_alert_classes if send_alert_classes else 'alert alert-danger alert-dismissable'"/> + <t t-set="done_alert_classes" t-value="done_alert_classes if done_alert_classes else 'alert alert-success alert-dismissable'"/> + + <div t-if="not validation_email_sent and not is_public_user and user.karma == 0" t-att-class="send_alert_classes" role="alert"> + <button type="button" class="close validation_email_close" data-dismiss="alert" aria-label="Close">×</button> + It appears your email has not been verified.<br/> + <a class="send_validation_email alert-link" href="#" t-att-data-redirect_url="redirect_url"> + <span t-esc="send_validation_email_message"/> + </a> + </div> + <div t-if="validation_email_done" t-att-class="done_alert_classes" role="status"> + <button type="button" class="close validated_email_close" data-dismiss="alert" aria-label="Close">×</button> + <span id="email_validated_message">Congratulations! Your email has just been validated.</span> + <span t-esc="additional_validated_email_message"/> + </div> + </template> + +</data></odoo> |
