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_form | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_form')
92 files changed, 35987 insertions, 0 deletions
diff --git a/addons/website_form/__init__.py b/addons/website_form/__init__.py new file mode 100644 index 00000000..91c5580f --- /dev/null +++ b/addons/website_form/__init__.py @@ -0,0 +1,2 @@ +from . import controllers +from . import models diff --git a/addons/website_form/__manifest__.py b/addons/website_form/__manifest__.py new file mode 100644 index 00000000..9b0b7107 --- /dev/null +++ b/addons/website_form/__manifest__.py @@ -0,0 +1,22 @@ +{ + 'name': 'Website Form', + 'category': 'Website/Website', + 'summary': 'Build custom web forms', + 'description': """ + Customize and create your own web forms. + This module adds a new building block in the website builder in order to build new forms from scratch in any website page. + """, + 'version': '1.0', + 'depends': ['website', 'mail', 'google_recaptcha'], + 'data': [ + 'data/mail_mail_data.xml', + 'views/assets.xml', + 'views/ir_model_views.xml', + 'views/snippets/snippets.xml', + 'views/snippets/s_website_form.xml', + 'views/website_form_templates.xml', + ], + 'installable': True, + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/addons/website_form/controllers/__init__.py b/addons/website_form/controllers/__init__.py new file mode 100644 index 00000000..12a7e529 --- /dev/null +++ b/addons/website_form/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/addons/website_form/controllers/main.py b/addons/website_form/controllers/main.py new file mode 100644 index 00000000..1d4daba4 --- /dev/null +++ b/addons/website_form/controllers/main.py @@ -0,0 +1,276 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import base64 +import json +import pytz + +from datetime import datetime +from psycopg2 import IntegrityError +from werkzeug.exceptions import BadRequest + +from odoo import http, SUPERUSER_ID, _ +from odoo.http import request +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT +from odoo.tools.translate import _ +from odoo.exceptions import ValidationError, UserError +from odoo.addons.base.models.ir_qweb_fields import nl2br + + +class WebsiteForm(http.Controller): + + @http.route('/website_form/', type='http', auth="public", methods=['POST'], multilang=False) + def website_form_empty(self, **kwargs): + # This is a workaround to don't add language prefix to <form action="/website_form/" ...> + return "" + + # Check and insert values from the form on the model <model> + @http.route('/website_form/<string:model_name>', type='http', auth="public", methods=['POST'], website=True, csrf=False) + def website_form(self, model_name, **kwargs): + # Partial CSRF check, only performed when session is authenticated, as there + # is no real risk for unauthenticated sessions here. It's a common case for + # embedded forms now: SameSite policy rejects the cookies, so the session + # is lost, and the CSRF check fails, breaking the post for no good reason. + csrf_token = request.params.pop('csrf_token', None) + if request.session.uid and not request.validate_csrf(csrf_token): + raise BadRequest('Session expired (invalid CSRF token)') + + try: + # The except clause below should not let what has been done inside + # here be committed. It should not either roll back everything in + # this controller method. Instead, we use a savepoint to roll back + # what has been done inside the try clause. + with request.env.cr.savepoint(): + if request.env['ir.http']._verify_request_recaptcha_token('website_form'): + return self._handle_website_form(model_name, **kwargs) + error = _("Suspicious activity detected by Google reCaptcha.") + except (ValidationError, UserError) as e: + error = e.args[0] + return json.dumps({ + 'error': error, + }) + + def _handle_website_form(self, model_name, **kwargs): + model_record = request.env['ir.model'].sudo().search([('model', '=', model_name), ('website_form_access', '=', True)]) + if not model_record: + return json.dumps({ + 'error': _("The form's specified model does not exist") + }) + + try: + data = self.extract_data(model_record, request.params) + # If we encounter an issue while extracting data + except ValidationError as e: + # I couldn't find a cleaner way to pass data to an exception + return json.dumps({'error_fields' : e.args[0]}) + + try: + id_record = self.insert_record(request, model_record, data['record'], data['custom'], data.get('meta')) + if id_record: + self.insert_attachment(model_record, id_record, data['attachments']) + # in case of an email, we want to send it immediately instead of waiting + # for the email queue to process + if model_name == 'mail.mail': + request.env[model_name].sudo().browse(id_record).send() + + # Some fields have additional SQL constraints that we can't check generically + # Ex: crm.lead.probability which is a float between 0 and 1 + # TODO: How to get the name of the erroneous field ? + except IntegrityError: + return json.dumps(False) + + request.session['form_builder_model_model'] = model_record.model + request.session['form_builder_model'] = model_record.name + request.session['form_builder_id'] = id_record + + return json.dumps({'id': id_record}) + + # Constants string to make metadata readable on a text field + + _meta_label = "%s\n________\n\n" % _("Metadata") # Title for meta data + + # Dict of dynamically called filters following type of field to be fault tolerent + + def identity(self, field_label, field_input): + return field_input + + def integer(self, field_label, field_input): + return int(field_input) + + def floating(self, field_label, field_input): + return float(field_input) + + def boolean(self, field_label, field_input): + return bool(field_input) + + def binary(self, field_label, field_input): + return base64.b64encode(field_input.read()) + + def one2many(self, field_label, field_input): + return [int(i) for i in field_input.split(',')] + + def many2many(self, field_label, field_input, *args): + return [(args[0] if args else (6,0)) + (self.one2many(field_label, field_input),)] + + _input_filters = { + 'char': identity, + 'text': identity, + 'html': identity, + 'date': identity, + 'datetime': identity, + 'many2one': integer, + 'one2many': one2many, + 'many2many':many2many, + 'selection': identity, + 'boolean': boolean, + 'integer': integer, + 'float': floating, + 'binary': binary, + 'monetary': floating, + } + + + # Extract all data sent by the form and sort its on several properties + def extract_data(self, model, values): + dest_model = request.env[model.sudo().model] + + data = { + 'record': {}, # Values to create record + 'attachments': [], # Attached files + 'custom': '', # Custom fields values + 'meta': '', # Add metadata if enabled + } + + authorized_fields = model.sudo()._get_form_writable_fields() + error_fields = [] + custom_fields = [] + + for field_name, field_value in values.items(): + # If the value of the field if a file + if hasattr(field_value, 'filename'): + # Undo file upload field name indexing + field_name = field_name.split('[', 1)[0] + + # If it's an actual binary field, convert the input file + # If it's not, we'll use attachments instead + if field_name in authorized_fields and authorized_fields[field_name]['type'] == 'binary': + data['record'][field_name] = base64.b64encode(field_value.read()) + field_value.stream.seek(0) # do not consume value forever + if authorized_fields[field_name]['manual'] and field_name + "_filename" in dest_model: + data['record'][field_name + "_filename"] = field_value.filename + else: + field_value.field_name = field_name + data['attachments'].append(field_value) + + # If it's a known field + elif field_name in authorized_fields: + try: + input_filter = self._input_filters[authorized_fields[field_name]['type']] + data['record'][field_name] = input_filter(self, field_name, field_value) + except ValueError: + error_fields.append(field_name) + + # If it's a custom field + elif field_name != 'context': + custom_fields.append((field_name, field_value)) + + data['custom'] = "\n".join([u"%s : %s" % v for v in custom_fields]) + + # Add metadata if enabled # ICP for retrocompatibility + if request.env['ir.config_parameter'].sudo().get_param('website_form_enable_metadata'): + environ = request.httprequest.headers.environ + data['meta'] += "%s : %s\n%s : %s\n%s : %s\n%s : %s\n" % ( + "IP" , environ.get("REMOTE_ADDR"), + "USER_AGENT" , environ.get("HTTP_USER_AGENT"), + "ACCEPT_LANGUAGE" , environ.get("HTTP_ACCEPT_LANGUAGE"), + "REFERER" , environ.get("HTTP_REFERER") + ) + + # This function can be defined on any model to provide + # a model-specific filtering of the record values + # Example: + # def website_form_input_filter(self, values): + # values['name'] = '%s\'s Application' % values['partner_name'] + # return values + if hasattr(dest_model, "website_form_input_filter"): + data['record'] = dest_model.website_form_input_filter(request, data['record']) + + missing_required_fields = [label for label, field in authorized_fields.items() if field['required'] and not label in data['record']] + if any(error_fields): + raise ValidationError(error_fields + missing_required_fields) + + return data + + def insert_record(self, request, model, values, custom, meta=None): + model_name = model.sudo().model + if model_name == 'mail.mail': + values.update({'reply_to': values.get('email_from')}) + record = request.env[model_name].with_user(SUPERUSER_ID).with_context(mail_create_nosubscribe=True).create(values) + + if custom or meta: + _custom_label = "%s\n___________\n\n" % _("Other Information:") # Title for custom fields + if model_name == 'mail.mail': + _custom_label = "%s\n___________\n\n" % _("This message has been posted on your website!") + default_field = model.website_form_default_field_id + default_field_data = values.get(default_field.name, '') + custom_content = (default_field_data + "\n\n" if default_field_data else '') \ + + (_custom_label + custom + "\n\n" if custom else '') \ + + (self._meta_label + meta if meta else '') + + # If there is a default field configured for this model, use it. + # If there isn't, put the custom data in a message instead + if default_field.name: + if default_field.ttype == 'html' or model_name == 'mail.mail': + custom_content = nl2br(custom_content) + record.update({default_field.name: custom_content}) + else: + values = { + 'body': nl2br(custom_content), + 'model': model_name, + 'message_type': 'comment', + 'no_auto_thread': False, + 'res_id': record.id, + } + mail_id = request.env['mail.message'].with_user(SUPERUSER_ID).create(values) + + return record.id + + # Link all files attached on the form + def insert_attachment(self, model, id_record, files): + orphan_attachment_ids = [] + model_name = model.sudo().model + record = model.env[model_name].browse(id_record) + authorized_fields = model.sudo()._get_form_writable_fields() + for file in files: + custom_field = file.field_name not in authorized_fields + attachment_value = { + 'name': file.filename, + 'datas': base64.encodebytes(file.read()), + 'res_model': model_name, + 'res_id': record.id, + } + attachment_id = request.env['ir.attachment'].sudo().create(attachment_value) + if attachment_id and not custom_field: + record.sudo()[file.field_name] = [(4, attachment_id.id)] + else: + orphan_attachment_ids.append(attachment_id.id) + + if model_name != 'mail.mail': + # If some attachments didn't match a field on the model, + # we create a mail.message to link them to the record + if orphan_attachment_ids: + values = { + 'body': _('<p>Attached files : </p>'), + 'model': model_name, + 'message_type': 'comment', + 'no_auto_thread': False, + 'res_id': id_record, + 'attachment_ids': [(6, 0, orphan_attachment_ids)], + 'subtype_id': request.env['ir.model.data'].xmlid_to_res_id('mail.mt_comment'), + } + mail_id = request.env['mail.message'].with_user(SUPERUSER_ID).create(values) + else: + # If the model is mail.mail then we have no other choice but to + # attach the custom binary field files on the attachment_ids field. + for attachment_id_id in orphan_attachment_ids: + record.attachment_ids = [(4, attachment_id_id)] diff --git a/addons/website_form/data/mail_mail_data.xml b/addons/website_form/data/mail_mail_data.xml new file mode 100644 index 00000000..134988a7 --- /dev/null +++ b/addons/website_form/data/mail_mail_data.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="mail.model_mail_mail" model="ir.model"> + <field name="website_form_key">send_mail</field> + <field name="website_form_default_field_id" ref="mail.field_mail_mail__body_html" /> + <field name="website_form_access">True</field> + <field name="website_form_label">Send an E-mail</field> + </record> + <function model="ir.model.fields" name="formbuilder_whitelist"> + <value>mail.mail</value> + <value eval="[ + 'subject', + 'body_html', + 'email_to', + 'email_from', + 'record_name', + 'attachment_ids', + ]"/> + </function> +</odoo> diff --git a/addons/website_form/i18n/af.po b/addons/website_form/i18n/af.po new file mode 100644 index 00000000..c0666987 --- /dev/null +++ b/addons/website_form/i18n/af.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-26 09:29+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/" +"af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' is nie 'n korrekte datum nie" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Velde" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Webtuiste" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/ar.po b/addons/website_form/i18n/ar.po new file mode 100644 index 00000000..ce98f792 --- /dev/null +++ b/addons/website_form/i18n/ar.po @@ -0,0 +1,625 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Mohammed Albasha <m.albasha.ma@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Shaima Safar <shaima.safar@open-inside.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Ghaith Gammar <g.gammar@saharaifs.net>, 2020 +# Rachid Al Assir <rachidalassir@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Rachid Al Assir <rachidalassir@gmail.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ليس تاريخًا صحيحًا" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' ليس متغيرًا من النوع datetime" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>الملفات المرفقة: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "يسمح بإستخدامها في الأستمارات" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "لقد حدث خطأ، لم يتم إرسال البيانات." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "ضع هذا الحقل في القائمة السوداء لإستمارات الويب." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "القائمة السوداء في إستمارات الويب" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "وسط" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "مربع الاختيار" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "التاريخ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "رقم عشري" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "عرض" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "البريد الإلكتروني" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "إتاحة مصمم الإستمارات لهذا الموديل." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "خطأ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "حقل لبيانات إستمارة مخصصة" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "الحقول" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "رفع الملف" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"تسمية إجراء الإستمارة.. مثلا: crm.lead يقوم 'إرسال بريد إلكتروني' and " +"project.issue يقوم ب 'إنشاء عقبة في المشروع'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "الارتفاع" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "خفي" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "أفقي" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "المُعرف" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "تسمية لإجراء الإستمارة" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "يسار" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "البيانات التفصيلية" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "كائنات" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "لا شيء" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "الرقم" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "يرجى ملء الإستمارة بشكل صحيح." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "أزرار اختيار" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "إعادة توجيه" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "مطلوب" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "يمين" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "قائمة خيارات" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "يرجى بيان الحقل الذي سيحتوي بيانات مفصلة و مخصصة في الإستمارة." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "إرسال" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "نجاح" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "النص" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "شكرا لكم!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "لقد تم ارسال الإستمارة بنجاح." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "العلوي" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "النوع" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "رابط ويب" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "رابط ويب" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "رأسي" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "سنعاود الاتصال بك قريباً." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "الموقع الإلكتروني" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "موقع ويب" diff --git a/addons/website_form/i18n/az.po b/addons/website_form/i18n/az.po new file mode 100644 index 00000000..6d8548d3 --- /dev/null +++ b/addons/website_form/i18n/az.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/bg.po b/addons/website_form/i18n/bg.po new file mode 100644 index 00000000..16a43939 --- /dev/null +++ b/addons/website_form/i18n/bg.po @@ -0,0 +1,621 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# Александра Николова <alexandra1nikolova@gmail.com>, 2020 +# Kaloyan Naumov <kaloyan@lumnus.net>, 2020 +# Boyan Rabchev <boyan.rabchev@plana.solutions>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Boyan Rabchev <boyan.rabchev@plana.solutions>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "\"%s\" не е правилна дата" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "\"%s\" не е правилна дата и час" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Прикачи файлове: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Позволено да се използва във форми" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Възникна грешка, формата не беше изпратена." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Поставете това поле за уебформи в черен списък" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Вписан в черен списък в уебформи" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Център" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Поле за отметка" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Дата" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Дата & час" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Десетично число" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Покажете" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Имейл" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Активирайте функцията за съставяне на форми за този модел." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Грешка" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Поле за персонализирани данни от форма" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Полета" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Качване на файл в системата" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Етикет за форма на действие. Напр: crm.lead би могло да бъде 'Изпратете " +"имейл', а project.issue би могло да бъде 'Регистрирайте грешка'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Височина" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Скрит" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Хоризонтален" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Етикет за действие на формата" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Ляв" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Дълъг текст" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Метаданни" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Модели" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Няколко полета за отметка" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Липсва съвпадащ запис !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Никакъв" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Номер" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Опция" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Моля, попълнете правилно формата." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Радио бутони" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Пренасочен" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Изискуем" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Дясно" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Селекция" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Посочете полето, което ще съдържа полевите данни за мета- и персонализирани " +"формуляри." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Изпращане" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Успех" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Текст" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Формата е изпратена успешно." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Вид" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL адрес" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL адрес" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Вертикален" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Скоро ще се свържем с вас." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Уебсайт" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "уебсайт" diff --git a/addons/website_form/i18n/bn.po b/addons/website_form/i18n/bn.po new file mode 100644 index 00000000..47b0cadd --- /dev/null +++ b/addons/website_form/i18n/bn.po @@ -0,0 +1,616 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2021 +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "কেন্দ্র" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "প্রদর্শন" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "ই-মেইল" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "ত্রুটি" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "আইডি " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "বাম" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "মডেল সমূহ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "কিছুই না" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "ডান" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "শীর্ষ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "ধরণ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "ইউআরএল" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "ওয়েবসাইট" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/bs.po b/addons/website_form/i18n/bs.po new file mode 100644 index 00000000..213da0f9 --- /dev/null +++ b/addons/website_form/i18n/bs.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nije pravilan datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nije pravilno datum-vrijeme" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polja" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/ca.po b/addons/website_form/i18n/ca.po new file mode 100644 index 00000000..12c108c5 --- /dev/null +++ b/addons/website_form/i18n/ca.po @@ -0,0 +1,623 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 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 +# Arnau Ros, 2020 +# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# jabelchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: jabelchi, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' no és una data correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' no és una data i hora correcta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Fitxers adjuntats : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Permès d'utilitzar als formularis" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Hi ha hagut un error, el formulari no s'ha enviat." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Posar a la llista negra aquest camp per als formularis web." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centrar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Casella de selecció" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Nombre decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Mostrar " + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Correu electrònic" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Camps" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Pujar arxiu" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altura" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ocult" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Dreta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadades" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Cap" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Número" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Botons d'opció" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Requerit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Dreta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selecció" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Publicar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Èxit" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Gràcies" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulari ha estat enviat correctament." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Superior" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Adreça URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Ens posarem en contacte amb vostè en breu." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Lloc web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "pàgina web" diff --git a/addons/website_form/i18n/ckb.po b/addons/website_form/i18n/ckb.po new file mode 100644 index 00000000..c3cb8503 --- /dev/null +++ b/addons/website_form/i18n/ckb.po @@ -0,0 +1,614 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' بەرواری دروست نییە" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' کات و بەرواری دروست نییە" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">بابەت</span>\n" +"<span class=\"s_website_form_mark\">*</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">ناوت</span>\n" +"<span class=\"s_website_form_mark\">*</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "ناوەند" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "بەروار" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "پیشاندان" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "ئیمەیڵ" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "هەڵە" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "بەرزی" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ناسنامە" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "هیچ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "ناردن" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "دەق" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "جۆر" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "بەستەر" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "ماڵپەڕ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/cs.po b/addons/website_form/i18n/cs.po new file mode 100644 index 00000000..58ed0557 --- /dev/null +++ b/addons/website_form/i18n/cs.po @@ -0,0 +1,630 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# Martin Trigaux, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# Damian Brencic <brencicdamian12313@gmail.com>, 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' není platné datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' není platné datum/čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr ", .s_website_form" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Připojené soubory : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">Email pro</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-mail</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefon</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Předmět</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Vaše firma</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Vaše jméno</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Tvá otázka</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Po tomto přidejte nové pole" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Přidat nové pole na konec" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Povoleno používat ve formulářích" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Došlo k chybě, formulář nebyl odeslán." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Zakázat toto pole pro webové formuláře" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Blokováni ve webových formulářích" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Pozice tlačítka" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Střed" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Zaškrtávací pole" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Vlastní pole" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum a čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Desetinné číslo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Zobrazit" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Upravit zprávu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Povolit funkci Tvůrce formulářů pro tento model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Chyba" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Pole pro vlastní data formuláře" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Pole" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Nahrát soubor" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formulář štítku akce. Příklad: crm.lead může být „Odeslat e-mail“ a " +"project.issue může být „Vytvořit problém“." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Výška" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skrytý" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Skrýt" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontální" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "Mezitím vás zveme k návštěvě našeho" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Šířka štítků" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Vlevo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Dlouhý text" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modely" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Více zaškrtávacích políček" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Žádný odpovídající záznam!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nic" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nic" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Číslo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Možnost 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Možnost 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Volitelné" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Jiná informace:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Náš tým vám co nejdříve zašle zprávu." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Vyplňte prosím správně formulář." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Přepínací tlačítka" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "E-mail adresáta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Přesměrování" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Povinné" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Vpravo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Výběr" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "E-mailové adresy oddělte čárkou." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Zobrazit zprávu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "Zobrazit zásady reCaptcha" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Zadejte pole, které bude obsahovat metadata a data vlastních polí formuláře." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Odeslat" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Úspěch" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Google reCaptcha zjistil podezřelou aktivitu." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefon" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Děkujeme vám za vaši reakci" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Děkujeme" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formulář byl úspěšně odeslán." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "Specifikovaný model formuláře neexistuje" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Tato zpráva byla zveřejněna na vašem webu!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Nahoru" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Typ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Používá se v registru FormBuilder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikální" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Brzy se k vám vrátíme." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Webstránka" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formuláře webových stránek" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Pole modelu nelze duplikovat." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "Tlačítko odeslání formuláře nelze duplikovat." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Nelze odebrat pole, které je vyžadováno samotným modelem." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "Tlačítko pro odeslání formuláře nelze odstranit." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "řádky" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "webstránka" diff --git a/addons/website_form/i18n/da.po b/addons/website_form/i18n/da.po new file mode 100644 index 00000000..94f68164 --- /dev/null +++ b/addons/website_form/i18n/da.po @@ -0,0 +1,632 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Hans Henrik Gabelgaard <hhg@gabelgaard.org>, 2020 +# Per Rasmussen <perhgrasmussen@gmail.com>, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Ejner Sønniksen <ejner@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Martin Trigaux, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' er ikke en gyldig dato" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' er ikke en valid dato/klokkeslæt" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Vedhæftede filer: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Din besked er blevet <b>sendt</b></span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">Email Til</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefonnummer</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Emne</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Din Virksomhed</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Dit Navn</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Dit Spørgsmål</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "tilføj et nyt felt efter denne" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Tilføj et nyt felt til slut" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Tilladt at bruge i formularer" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Der er opstået en fejl, formularen er ikke blevet sendt." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Blacklist dette felt i webformularer" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Blacklist i webformularer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Knap Position" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Midten" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Afkrydsningsfelt" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Tilpasset felt" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Dato" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Dato & tid" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Decimalnummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Vis" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Rediger Besked" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Aktivér formularbygge funktionen til denne model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Fejl" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Felt for brugerdefinerede formulardata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Felter" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Fil sendt" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formular label ved en handling. Ex: crm.lead kunne være 'Send en e-mail' og " +"project.issue kunne være 'Opret et problem'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Højde" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skjult" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Skjul" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Vandret" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "I mellemtiden inviterer vi dig til at besøge vores" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "Input Justeret" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "Input Pladsholder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "Input Type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Mærkat Navn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Mærkat Position" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Label til formular" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Mærkat Bredde" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Venstre" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Lang tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Marker Tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Markeret Felter" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Flere afkrydsningsfelter" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Ingen matchende post!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ingen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Intet" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "Ved Succes" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Mulighed 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Mulighed 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Mulighed 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Valgfri" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Anden information:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Vores hold vil svare dig så hurtigt som muligt." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Udfyld venligst formularen korrekt." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radio buttons" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Modtager email" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirect" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obligatorisk" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Højre" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Udvælgelse" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Separer email adresser med et komma." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Vis Besked" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "Vis reCaptcha Police" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Angiv feltet, der skal indeholde meta- og brugerdefinerede formularfelt " +"data." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Indsend" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Succes" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Mistænkelig aktivitet registreret af Google reCaptcha." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefon" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Tak For Din Tilbagemelding" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Tak!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Din formular er afsendt." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "Formularens specificerede model eksisterer ikke" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Denne besked blev posteret til din hjemmeside!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Top" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Adresse" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Brugt i FormBuilder registret" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Lodret" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Vi kommer tilbage hurtigst muligt." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Hjemmeside formular nøgle" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formularer" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Du kan ikke duplikere et model felt." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "Du kan ikke kopiere indgiv knappen fra formularen." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Du kan ikke fjerne et felt der er påkrævet af selve modellen." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "Du kan ikke fjerne indgiv knappen fra formularen." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "rækker" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Hjemmeside" diff --git a/addons/website_form/i18n/de.po b/addons/website_form/i18n/de.po new file mode 100644 index 00000000..509df1f1 --- /dev/null +++ b/addons/website_form/i18n/de.po @@ -0,0 +1,632 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# e2f <projects@e2f.com>, 2020 +# Ralf Hilgenstock <rh@dialoge.info>, 2020 +# Martin Trigaux, 2020 +# Rudolf Schnapka <rs@techno-flex.de>, 2020 +# Katharina Moritz <kmo@e2f.com>, 2020 +# Leon Grill <leg@odoo.com>, 2020 +# aNj <anj2j@yahoo.de>, 2020 +# Wolfgang Taferner, 2020 +# Ermin Trevisan <trevi@twanda.com>, 2020 +# Robert Förster <hello@suppliot.eu>, 2021 +# Andreas Schmidt <schmigo@gmail.com>, 2021 +# Chris Egal <sodaswed@web.de>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ist kein gültiges Datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' ist kein gültiges Datums- und Zeitformat" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Angehängte Dateien: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefon</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Firma</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Ihr Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Nutzbar in Formularen" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Ein Fehler ist aufgetreten, das Formular wurde nicht übermittelt." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Dieses Feld für Webformulare ausschließen" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Ausgeschlossen in Webformularen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Zentriert" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Kontrollkästchen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum & Uhrzeit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Dezimalzahl" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Anzeige" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Nachricht bearbeiten" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-Mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Das Erstellen von Formularen für dieses Modell aktivieren." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Fehler" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Feld für benutzerdefinierte Formulardaten" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Felder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Datei hochladen" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formularaktionsbezeichnung Bsp.: crm.lead könnte „E-Mail senden“ sein und " +"project.issue „Problem erstellen“." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Höhe" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Versteckt" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Verbergen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Bezeichnung für die Formularaktion" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Links" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Langtext" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadaten" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Datenmodelle" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Mehrere Kontrollkästchen" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Keine übereinstimmenden Datensätze!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Keine" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nichts" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Optional" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Bitte füllen Sie das Formular korrekt aus." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radiobuttons" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Umleiten" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Erforderlich" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Rechts" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Auswahl" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Meldung anzeigen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Definieren Sie das Feld, welches die Metadaten und die Daten für " +"benutzerdefinierte Formularfelder enthalten wird." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Absenden" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Erfolgreich" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Vielen Dank!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Das Formular wurde erfolgreich übermittelt." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Oben" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Typ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Wir melden uns so schnell wie möglich." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Website" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Webformulare" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Website" diff --git a/addons/website_form/i18n/el.po b/addons/website_form/i18n/el.po new file mode 100644 index 00000000..e72adf48 --- /dev/null +++ b/addons/website_form/i18n/el.po @@ -0,0 +1,622 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# Giota Dandidou <giotadandidou@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Giota Dandidou <giotadandidou@gmail.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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' δεν είναι σωστή ημερομηνία" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' δεν είναι μια σωστή ημερομηνία/ώρα" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Συνημμένα αρχεία : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Επιτρέπεται να χρησιμοποιείται σε φόρμας" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Παρουσιάστηκε κάποιο σφάλμα, η φόρμα δεν έχει σταλεί." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Μαύρη λίστα αυτού του πεδίου για φόρμες ιστού" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Μαύρη λίστα σε φόρμες ιστού" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Κέντρο" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Ημερομηνία" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Ημερομηνία & Ώρα" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Εμφάνιση" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Ενεργοποιήστε τη λειτουργία Δημιουργία Φόρμας για αυτό το μοντέλο." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Σφάλμα" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Πεδίο για δεδομένα προσαρμοσμένης φόρμας" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Πεδία" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Μεταφόρτωση αρχείου" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Ετικέτα δράσης φόρμας. Π.χ. το crm.lead μπορεί να είναι 'Αποστολή ενός " +"email' και το project.issue να είναι 'Δημιουργία ενός Ζητήματος'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Ύψος" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Κρυφό" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Οριζόντια" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "Κωδικός" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Ετικέτα για την δράση της φόρμας" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Αριστερά" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Μεταδομένα" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Μοντέλα" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Δεν υπάρχει αρχείο που ταιριάζει!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Κανένα" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Αριθμός" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Παρακαλούμε συμπληρώστε τη φόρμα σωστά." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Κουμπιά Επιλογής" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Απαραίτητα" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Δεξιά" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Επιλογή" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Καθορίστε το πεδίο που θα περιέχει δεδομένα πεδίων meta και προσαρμοσμένα " +"πεδία δεδομένων της φόρμας." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Υποβολή" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Επιτυχία" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Κείμενο" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Η φόρμα έχει αποσταλεί επιτυχώς." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Τύπος" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Διεύθυνση (Url)" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Κατακόρυφο" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Θα επικοινωνήσουμε μαζί σας σύντομα." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "ιστότοπος" diff --git a/addons/website_form/i18n/en_GB.po b/addons/website_form/i18n/en_GB.po new file mode 100644 index 00000000..73fce888 --- /dev/null +++ b/addons/website_form/i18n/en_GB.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 10:19+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/" +"odoo-9/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Fields" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Website" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/eo.po b/addons/website_form/i18n/eo.po new file mode 100644 index 00000000..5cb0fc5a --- /dev/null +++ b/addons/website_form/i18n/eo.po @@ -0,0 +1,526 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +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:21+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_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/es.po b/addons/website_form/i18n/es.po new file mode 100644 index 00000000..dbf60ea6 --- /dev/null +++ b/addons/website_form/i18n/es.po @@ -0,0 +1,635 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# e2f <projects@e2f.com>, 2020 +# David Arnold <blaggacao@users.noreply.github.com>, 2020 +# Luis M. Ontalba <luis.martinez@tecnativa.com>, 2020 +# Jon Perez <jop@odoo.com>, 2020 +# Juan Pablo Mora <jpm@odoo.com>, 2020 +# Mariana Santos Romo <msn@odoo.com>, 2020 +# VivianMontana23 <vivianpvm@gmail.com>, 2020 +# Osiris Román <osiris.roman@yachaytech.edu.ec>, 2020 +# Paulina Rodriguez <pauli.rodriguez.c@gmail.com>, 2020 +# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2020 +# David Perez <david@closemarketing.es>, 2020 +# Martin Trigaux, 2020 +# Nicolás Broggi <rnbroggi@gmail.com>, 2020 +# Jorge Alfonso <jlalfonso21@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Jorge Alfonso <jlalfonso21@gmail.com>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "La fecha '%s' no es correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "‘%s’ no es una fecha y hora correcta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Archivos adjuntos:</p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Tu Nombre</span>\n" +"<span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Permitido el uso de formularios" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Ha ocurrido un error, el formulario no se ha enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Lista negra de este campo para formularios web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Lista negra en formularios web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centro" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Casilla de verificación" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Fecha" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Fecha y Hora" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Número Decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Mostrar en pantalla" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Correo electrónico" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" +"Habilitar la característica de constructor del formulario para este modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo de datos de formulario personalizado" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Subir archivo" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de la acción del formulario. Ex: rm.lead podría ser ‘Correo " +"electrónico’ y project.issue podría ser ‘Crear algo’." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altura" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Oculto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Ocultar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etiqueta de acción del formulario" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Izquierda" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Texto Largo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadatos" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Múltiples Casillas de Verificación " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "No hay coincidencias!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ninguno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Número" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Opción 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Opción 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Opción 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Opcional" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Otra Información:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor, llene el formulario correctamente." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Botones de opción" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Correo del Destinatario" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirigir" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Requerido" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Derecha" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selección" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique el campo que contendrá metadatos y datos de campos de " +"formularios personalizados." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Enviar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Aceptada" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Texto" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "¡Gracias!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulario ha sido enviado correctamente." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Este mensaje se ha publicado en tu sitio web!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Arriba" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Usado en el Registro del Constructor de Formularios" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Le contestaremos en breve." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Llave del Formulario para el Sitio Web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formularios de página web" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "No puede duplicar un campo del modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "No puede eliminar un campo requerido por el modelo mismo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "sitio web" diff --git a/addons/website_form/i18n/es_CL.po b/addons/website_form/i18n/es_CL.po new file mode 100644 index 00000000..21f9f230 --- /dev/null +++ b/addons/website_form/i18n/es_CL.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 10:20+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/es_CO.po b/addons/website_form/i18n/es_CO.po new file mode 100644 index 00000000..0219530e --- /dev/null +++ b/addons/website_form/i18n/es_CO.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016 +# Esteban Echeverry <tebanep@nubark.com>, 2016 +# Mateo Tibaquirá <nestormateo@gmail.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-02-16 16:33+0000\n" +"Last-Translator: Esteban Echeverry <tebanep@nubark.com>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' no es una fecha correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' no es una correcta fecha y hora" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Archivos adjuntos : </p>" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "Habilitado para usar en formularios" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Un error ha ocurrido, el formulario no ha sido enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Poner en lista negra este campo para formularios web." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "En lista negra en formularios web." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "Información personalizada" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" +"Habilitar la funcionalidad del constructor de formularios para este modelo." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "Habilitar la escritura de metadatos al enviar el formulario." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo para datos personalizados de formulario" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de Acción. Ejemplo: crm.lead puede indicar 'Enviar un correo " +"electrónico' y project.issue puede ser 'Crear una Incidencia'." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "Etiqueta para la acción del formulario" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "Metadatos" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor diligencie el formulario correctamente." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +#, fuzzy +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique el campo que contendrá los datos meta y de campos personalizados." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulario ha sido enviado exitosamente." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "Escribir metadatos" diff --git a/addons/website_form/i18n/es_CR.po b/addons/website_form/i18n/es_CR.po new file mode 100644 index 00000000..9706539f --- /dev/null +++ b/addons/website_form/i18n/es_CR.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 10:20+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/es_DO.po b/addons/website_form/i18n/es_DO.po new file mode 100644 index 00000000..f6ebd618 --- /dev/null +++ b/addons/website_form/i18n/es_DO.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Edser Solís <edser@iterativo.do>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-07-21 00:59+0000\n" +"Last-Translator: Gustavo Valverde\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/" +"odoo-9/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' no es una fecha correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' no es una fecha-hora correcta" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Archivos adjuntos : </p>" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "Permitido para usarse en formularios" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Un error ha ocurrido, el formulario no ha sido enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Poner en lista negra este campo para los formularios web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Puesto en lista negra en formularios web" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "Informaciones personalizadas" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Habilite la función de constructor de formularios para este modelo." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "Habilite la escritura de metadatos en el envío de formularios." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo para datos personalizados de formulario" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta para acción de formulario. Ej.: crm.lead podría ser 'Enviar un " +"correo' y project.issue podría ser 'Crear un Caso'." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "Etique para acción de formulario" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "Metadatos" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor complete el formulario correctamente." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +#, fuzzy +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique el campo que contendrá datos de formularios personalizados y " +"metadatos." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulario ha sido enviado satisfactoriamente." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "Escribir metadatos" diff --git a/addons/website_form/i18n/es_EC.po b/addons/website_form/i18n/es_EC.po new file mode 100644 index 00000000..2b5c42a2 --- /dev/null +++ b/addons/website_form/i18n/es_EC.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Dany Lopez <dlopez@silttec.com>, 2015 +# Rick Hunter <rick_hunter_ec@yahoo.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-11 04:46+0000\n" +"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/" +"language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' no es una fecha correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' no es una fecha-hora correcta" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "Archivos adjuntos:" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "Permite usar en formularios" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Un error a ocurrido, el formulario no ha sido enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Campo en lista negra para formularios web." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Lista negra en formularios web." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "Información personalizada" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" +"Habilitada la característica del constructor de formularios para este modelo." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "Activa la escritura de la metadata al enviar el formulario." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo para datos personalizados" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de Acción. Ejemplo: crm.lead puede indicar 'Enviar un correo " +"electrónico' y project.issue puede ser 'Crear una incidencia'." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "Etiqueta para la acción del formulario" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "Metadatos" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor llene el formulario correctamente." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +#, fuzzy +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique el campo el cual tendrá los datos personalizados o los metadatos." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulario ha sido enviado correctamente." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "Escribir metadatos" diff --git a/addons/website_form/i18n/es_MX.po b/addons/website_form/i18n/es_MX.po new file mode 100644 index 00000000..9f7f3c77 --- /dev/null +++ b/addons/website_form/i18n/es_MX.po @@ -0,0 +1,623 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Braulio D. López Vázquez <bdl@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Braulio D. López Vázquez <bdl@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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "La fecha '%s' no es correcta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "‘%s’ no es una fecha y hora correcta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Archivos adjuntos:</p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Tu Nombre</span>\n" +"<span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Permitido el uso de formularios" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Ha ocurrido un error, el formulario no se ha enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Lista negra de este campo para formularios web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Lista negra en formularios web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centro" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Casilla de verificación" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Fecha" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Fecha y Hora" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Número Decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Mostrar en pantalla" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Editar mensaje" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Correo electrónico" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" +"Habilitar la característica de constructor del formulario para este modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo de datos de formulario personalizado" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Subir archivo" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de la acción del formulario. Ex: rm.lead podría ser ‘Correo " +"electrónico’ y project.issue podría ser ‘Crear algo’." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altura" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Oculto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Ocultar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etiqueta de acción del formulario" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Izquierda" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Texto Largo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadatos" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Múltiples Casillas de Verificación " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "No hay coincidencias!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ninguno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nada" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Número" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Opción 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Opción 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Opción 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Opcional" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Otra Información:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor, llene el formulario correctamente." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Botones de opción" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Correo del Destinatario" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirigir" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Requerido" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Derecha" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selección" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Mostrar mensaje" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique el campo que contendrá metadatos y datos de campos de " +"formularios personalizados." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Enviar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Aceptada" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Texto" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "¡Gracias!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "El formulario ha sido enviado correctamente." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Este mensaje se ha publicado en tu sitio web!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Arriba" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Usado en el Registro del Constructor de Formularios" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Le contestaremos en breve." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Llave del Formulario para el Sitio Web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formularios de página web" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "No puede duplicar un campo del modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "No puede eliminar un campo requerido por el modelo mismo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "sitio web" diff --git a/addons/website_form/i18n/es_PE.po b/addons/website_form/i18n/es_PE.po new file mode 100644 index 00000000..3ef59b30 --- /dev/null +++ b/addons/website_form/i18n/es_PE.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-06-15 15:03+0000\n" +"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio Web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/et.po b/addons/website_form/i18n/et.po new file mode 100644 index 00000000..c667cce5 --- /dev/null +++ b/addons/website_form/i18n/et.po @@ -0,0 +1,624 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Piia Paurson <piia@avalah.ee>, 2020 +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Marek Pontus, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# Algo Kärp <algokarp@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Triine Aavik <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Triine Aavik <triine@avalah.ee>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ei ole korrektne kuupäev" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' ei ole korrektne kuupäev-kellaaeg" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Lisatud failid : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefoninumber</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Teie ettevõte</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Keskel" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Märkekast" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Kuupäev" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Ekraan" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Muuda sõnumit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-post" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Viga" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Väljad" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Faili üleslaadimine" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Kõrgus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Varjatud" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horisontaalne" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Vasak" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metaandmed" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Mudelid" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Pole" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "MItte midagi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Number" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Valikuline" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Ringidega valikud" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Suuna ümber" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Nõutud" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Parem" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Valik" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Näita sõnumit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Esita" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Success" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Ülemine" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tüüp" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikaalne" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Me võtame teiega peatselt ühendust." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Veebileht" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "veebileht" diff --git a/addons/website_form/i18n/eu.po b/addons/website_form/i18n/eu.po new file mode 100644 index 00000000..678d8437 --- /dev/null +++ b/addons/website_form/i18n/eu.po @@ -0,0 +1,628 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Gorka Toledo <gorka.toledo@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Iñaki Ibarrola <inakiibarrola@yahoo.es>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ez da data zuzena" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Fitxategi erantsiak: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefono zenbakia</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Gaia</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Zure izena</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Zure galdera</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Formularioetan erabiltzeko baimena " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Errore bat gertatu da, formularioa ez da bidali." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Erdigunea" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Zenbaki hamartarrak" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Erakutsi" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Eposta" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Akatsa" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Formulario pertsonalizatuen datuen eremua" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Eremuak" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Fitxategi igoera" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altuera" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ezkutatuta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontala " + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Ezkerra" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Testu luzea" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Ereduak" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Hainbat egiaztapen laukiak" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Hutsa" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Zenbakia " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Mesedez, bete formularioa behar bezala." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Irrati botoiak" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Beharrezkoa " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Eskuma" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Aukeraketa " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Bidali" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Idatzi zure testua edo arrastatu bloke bat hemen" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefonoa" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Textua" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Eskerrik asko!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formularioa zuzen bidali da." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Goialdean" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Mota" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Bertikala " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Webgune" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "webgunea" diff --git a/addons/website_form/i18n/fa.po b/addons/website_form/i18n/fa.po new file mode 100644 index 00000000..6ac007a0 --- /dev/null +++ b/addons/website_form/i18n/fa.po @@ -0,0 +1,619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# 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 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' تاریخ درستی نیست" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' یک تاریخ معتبر نیست" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>فایلهای پیوست شده : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "چک باکس" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "تاریخ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "تاریخ و زمان" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "عدد اعشاری" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "نمایش" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "ایمیل" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "خطا" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "فیلدها" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "آپلود فایل" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "ارتفاع" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "پنهان" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "شناسه" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "چپ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "متن بلند" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "متادیتا" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "مدل ها" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "هیچکدام" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "شماره" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "گزینه 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "گزینه 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "لازم" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "راست" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "انتخاب" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "ارسال" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "موفق" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "متن" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "سپاسگزاریم!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "نوع" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "آدرس Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "به زودی با شما تماس خواهیم گرفت." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "وبسایت" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "فرمهای وبسایت" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "وبسایت" diff --git a/addons/website_form/i18n/fi.po b/addons/website_form/i18n/fi.po new file mode 100644 index 00000000..3eefa5a4 --- /dev/null +++ b/addons/website_form/i18n/fi.po @@ -0,0 +1,631 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Teija Hölttä <teija.holtta@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# Mikko Salmela <salmemik@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2021 +# Miika Nissi <miika.nissi@tawasta.fi>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Miika Nissi <miika.nissi@tawasta.fi>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ei ole kelvollinen päivämäärä" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' on virheellinen päivämäärä" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr ", .s_website_form" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Liitetiedostot: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Viestisi on lähetetty <b>onnistuneesti</b></span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">Sähköposti</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Sähköposti</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Puhelinnumero</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Aihe</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Yritys</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Nimi</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Viesti</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Lisää uusi kenttä tämän jälkeen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Lisää uusi kenttä loppuu" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Sallittu käytettäväksi lomakkeilla" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Lomakkeen lähetyksessä tapahtui virhe eikä sitä pystytty lähettämään." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Lisää tämä kenttä verkkosivun lomakkeiden estolistalle" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Verkkosivun lomakkeiden estolistalla" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Painikkeen sijainti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Keskellä" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Valintaruutu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Räätälöity kenttä" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Päivämäärä" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Päivämäärä ja aika" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Desimaalinumero" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Näytä" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Muokkaa viestiä" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Sähköposti" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Salli lomakkeiden rakentaminen tälle mallille." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Virhe" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Kentät" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Tiedoston lähetys" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Korkeus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Piilotettu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Piilota" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Vaakataso" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "Esimerkkiteksti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "Syötteen tyyppi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Otsikon teksti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Otsikon sijainti" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Otsikkojen leveys" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Vasen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Pitkä teksti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Merkkaa teksti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Merkatut kentät" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metatiedot" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Mallit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Monivalinta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Ei vastaavaa tietuetta !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ei mitään" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Ei mitään" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Numero" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "Onnistuttaessa" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Vaihtoehto 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Vaihtoehto 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Vaihtoehto 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Vapaaehtoinen" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Muut tiedot:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Olemme yhteydessä niin pian kuin mahdollista." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Täytä lomakkeen vaaditut kentät." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radiopainike" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Vastaanottajan sähköposti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Uudelleenohjaus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Vaadittu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Oikea" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Valinta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Erottele useampi sähköpostiosoite pilkulla" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Näytä viesti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "Näytä reCaptcha-käytänteet" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Tallenna" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Onnistuminen" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Google reCaptcha on havainnut epäilyttävää toimintaa." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Puhelin" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Teksti" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Kiitos palautteestasi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Kiitos!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Lomake lähetettiin onnistuneesti." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Ylin" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tyyppi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Verkko-osoite" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Pystysuuntainen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Otamme sinuun yhteyttä mahdollisimman nopeasti." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Verkkosivu" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Verkkosivun lomakkeen avain" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Verkkosivun lomakkeet" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Et voi kahdentaa mallin kenttää." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "Et voi kahdentaa lomakkeen lähetyspainiketta." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Et voi poistaa kenttää jonka malli vaatii." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "Et voi poistaa lomakkeen lähetyspainiketta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "riviä" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "verkkosivusto" diff --git a/addons/website_form/i18n/fr.po b/addons/website_form/i18n/fr.po new file mode 100644 index 00000000..28e9d315 --- /dev/null +++ b/addons/website_form/i18n/fr.po @@ -0,0 +1,644 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Maxime Chambreuil <mchambreuil@ursainfosystems.com>, 2020 +# Fabien Pinckaers <fp@openerp.com>, 2020 +# Frédéric LIETART <stuff@tifred.fr>, 2020 +# Richard Mathot <rim@odoo.com>, 2020 +# Jean-Marc Dupont <jmd@6it.fr>, 2020 +# Fabri Yohann <psn@fabri.pw>, 2020 +# Clo <clo@odoo.com>, 2020 +# Stephane DAGUET <stephane@darbtech.net>, 2020 +# Lucas Deliege <lud@odoo.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Jonathan Castillo <jcs@odoo.com>, 2020 +# Olivier ANDRE <frsw194@gmail.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Sylvain GROS-DESORMEAUX <sylvain.grodes@gmail.com>, 2020 +# Olivier Dony <odo@odoo.com>, 2020 +# Priscilla (prs) Odoo <prs@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Sébastien BÜHL <buhlsebastien@gmail.com>, 2021 +# Alexandra Jubert <aju@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' n'est pas une date valide" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' n'est pas une date correcte" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr ", .s_website_form" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Fichiers attachés : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Numéro de téléphone</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Sujet</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Votre Société</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Votre Nom</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Ajouter un nouveau champ après celui-ci" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Ajouter un nouveau champ à la fin" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Autorisé à utiliser dans les formulaires" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Une erreur s'est produite, le formulaire n'a pas été envoyé." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Mettez sur liste noire ce champ pour les formulaires web." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Mis sur liste noire dans le formulaires web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Position du bouton" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centré" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Case à cocher" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Champ personnalisé" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Date" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Date et heure" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Nombre décimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Affichage" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Modifier le message" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Autoriser la fonction contructeur de formulaire pour ce modèle." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Erreur" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Champs pour les données du formulaire personnalisé" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Champs" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Envoi de fichier" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Libellé des actions du formulaire. Ex : crm.lead pourrait être \"Envoyez un " +"email\" et project.issue pourrait être \"Créez un incident\"." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Hauteur" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Masqué" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "Contenu aligné" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Nom de l'étiquette" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Position de l'étiquette" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etiquette pour un formulaire d'action" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Largeur des étiquettes" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Gauche" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Texte long" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Métadonnées" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modèles" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Cases à cocher multiples " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Pas de fichier correspondant!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Aucun" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Rien" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Numéro" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Option 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Option 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Option 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Optionnel" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Autres informations :" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Notre équipe vous renverra un message dès que possible." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Merci de remplir correctement le formulaire." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Bouton radio" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Email du Destinataire" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirection" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Requis" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Droit" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Sélection" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Séparez les adresses email par une virgule." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Montrer le message" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Spécifiez le champ qui contiendra des données métas et personnalisées du " +"formulaire." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Soumettre" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Succès" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Texte" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Merci!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Le formulaire a été envoyé avec succès." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Ce message a été publié sur votre Site Web!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Top" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Utilisé dans le registre de configurateur de formulaire" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Nous reviendrons vers vous rapidement" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Site web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Formulaire clé site web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formulaires de site Web" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Vous ne pouvez pas dupliquer un champ modèle." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" +"Vous ne pouvez pas supprimer un champ requis par le modèle en lui-même." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Site web" diff --git a/addons/website_form/i18n/gl.po b/addons/website_form/i18n/gl.po new file mode 100644 index 00000000..a64eb419 --- /dev/null +++ b/addons/website_form/i18n/gl.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 10:19+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/gu.po b/addons/website_form/i18n/gu.po new file mode 100644 index 00000000..3f2f7784 --- /dev/null +++ b/addons/website_form/i18n/gu.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "ભૂલ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/he.po b/addons/website_form/i18n/he.po new file mode 100644 index 00000000..2015fbf5 --- /dev/null +++ b/addons/website_form/i18n/he.po @@ -0,0 +1,616 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Fishfur A Banter <fishfurbanter@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# Martin Trigaux, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' אינו מידע תקין" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' אינו בתצורת תאריך וזמן תקינה" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>קבצים מצורפים : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "מותר לשימוש בטפסים" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "אירעה שגיאה, הטופס לא נשלח." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "הוסף שדה זה לרשימה השחורה בטפסי אתר אינטרנט" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "ברשימה השחורה בטפסי אתר אינטרנט" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "מרכז" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "תיבת סימון" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "תאריך" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "תאריך ושעה" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "מספר עשרוני" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "הצג" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "הצג שם" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "דוא\"ל" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "הפעל את התכונה לבניית טפסים עבור מודל זה." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "שגיאה" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "שדה לנתוני טפסים מותאמים אישית" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "שדות" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "העלאת קובץ" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"טופס תווית פעולה. דוגמה: crm.lead יכול להיות 'שלח דואר אלקטרוני' ו- " +"project.issue יכול להיות 'צור נושא'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "גובה" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "נסתר" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "תעודה מזהה" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "תווית לפעולת טופס" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "שמאל" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "טקסט ארוך" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "מטא דאטה" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "דגמים" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "תיבות סימון מרובות" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "אין רשומה תואמת !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "אף אחד" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "מספר" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "אפשרות 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "אפשרות 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "אפשרות 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "אופציונלי" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "מידע נוסף:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "אנא מלא את הטופס כראוי." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "כפתורי רדיו" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "דוא\"ל הנמען" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "הפנייה מחדש" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "נדרש" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "ימין" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "בחירה" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "ציין את השדה אשר יכיל נתוני מטא דאטה ונתוני שדות טופס מותאמים אישית." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "שלח" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "הצלחה" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "טקסט" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "תודה לך!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "הטופס נשלח בהצלחה." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "הודעה זו פורסמה באתר האינטרנט שלך!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "עליון" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "סוג" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "כתובת אתר אינטרנט" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "משמש ברישום FormBuilder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "נחזור אליך בהקדם." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "אתר אינטרנט" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "מפתח טופס אתר אינטרנט" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "טפסי אתר אינטרנט" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "אינך יכול לשכפל שדה מודל." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "אינך יכול להסיר שדה הנדרש על ידי המודל עצמו." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "אתר אינטרנט" diff --git a/addons/website_form/i18n/hi.po b/addons/website_form/i18n/hi.po new file mode 100644 index 00000000..020f8904 --- /dev/null +++ b/addons/website_form/i18n/hi.po @@ -0,0 +1,615 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "ईमेल" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "त्रुटि!" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/hr.po b/addons/website_form/i18n/hr.po new file mode 100644 index 00000000..519b05c3 --- /dev/null +++ b/addons/website_form/i18n/hr.po @@ -0,0 +1,624 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Ivica Dimjašević <ivica.dimjasevic@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Helena Viher <viherhelena@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Helena Viher <viherhelena@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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nije ispravan datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nije ispravan datum i vrijeme" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Priložene datoteke : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Dozvoljeno koristiti na formama" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Došlo je do pogreške, obrazac nije poslan." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Zabrani ovo polje za sve webforme" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Zabranjeno u webformama" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Potvrdni okvir" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum & Vrijeme" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Decimalni broj" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Prikaži" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-pošta" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Omogući izradu formi za ovaj model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Polje za prilagođene podatke na formi" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polja" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Slanje datoteke" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Natpis akcije forme, npr: crm.lead može biti 'Pošalji mail' ili " +"project.issue može biti 'Kreiraj zadatak'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Visina" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skriveno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontalno" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Natpis za akciju forme" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Lijevo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Dugi tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metapodaci" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nema odgovarajućeg zapisa ! " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ništa" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Broj" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Molimo ispunite formu ispravno." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Preusmjeri" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obavezno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Desno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Odabir" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Potvrdi" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Uspjeh" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Obrazac uspješno poslan." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Vrsta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikalno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Brzo ćemo vam se javiti." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "web stranica" diff --git a/addons/website_form/i18n/hu.po b/addons/website_form/i18n/hu.po new file mode 100644 index 00000000..41df108a --- /dev/null +++ b/addons/website_form/i18n/hu.po @@ -0,0 +1,627 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# 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 +# Istvan <leki69@gmail.com>, 2021 +# A . <tiboreu@protonmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: A . <tiboreu@protonmail.com>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nem érvényes dátum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' em érvényes dátum időpont" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Email cím</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefonszám</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Tárgy</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Szervezet</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Az ön neve</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Üzenet</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Közép" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Jelölő négyzet" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Dátum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Dátum & Idő" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Decimális szám" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Megjelenítés" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Hiba" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Mezők" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Fájl feltöltése" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Magasság" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Rejtett" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Vízszintes" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "Azonosító" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Bal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Hosszú szöveg" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modellek" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Többszörös jelölődoboz" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nem egyező rekord!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nincs" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Szám" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Választható" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Rádió gombok" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Átirányít" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Kötelező" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Jobb" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Kiválasztás" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Beküldés" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Siker" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Szöveg" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Köszönöm!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Felső" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Típus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "Webcím" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Webcím" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Függőleges" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Námsokára felvesszük Önnel a kapcsolatot." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Honlap" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "weboldal" diff --git a/addons/website_form/i18n/id.po b/addons/website_form/i18n/id.po new file mode 100644 index 00000000..67bebd9c --- /dev/null +++ b/addons/website_form/i18n/id.po @@ -0,0 +1,621 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Edy Kend <edy@azmall.co.id>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Muhammad Syarif <mhdsyarif.ms@gmail.com>, 2020 +# Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' bukan tanggal yang benar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' bukan tipe datetime yang benar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Lampiran file : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Diperbolehkan digunakan dalam bentuk" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Telah terjadi kesalahan, formulir belum terkirim." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Blok bidang ini untuk formulir web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Daftar yang tidak termasuk di formulir web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Kotak centang" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Tanggal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Tampilan" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Aktifkan fitur form builder untuk model ini." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Eror!" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Kolom" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Unggah Berkas" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Tinggi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Tersembunyi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Kiri" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Model" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Tidak Ada" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nomor" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Silahkan isi formulir dengan benar." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Tombol Radio" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Wajib" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Kanan" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Seleksi" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Menyerahkan" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Sukses" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Teks" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formulir telah berhasil dikirim." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipe" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Kami akan segera menghubungi Anda kembali." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Situs Web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Website" diff --git a/addons/website_form/i18n/is.po b/addons/website_form/i18n/is.po new file mode 100644 index 00000000..8831d444 --- /dev/null +++ b/addons/website_form/i18n/is.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "Villa!" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Reitir" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Models" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Vefsíða" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/it.po b/addons/website_form/i18n/it.po new file mode 100644 index 00000000..255a3d24 --- /dev/null +++ b/addons/website_form/i18n/it.po @@ -0,0 +1,634 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Francesco Garganese <francesco.garganese@aeromnia.aero>, 2020 +# Martin Trigaux, 2020 +# Lorenzo Battistini <lb@takobi.online>, 2020 +# Paolo Valier, 2020 +# Silvia Durisotti, 2020 +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Stefano Consolaro <stefano.consolaro@mymage.it>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "\"%s\" non è un campo data corretto" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "\"%s\" non è un campo data/ora corretto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr ", .s_website_form" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>File allegat i: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Messaggio inviato <b>con successo</b></span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">E-mail a</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-mail</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Numero di telefono</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Oggetto</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Azienda</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Nome</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Domanda</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Aggiungi un nuovo campo dopo questo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Aggiungi un nuovo campo alla fine" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Utilizzo consentito nei moduli" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Si è verificato un errore, il modulo non è stato inviato." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Mette il campo in lista nera per i moduli web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "In lista nera nei moduli web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Posizione pulsante" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Al centro" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Casella di selezione" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Campo personalizzato" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Data e ora" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Numero decimale" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Visualizzazione" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Modifica messaggio" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Abilita la funzionalità di generazione del modulo per il modello." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Errore" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo per dati modulo personalizzati" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Caricamento file" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etichetta per azione modulo. Es: crm.lead potrebbe essere \"Invia una " +"e-mail\" e project.issue potrebbe essere \"Segnala un problema\"." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altezza" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Nascosto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Nascondi" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Orizzontale" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "Allineato all'inserimento" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "Testo di suggerimento" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "Tipo inserimento" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Nome etichetta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Posizione etichetta" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etichetta per azione modulo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Larghezza etichette" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "A sinistra" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Testo lungo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Testo contrassegno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Campi contrassegnati" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadati" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelli" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Caselle a selezione multipla" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nessun record corrisponde" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nessuno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nulla" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Numero" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "In caso di successo" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Opzione 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Opzione 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Opzione 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Facoltativi" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Altre informazioni:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Compilare correttamente il modulo." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Pulsanti a selezione singola" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "E-mail destinatario" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Reindirizza" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obbligatori" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "A destra" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selezione" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Mostra messaggio" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Specifica il campo che conterrà metadati e dati dei campi personalizzati del" +" modulo." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Invia" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Successo" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Il reCAPTCHA Google ha rilevato un'attività sospetta." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefono" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Testo" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Grazie!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Il modulo è stato inviato con successo." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "Il modello specificato per il modulo non esiste" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Il messaggio è stato pubblicato nel sito web." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "In alto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipologia" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Verticale" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Verrai ricontattato al più presto." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Sito web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Chiave modulo sito web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Moduli sito web" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Impossibile duplicare un campo del modello." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "Impossibile duplicare il pulsante di invio del modulo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Impossibile rimuovere un campo richiesto dal modello stesso." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "Impossibile rimuovere il pulsante di invio del modulo." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "righe" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "sito web" diff --git a/addons/website_form/i18n/ja.po b/addons/website_form/i18n/ja.po new file mode 100644 index 00000000..13c5836c --- /dev/null +++ b/addons/website_form/i18n/ja.po @@ -0,0 +1,616 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# 高木正勝 <masakatsu.takagi@pro-spire.co.jp>, 2020 +# Noma Yuki, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' は正しいフォーマット(date型)ではありません" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' は正しいフォーマット(datetime)ではありません" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>添付されたファイル : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "フォームでの使用が許可されている" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "エラーが発生したため、フォームは送信されませんでした。" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "ウエブフォーム用にこのフィールドをブラックリストに登録する" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "ウェブフォームでブラックリストに載せます" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "中央" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "日付" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "表示" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Eメール" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "このモデルのフォームビルダ機能を有効にします。" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "エラー" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "カスタムフォームデータのフィールド" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "項目" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "ファイルアップロード" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"フォームアクションラベル。 例:crm.leadは「電子メールを送る」ことができ、project.issueは「問題を作成する」ことができます。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "高さ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "非表示" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "水平" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "フォームアクションのラベル" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "左側" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "メタデータ" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "モデル" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "該当レコードがありません。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "なし" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "番号" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "フォームに正しく記入してください。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "ラジオボタン" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "必須" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "右側" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "選択" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "メタフィールドとカスタムフォームフィールドのデータを含むフィールドを指定します。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "送信" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "成功" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "テキスト" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "ありがとう!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "フォームが正常に送信されました。" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "タイプ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "垂直" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "内容を確認の上返信差し上げます。今しばらくお待ち願います。" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "ウェブサイト" diff --git a/addons/website_form/i18n/ka.po b/addons/website_form/i18n/ka.po new file mode 100644 index 00000000..ecdfb2e9 --- /dev/null +++ b/addons/website_form/i18n/ka.po @@ -0,0 +1,618 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' არ არის კორექტული თარიღი" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' არ არის კორექტული თარიღი/საათი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "მოსანიშნი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "თარიღ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "თარიღი და დრო" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "ათობითი რიცხვი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "ჩვენება" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "ელ.ფოსტა" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "შეცდომა" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "ველები" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "ფაილის ატვირთვა" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "დამალული" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "გრძელი ტექსი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "მოდელები" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "მრავალი მოსანიშნი" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "ჩანაწერი არ მოიძებნა !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "არცერთი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "ციფრი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "რადიო ღილაკი" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "საჭიროა" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "მონიშვნა" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "ტექსტი" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "ტიპი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL მისამართი" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "ვებსაიტი" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "ვებ-გვერდის ფორმა" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "ვებსაიტი" diff --git a/addons/website_form/i18n/kab.po b/addons/website_form/i18n/kab.po new file mode 100644 index 00000000..7d48cfa2 --- /dev/null +++ b/addons/website_form/i18n/kab.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-09-08 10:19+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Urtan" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Tineɣrufin" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Asmel Web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/km.po b/addons/website_form/i18n/km.po new file mode 100644 index 00000000..6adfeadf --- /dev/null +++ b/addons/website_form/i18n/km.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2018 +# Chan Nath <channath@gmail.com>, 2018 +# AN Souphorn <ansouphorn@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: AN Souphorn <ansouphorn@gmail.com>, 2018\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_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' គឺជាកាលបរិច្ឆេតមិនត្រឹមត្រូវ" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "កំហុស" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "វែបសាយ" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/ko.po b/addons/website_form/i18n/ko.po new file mode 100644 index 00000000..1deec059 --- /dev/null +++ b/addons/website_form/i18n/ko.po @@ -0,0 +1,619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Linkup <link-up@naver.com>, 2020 +# Seongseok Shin <shinss61@hotmail.com>, 2020 +# 방상우 <mrroom@gmail.com>, 2020 +# JH CHOI <hwangtog@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' 은(는) 올바른 날짜가 아닙니다" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s'은(는) 올바른 일시가 아닙니다" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>첨부 파일 : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "양식에서 사용 가능" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "오류가 발생하여 양식이 전송되지 않았습니다." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "웹 양식에 대해 이 필드를 블랙리스트에 올림" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "웹 양식에 블랙리스트로 올림" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "중앙" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "체크박스" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "날짜" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "날짜 & 시간" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "십진수" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "화면" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "메시지 편집하기" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "이메일" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "이 모델에 대해 양식 작성기 기능을 사용하십시오." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "오류" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "사용자 정의 양식 데이터 필드" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "필드" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "파일 업로드" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "양식 작업 꼬리표. 예 : crm.lead는 '이메일 보내기'이고 project.issue는 '문제 만들기'일 수 있습니다." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "높이" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "숨김" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "수평" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "양식 작업에 대한 꼬리표" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "왼쪽" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "긴 문자" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "메타데이타" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "모델" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "다중 확인란" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "일치하는 레코드가 없습니다!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "없음" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "아무 것도 없음" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "번호" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "선택 사항 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "선택 사항 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "선택 사항 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "선택 사항" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "기타 정보 :" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "양식을 정확하게 작성하십시오." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "단일 선택 버튼" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "이메일 수신인" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "반송" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "요청함" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "오른쪽" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "선택" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "메시지 표시" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "메타 및 사용자 정의 양식 필드 데이터를 포함 할 필드를 지정하십시오." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "제출" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "성공" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "문자" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "감사합니다!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "양식이 성공적으로 전송되었습니다." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "이 메시지가 귀하의 웹 사이트에 게시되었습니다!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "상단" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "유형" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "FormBuilder 레지스트리에서 사용" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "수직선" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "빠른시간내에 연락 드리겠습니다." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "웹사이트" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "웹 사이트 양식 키" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "웹사이트 양식" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "모델 필드를 복제할 수 없습니다." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "모델 자체에 필요한 필드는 제거할 수 없습니다." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "웹 사이트" diff --git a/addons/website_form/i18n/lb.po b/addons/website_form/i18n/lb.po new file mode 100644 index 00000000..85c10f97 --- /dev/null +++ b/addons/website_form/i18n/lb.po @@ -0,0 +1,390 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+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_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "&times;" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:12 +#, python-format +msgid "×" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:238 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:233 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:232 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-globe\" title=\"Values set here are website-" +"specific.\" groups=\"website.group_multi_website\"/>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Add a custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Add an existing field" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Change Form Parameters" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:21 +#, python-format +msgid "Close" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:44 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "Email To" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:216 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Number" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:180 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:36 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Phone Number" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:25 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Required" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:22 +#, python-format +msgid "Save" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Selection" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Send" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:60 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Subject" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.snippet_options +msgid "Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thanks!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:182 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:52 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Your Company" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:28 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Your Name" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:68 +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#, python-format +msgid "Your Question" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Your message has been sent successfully." +msgstr "" diff --git a/addons/website_form/i18n/lt.po b/addons/website_form/i18n/lt.po new file mode 100644 index 00000000..aca9082b --- /dev/null +++ b/addons/website_form/i18n/lt.po @@ -0,0 +1,627 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Aleksandr Jadov <a.jadov@tata.lt>, 2021 +# Martin Trigaux, 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 +# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021 +# Jonas Zinkevicius <jozi@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nėra teisinga data" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nėra teisinga data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Prisegti failai : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Leidžiama naudotis formose" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Įvyko klaida, išsiųsti formos nepavyko." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Įtraukti į svetainės formų juodąjį sąrašą" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Įtraukta į svetainės formų juodąjį sąrašą" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centravimas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Žymimas laukas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Data & Laikas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Dešimtainis numeris" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Vaizdavimas" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "El. paštas" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Aktyvuokite formų kūrimo funkciją šiam modeliui." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Klaida" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Laukas papildomiems formos duomenims" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Laukai" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Failo įkėlimas" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formos veiksmo etiketė. Pvz. crm.lead galėtų būti 'Siųsti el. laišką' ir " +"project.issues galėtų būti 'Sukurti naują problemą'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Aukštis" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Paslėpta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontalus" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etiketė formos veiksmui" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Kairė" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Ilgas tekstas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metaduomenys" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeliai" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Įvairūs žymėjimo laukai" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nėra susijusio objekto !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nieko" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Įrašo numeris" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Prašome užpildyti formą teisingai." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Apvalūs mygtukai" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Nukreipti" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Privalomas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Dešinė" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Pasirinkimas" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Nurodykite lauką, kuris turės metaduomenis ir pasirinktinių formos laukų " +"duomenis." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Pateikti" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Pavyko" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekstas" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Ačiū!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Forma buvo sėkmingai išsiųsta." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Viršus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikalus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Greitai susisieksime su jumis." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Svetainė" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "svetainė" diff --git a/addons/website_form/i18n/lv.po b/addons/website_form/i18n/lv.po new file mode 100644 index 00000000..494b1109 --- /dev/null +++ b/addons/website_form/i18n/lv.po @@ -0,0 +1,606 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/mk.po b/addons/website_form/i18n/mk.po new file mode 100644 index 00000000..bbac2cf1 --- /dev/null +++ b/addons/website_form/i18n/mk.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-07-12 11:13+0000\n" +"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/" +"mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:209 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:204 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:221 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:49 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Полиња" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:50 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Модели" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Ве молиме пополнете го формуларот коректно." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Вебсајт" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/mn.po b/addons/website_form/i18n/mn.po new file mode 100644 index 00000000..c0d507bb --- /dev/null +++ b/addons/website_form/i18n/mn.po @@ -0,0 +1,619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Minj P <pminj322@gmail.com>, 2020 +# Батболд <batbold.ts@gmail.com>, 2020 +# baaska sh <sh.baaskash@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Otgonbayar.A <gobi.mn@gmail.com>, 2020 +# Khishigbat Ganbold <khishigbat@asterisk-tech.mn>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Khishigbat Ganbold <khishigbat@asterisk-tech.mn>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' нь зөв биш огноо" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' нь зөв биш огноо, цаг" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Хавсаргасан файлууд : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Маягтууд дээр ашиглах боломжтой" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Алдаа гарсан, маягтыг илгээгээгүй." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Энэ талбарыг вэб маягтууд дээр хар жагсаалтад оруулах" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Вэб маягтууд дээр хар жагсаалтад орсон" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Төвд" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Чекбокс" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Огноо" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Огноо & Цаг" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Аравтын тоо" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Дэлгэц" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Имэйл" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Энэ загвар дээр маягт бүтээгчийг зөвшөөрөх." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Алдаа" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Захиалгат маягтын өгөгдлийн талбар" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Талбарууд" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Файл ачааллах" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Маягтын үйлдлийн шошго. Ж: crm.lead нь 'Имэйл илгээх', project.issue нь " +"'Асуудал үүсгэх' байж болно." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Өндөр" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Нуугдсан" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Хэвтээ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Маягтын үйлдлийн шошго" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Зүүн" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Урт текст" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Тэмдэг өгөгдөл" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Модел" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Олон чекбоксууд" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Таарах бичлэг алга !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Байхгүй" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Дугаар" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Заавал биш" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Маягтыг зөв бөглөнө үү" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Радио Товчнууд" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Шилжүүлэх" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Шаардлагатай" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Баруун" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Сонголт" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Тэмдэг болон захиалгат маягтын талбаруудын өгөгдлийг хадгалах талбарыг " +"тодорхойлно уу." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Илгээх" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Амжилттай" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Текст" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Маягт амжилттай илгээгдлээ." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Дээд" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Төрөл" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Босоо" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Бид тантай удахгүй эргэн холбогдох болно." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Вэбсайт" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Вэбсайт Форм" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "вэбсайт" diff --git a/addons/website_form/i18n/nb.po b/addons/website_form/i18n/nb.po new file mode 100644 index 00000000..82a724ec --- /dev/null +++ b/addons/website_form/i18n/nb.po @@ -0,0 +1,614 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# Jorunn D. Newth, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Jorunn D. Newth, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' er ikke en korrekt dato" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' har ikke korrekt datetime-format" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Vedlagte filer:</p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Lov å bruke i skjema" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "En feil oppsto, innholdet i skjemaet er ikke sendt." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Svartelist dette feltet for webskjemaer" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Svartelistet i webskjemaer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Midtstill" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Avmerkingsboks" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Dato" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Dato og tid" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Desimaltall" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Visning" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-post" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Slå på skjemabyggerfunksjonen for denne modellen." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Feil" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Felt for tilpassede skjemadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Felter" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Filopplasting" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Navn på handling som utløses av skjemaet. For eksempel kan crm.lead være " +"'Send epost' og project.issue kan være 'Opprett sak'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Høyde" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skjult" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horisontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Navn på skjemahandling" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Venstre" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Lang tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Flere avmerkingsbokser" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Ingen relevante oppføringer!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ingen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Vennligst fyll ut skjemaet korrekt." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radioknapper" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Omdiriger" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Påkrevd" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Høyre" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Valg" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "Spesifiser feltet som vil inneholde metadata og tilpassede feltdata." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Send inn" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Suksess" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Innholdet i skjemaet er sendt." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Topp" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "URL" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertikal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Vi tar snart kontakt med deg." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Nettsted" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Nettsted-skjemaer" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "nettsted" diff --git a/addons/website_form/i18n/nl.po b/addons/website_form/i18n/nl.po new file mode 100644 index 00000000..137d54e4 --- /dev/null +++ b/addons/website_form/i18n/nl.po @@ -0,0 +1,625 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Odoo Experts Consultants <consultants@odooexperts.nl>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Yenthe Van Ginneken <yenthespam@gmail.com>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' is geen correcte datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' is geen geldige datum/tijd" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Bijgevoegde bestanden : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Uw bericht is <b>succesvol </b> verzonden.</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">E-mail naar</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-mail</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefoonnummer</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Onderwerp</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Uw bedrijf</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Uw naam</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Uw vraag</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Voeg hierna een nieuw veld toe" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Voeg aan het einde een nieuw veld toe" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Toegestaan om te gebruiken in formulieren" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Er is een fout opgetreden, het formulier is nog niet verzonden." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Blacklist dit veld voor website formulieren" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Blacklisted in website formulieren" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Positie knop" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centreer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Checkbox" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Aangepast veld" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum & Tijd" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Decimaal cijfer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Tonen" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Wijzig bericht" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Schakel de formulier bouwer in voor dit model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Fout" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Veld voor aangepaste formulierdata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Velden" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Bestand uploaden" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formulier actie label. Bv: crm.lead kan 'Verzend een e-mail' zijn en " +"project.issue kan 'Maak een Issue' zijn." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Hoogte" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Verborgen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Verberg" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontaal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "In de tussentijd nodigen wij je uit om onze" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "Input uitgelijnd" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "Input plaatshouder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "Input type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Naam label" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Label positie" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Label voor formulier actie" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Breedte labels" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Links" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Lange tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Markeer tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Gemarkeerde velden" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modellen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Meerdere selectievakjes" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Geen overeenkomende records!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Geen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Niets" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "Bij succes" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Optie 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Optie 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Optie 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Optioneel" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Overige informatie:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Ons team zal je zo snel mogelijk een bericht sturen." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Vul het formulier correct in a.u.b." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radioknoppen" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "E-mail ontvanger" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Doorverwijzen" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Verplicht" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Rechts" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selectie" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Splits e-mailadressen met een komma." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Toon bericht" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "Toon reCaptcha beleid" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Specifieer het veld dat de metadata en gepersonaliseerde formulier veld data" +" bevat." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Verstuur" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Succes" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Verdachte activiteit gedetecteerd door Google reCaptcha" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefoon" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Bedankt voor uw feedback" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Bedankt!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Het formulier is succesvol verzonden." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "Het opgegeven model van het formulier bestaat niet." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Dit bericht is geplaatst op uw website!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Top" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Soort" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Gebruikt in register van FormBuilder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Verticaal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Wij nemen zo spoedig mogelijk contact met u op." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Website" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Website formulier sleutel" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Website formulieren" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "U kan een modelveld niet dupliceren." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "U kan geen veld verwijderen dat door het model zelf vereist is." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "rijen" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "website" diff --git a/addons/website_form/i18n/pl.po b/addons/website_form/i18n/pl.po new file mode 100644 index 00000000..17cce757 --- /dev/null +++ b/addons/website_form/i18n/pl.po @@ -0,0 +1,630 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Michał <michal.gorecki@esnc.pl>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maja Stawicka <mjstwck@wp.pl>, 2020 +# Wiktor Kaźmierczak <wik92tor@wp.pl>, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nie jest poprawną datą" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nie jest poprawną datą i czasem" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Załączone pliki : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Numer telefonu</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Twoja firma</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Pozwolono, aby korzystać w formach" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Wystąpił błąd, forma nie została wysłana" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "czarna lista tego pola dla forum strony" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "czarna lista w formie strony" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centrum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Checkbox" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Data & czas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Liczba miejsc po przecinku" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Wyświetl" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Włącz funkcję tworzenia formularzy dla tego modelu." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Błąd" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Pole dla niestandardowych danych formularza" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Pola" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Wyślij plik" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Utwórz etykietę akcji. Ex: crm.lead może brzmieć \"Wyślij wiadomość " +"e-mail\", a projekt.issue może brzmieć \"Utwórz zagadnienie\"." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Wysokość" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ukryte" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Poziomy" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etykieta dla akcji formularza" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Lewy" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Długi tekst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modele" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Wiele pól wyboru" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Brak dopasowanych rekordów !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Brak" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Numer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Proszę poprawnie wypełnić luki." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Przyciski radiowe" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Wymagane" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Prawo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Wybór" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Określ pole, które będzie zawierało meta i niestandardowe pola danych " +"formularzy." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Wyślij" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Powodzenie" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Tekst" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formularz został wysłany." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Typ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Pionowy" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Odpowiemy ci wkrótce." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Strona WWW" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Formularze WWW" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "strona internetowa" diff --git a/addons/website_form/i18n/pt.po b/addons/website_form/i18n/pt.po new file mode 100644 index 00000000..0042cf86 --- /dev/null +++ b/addons/website_form/i18n/pt.po @@ -0,0 +1,620 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2020 +# Pedro Castro Silva <pedrocs@exo.pt>, 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 +# Vitor Fernandes <vmlf01@gmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Manuela Silva <manuelarodsilva@gmail.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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' não é uma data correta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' não é uma Data/Hora correta" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Ficheiros anexados : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Utilização permitida em formulários" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Ocorreu um erro, o formulário não foi enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Banir este campo para formulários web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Banido em formulários web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Caixa de seleção" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Número Decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Mostrar" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Ativar a funcionalidade 'criador de formulário' para este modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Erro" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo para informação personalizada do formulário" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Envio de Ficheiro" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de ação do formulário. Ex. crm.lead poderá ser 'Enviar um e-mail' e" +" project.issue poderá ser 'Criar uma questão'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altura" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ocultado" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Etiqueta para ação de formulário" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Esquerda" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadados" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nenhum(a)" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Número" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor preencha o formulário corretamente." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obrigatório" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Direita" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Seleção" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "Especifique o campo que irá conter metadados e campos personalizados." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Submeter" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Sucesso" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Texto" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "O formulário foi enviado com sucesso." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Nós entraremos em contacto consigo brevemente." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Website" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Website" diff --git a/addons/website_form/i18n/pt_BR.po b/addons/website_form/i18n/pt_BR.po new file mode 100644 index 00000000..de27b0c9 --- /dev/null +++ b/addons/website_form/i18n/pt_BR.po @@ -0,0 +1,636 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Marcel Savegnago <marcel.savegnago@gmail.com>, 2020 +# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Fernanda Marques <fem@odoo.com>, 2020 +# Keli Brugalli <kbr@odoo.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' não é uma data correta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' não é uma data correta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr ", .s_website_form" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Arquivos anexados : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Sua mensagem foi enviada <b>com sucesso</b></span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">E-mail para</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-mail</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Número de Telefone</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Assunto</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Sua Empresa</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Seu Nome</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Sua Pergunta</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Adicione um novo campo após este" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Adicione um novo campo ao final" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Permissão para usar formulários" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Ocorreu um erro, o formulário não foi enviado." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Colocar este campo em lista negra para formulários web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Em lista negra nos formulários web" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Posição do Botão" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centro" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Checkbox" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Campo personalizado" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Data" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Data & Hora" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Número Decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Mostrar" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Editar Mensagem" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-mail" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Ativar o recurso de construtor de formulário para este modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Erro" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Campo de formulário personalizado de dados" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Campos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Upload de arquivo" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Etiqueta de ação de formulário. Ex: crm.lead poderia ser \"Enviar um e-mail'" +" e project.issue poderia ser 'Criar um incidente'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Altura" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Oculto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "Ocultar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Horizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "Entretanto, convidamo-lo a visitar o nosso" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "Input Aligned" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "Input Placeholder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "Input Type" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Rótulo de Nome" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Rótulo de Posição" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Rótulo para ação de formulário" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "Rótulo de Largura" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Esquerda" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Texto Longo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Marcar Texto" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Campos Marcados" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadados" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modelos" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Múltiplas Checkboxes" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nenhum registro coincidente !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Nenhum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nada" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Número" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "No Sucesso" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Opção 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Opção 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Opção 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Opcional" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Outra Informação:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Nossa equipe enviará uma mensagem de volta assim que possível." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Por favor, preencha o formulário corretamente." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Botões Radio" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Destinatário de E-mail" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirecionar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Necessário" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Direita" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Seleção" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Separe os endereços de e-mail com uma vírgula." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Exibir Mensagem" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "Exibir Política de reCaptcha" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Especifique o campo que irá conter metadados e campos personalizados de " +"datas." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Enviar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Sucesso" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Atividade suspeita detectada pelo Google reCaptcha." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefone" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Texto" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Obrigado pelo seu Feedback" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Obrigado!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "O formulário foi enviado com sucesso." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "O modelo de formulário especificado não existe" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Esta mensagem foi postada em seu site!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Topo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tipo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Usado no Registro FormBuilder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Nós entraremos em contato com você em breve." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Website" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Chave do Formulário do Site" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Site Formulário" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Você não pode duplicar um campo de modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "Você não pode duplicar o botão de envio do formulário." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Você não pode remover um campo que é obrigatório pelo próprio modelo." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "Você não pode remover o botão de envio do formulário" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "linhas" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "site" diff --git a/addons/website_form/i18n/ro.po b/addons/website_form/i18n/ro.po new file mode 100644 index 00000000..36cea26e --- /dev/null +++ b/addons/website_form/i18n/ro.po @@ -0,0 +1,623 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Dorin Hongu <dhongu@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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "\"%s' nu este o dată corectă" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nu este o dată cu oră corectă" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>File atașate : </p> " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">E-mail către</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-mail</span>\n" +"<span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Număr de telefon</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Subiect</span>\n" +"<span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Compania Ta</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Numele dumneavoastră</span>\n" +"<span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Întrebarea ta</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Adaugă un nou câmp după acesta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Adaugă un nou câmp la sfârșit" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Permis pentru utilizare în formulare" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "Poziția Butonului" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Centru" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Checkbox" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "Câmp personalizat" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Dată" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Număr decimal" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Afișare" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Editare Mesaj" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Activați funcția constructor de formulare pentru acest model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Eroare" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Câmp pentru date de formular personalizate" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Câmpuri" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Încarcăre Fișier" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Formular eticheta de acțiune. Ex: crm.lead ar putea fi „Trimiteți un e-mail”" +" și project.issue ar putea fi „Creează o problemă”." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Înălțime" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ascuns" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Orizontal" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "Numele etichetei" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "Poziția etichetei" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Stânga" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Text lung" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "Marchează Textul" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "Câmpuri marcate" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modele" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Nicio înregistrare potrivită!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Fără" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nimic" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Număr" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Facultativ" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Altă informație:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "Echipa noastră vă va contacta cât mai curând posibil." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Vă rugăm să completați formularul corect." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Butoane Radio" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "E-mail destinatar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Redirecționare" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Necesar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Dreapta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Selecție" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "Separă adresa de e-mail cu o virgulă." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Afișare Mesaj" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Specificați câmpul care va conține metadate și câmpuri de formular " +"personalizate." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Trimite" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Succes" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "Activitate suspectă detectată de Google reCaptcha." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "Telefon" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "Mulțumim pentru feedback-ul dvs" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Mulțumesc!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formularul a fost trimis cu succes." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "Modelul specificat formularului nu există" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Acest mesaj a fost postat pe site-ul dvs. web!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Jus" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tip" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Folosit în registrul FormBuilder" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Vom reveni în curând." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Pagină web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "rânduri" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "pagină web" diff --git a/addons/website_form/i18n/ru.po b/addons/website_form/i18n/ru.po new file mode 100644 index 00000000..47bc23d7 --- /dev/null +++ b/addons/website_form/i18n/ru.po @@ -0,0 +1,624 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Максим Дронь <dronmax@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Collex100, 2020 +# Ivan Yelizariev <yelizariev@itpp.dev>, 2020 +# Алексей <noosvet@gmail.com>, 2020 +# Amaro Vita <vita.amaro@gmail.com>, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Gennady Marchenko <gennadym@gmail.com>, 2020 +# Viktor Pogrebniak <vp@aifil.ru>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Viktor Pogrebniak <vp@aifil.ru>, 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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' некорректная дата" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' некорректные дата и время" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Присоединенные файлы : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Разрешено использовать в формах" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Произошла ошибка, форма не была отправлена." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Черный список этого поля для веб-форм" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Черный в веб-формах" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Центр" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Чекбокс" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Дата" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Дата и время" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Десятичное число" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Показать" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Эл. адрес" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Включить функцию редактора форм для этой модели." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Ошибка" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Поле для пользовательской формы данных" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Поля" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Загрузка файла" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Метка формы действия. Напр.: crm.lead будет «Отправить email», project.issue" +" будет «Создать заявку»" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Высота" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Скрытый" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Горизонтально" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "Идентификатор" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Метка для форм действия" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Левый" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Длинный текст" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Метаданные" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Модели" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Несколько чекбоксов" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Нет соответствующих записей!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ничего" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Номер" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Просьба заполнить форму правильно." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Переключатели \"Radio Buttons\"" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Перенаправление" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Требуемое" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Справа" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Выбор" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Укажите поле, которое будет содержать мета и настраиваемые формы поля " +"данных." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Подтвердить" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Удача" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Текст" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Форма успешно отправлена." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "сверху" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Тип" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL ссылки" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Вертикально" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Мы скоро вернемся к вам." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Формы для веб-сайта" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "веб-сайт" diff --git a/addons/website_form/i18n/si.po b/addons/website_form/i18n/si.po new file mode 100644 index 00000000..147dc09b --- /dev/null +++ b/addons/website_form/i18n/si.po @@ -0,0 +1,606 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/sk.po b/addons/website_form/i18n/sk.po new file mode 100644 index 00000000..5692fecf --- /dev/null +++ b/addons/website_form/i18n/sk.po @@ -0,0 +1,626 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Filip Brenčič <brencicf5@gmail.com>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# Damian Brencic <brencicdamian12313@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Damian Brencic <brencicdamian12313@gmail.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' nie je správny dátum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' nie je správny dátum/čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Priložené súbory : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Tvoje meno</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Povolené používať vo formulároch" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Vyskytla sa chyba, formulár nebol odoslaný." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Dajte toto pole na čiernu listinu pre webové formuláre" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Na čiernej listine webových formulárov" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Stred" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Zaškrtávacie políčko" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Dátum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Dátum & čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Desatinné číslo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Zobraziť" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Upraviť správu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Povoliť funkciu tvorby formulárov pre tento model." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Chyba" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Pole pre vlastné údaje formuláru" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polia" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Nahratie súboru" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Štítok akcie formulára. Príklad: crm.lead môže byť 'Poslať email' a " +"project.issue môže byť 'Vytvoriť problém'." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Výška" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skryté" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Vodorovne" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Štítok pre akciu formulára" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Vľavo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Dlhý text" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadáta" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modely" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Viaceré zaškrtávacie políčka" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Žiadny zhodujúci sa záznam !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Žiadne" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Nič" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Číslo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Voliteľné" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Prosím vyplňte formulár správne." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Rádio tlačidlá" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Presmerovať" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Povinný" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Vpravo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Výber" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Predložiť" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Úspech" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Ďakujem!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Formulár bol úspešne odoslaný." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Top" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Typ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Zvisle" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Čoskoro sa vám ozveme naspäť." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Webstránka" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "webstránka" diff --git a/addons/website_form/i18n/sl.po b/addons/website_form/i18n/sl.po new file mode 100644 index 00000000..d48fdced --- /dev/null +++ b/addons/website_form/i18n/sl.po @@ -0,0 +1,620 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# Vida Potočnik <vida.potocnik@mentis.si>, 2021 +# Dejan Sraka <dejan.sraka@picolabs.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' ni pravilen datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' ni pravilen čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Potrditveno polje" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum & Čas" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Decimalno število" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Prikaz" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-pošta" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Napaka" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polja" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Nalaganje datoteke" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Višina" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Skrito" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Levo" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Ni ujemajočih se zapisov!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Ni prenosa" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Številka" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Neobvezno" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Prosimo, da pravilno izpolnite obrazec." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obvezno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Desno" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Izbor" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Pošlji" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Uspešno" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Besedilo" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tip" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Kmalu vam bomo odgovorili." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Spletna stran" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Obrazci spletnega mesta" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "spletna stran" diff --git a/addons/website_form/i18n/sr.po b/addons/website_form/i18n/sr.po new file mode 100644 index 00000000..5d4ad4d5 --- /dev/null +++ b/addons/website_form/i18n/sr.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-09-21 13:18+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polja" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/sr@latin.po b/addons/website_form/i18n/sr@latin.po new file mode 100644 index 00000000..bf56ad88 --- /dev/null +++ b/addons/website_form/i18n/sr@latin.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:54+0000\n" +"PO-Revision-Date: 2017-09-20 09:54+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:226 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:221 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:226 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields_website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_website_website_form_enable_metadata +msgid "Enable writing metadata on form submit." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Polja" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeli" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Internet stranica" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_website_website_form_enable_metadata +msgid "Write metadata" +msgstr "" diff --git a/addons/website_form/i18n/sv.po b/addons/website_form/i18n/sv.po new file mode 100644 index 00000000..970dff60 --- /dev/null +++ b/addons/website_form/i18n/sv.po @@ -0,0 +1,629 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# Martin Trigaux, 2021 +# Christelle Wehbe <libanon_cristelle@hotmail.com>, 2021 +# Martin Wilderoth <martin.wilderoth@linserv.se>, 2021 +# Chrille Hedberg <hedberg.chrille@gmail.com>, 2021 +# Anto Nilsson <anton.nilsson@vertel.se>, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' är inte ett giltigt datum" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' är inte korrekt datum/tid" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p> Bifogade filer : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Ditt meddelande har blivit <b>framgångsrikt</b>mottaget </span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-post</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefon</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Ämne</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Ditt namn</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Din fråga</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Datum" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Datum & Tid" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Visa" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Redigera meddelanden" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-post" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Fel" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Fält" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Filuppladdning" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Höjd" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Dold" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Vänster" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Inga" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Nummer" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radioknappar" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Obligatorisk" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Höger" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Urval" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Skicka" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Framgång" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Text" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Tack!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Typ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Vi återkommer snarast." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Webbplats" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "webbplats" diff --git a/addons/website_form/i18n/th.po b/addons/website_form/i18n/th.po new file mode 100644 index 00000000..fc999e93 --- /dev/null +++ b/addons/website_form/i18n/th.po @@ -0,0 +1,170 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# gsong <gsong2014@foxmail.com>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:18+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Last-Translator: gsong <gsong2014@foxmail.com>, 2018\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_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:230 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' วันที่ไม่ถูกต้อง" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form.js:225 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' เป็นวันที่และเวลาที่ไม่ถูกต้อง" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:229 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>ไฟล์แนบ : </p>" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "เกิดข้อผิดพลาด เว็บฟอร์มยังไม่ได้ส่ง" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "แบล็คลิสฟิลด์นี้สำหรับแบบฟอร์มเว็บ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "แบล็คลิสต์ในเว็บฟอร์ม" + +#. module: website_form +#: model:ir.model,name:website_form.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:54 +#, python-format +msgid "Custom infos" +msgstr "กำหนดข้อมูลเอง" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#: code:addons/website_form/static/src/xml/website_form.xml:21 +#, python-format +msgid "Error" +msgstr "ผิดพลาด" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "ช่องข้อมูล" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:55 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "โมเดล" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:14 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "Success" +msgstr "สำเร็จ" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,field_description:website_form.field_website__website_form_enable_metadata +msgid "Technical data on contact form" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:7 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.res_config_settings_view_form +msgid "Track metadata (IP, User Agent, ...) on your Website Forms" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "เว็บไซต์" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_res_config_settings__website_form_enable_metadata +#: model:ir.model.fields,help:website_form.field_website__website_form_enable_metadata +msgid "You can choose to log technical data like IP, User Agent ,..." +msgstr "" diff --git a/addons/website_form/i18n/tr.po b/addons/website_form/i18n/tr.po new file mode 100644 index 00000000..713ca201 --- /dev/null +++ b/addons/website_form/i18n/tr.po @@ -0,0 +1,638 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Tugay Hatıl <tugayh@projetgrup.com>, 2020 +# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2020 +# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2020 +# ANIL TAN SAĞIR <anils@projetgrup.com>, 2020 +# Murat Durmuş <muratd@projetgrup.com>, 2020 +# Ediz Duman <neps1192@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' doğru bir tarih değildir" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' geçerli bir tarih saat biçimi değildir" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Ekli dosyalar : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Mesajınız başarıyla gönderilmiştir</b></span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "<span class=\"s_website_form_label_content\">E-posta </span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">E-posta</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">Telefon Numarası</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Konu</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">Şirketiniz</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Adınız</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">Sorunuz</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "Bundan sonra yeni bir alan ekle" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "Sonunda yeni bir alan ekleyin" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Forumlarda kullanmaya izinli" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Hata oluştu, form gönderilmedi." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Bu alanı web formları için kara listeye al." + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Web formlarında kara listelenmiş" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Merkez" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Onay Kutusu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Tarih" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Tarih & amp; zaman" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Ondalık Sayı" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Ekran" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "E-Posta" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Bu model için form oluşturma özelliğini aktif et." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Hata" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Özel form verisi için alan" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Alanlar" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Dosya Yükle" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Form aksiyon etiketi. Ör: crm.lead 'E-Posta gönder' ve project.issue " +"'Problem Oluştur' olabilir." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Yükseklik" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Gizli" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Yatay" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Form aksiyonu için etiket" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Sol" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Uzun Metin" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Modeller" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Birden Çok Onay Kutusu" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Eşleşen kayıt yok !" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Hiçbiri" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Numara" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Seçenek 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Seçenek 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Seçenek 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "İsteğe bağlı" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Diğer bilgiler:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Lütfen formu eksiksiz doldurunuz." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Radyo Düğmeleri" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Alıcının E-posta" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Yeniden yönlendir" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Zorunlu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Sağ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Seçim" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" +"Metadata ve özel form alanlarındaki bilgileri içeren alanı belirleyin." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Gönder" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Başarılı" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Metin" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Teşekkürler!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Form başarılı şekilde gönderildi." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Bu mesaj web sitenize gönderildi!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Üst" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Tür" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "FormBuilder Kayıt Defterinde kullanılır" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Dikey" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Size en kısa sürede dönüş yapacağız." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Websitesi" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Web Sitesi Formu Anahtarı" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Website Formları" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Bir model alanını çoğaltamazsınız." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Modelin gerektirdiği bir alanı kaldıramazsınız." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "Websitesi" diff --git a/addons/website_form/i18n/uk.po b/addons/website_form/i18n/uk.po new file mode 100644 index 00000000..8ccdee05 --- /dev/null +++ b/addons/website_form/i18n/uk.po @@ -0,0 +1,615 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# Bohdan Lisnenko, 2020 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:08+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' - невірна дата " + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' - невірні дата і час" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Прикріплені файли: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Дозволено використовувати у формах" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Сталася помилка, форма не була відправлена." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Чорний список цього поля для веб-форм" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Чорний список у веб-формах" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Центр" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Позначення" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Дата" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "Дата та час" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Десяткове число" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Відобразити" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Ел. пошта" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Увімкніть функцію розробника форми для цієї моделі." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Помилка" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Поле для даних спеціальної форми" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Поля" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr " Завантаження файлу" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Форма дії логотипу. Наприклад: crm.lead може бути \"Надіслати електронний " +"лист\" і project.issue може бути \"Створити проблему\"." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Висота" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Приховано" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Горизонтально" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Мітка для дії форми" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Лівий" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "Довгий текст" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Метадані" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Моделі" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "Кілька позначень" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "Немає відповідного запису!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Немає" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Номер" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "Опція 1" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "Опція 2" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "Опція 3" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Необов'язково" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "Інша інформація:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Будь ласка, заповніть форму вірно." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Перемикачі" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "Email одержувача" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Перенаправлення" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Обов'язково" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Правий" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Вибір" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "Вкажіть поле, яке буде містити мету і спеціальні дані поля форми." + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Розглянути" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Успіх" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Текст" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Дякуємо!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Форму успішно надіслано." + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "Це повідомлення було опубліковано на вашому веб-сайті!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Зверху" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Тип" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url-адреса" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "Використовується у реєстрі конструктора форм" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Вертикально" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Ми незабаром зв’яжемося з вами." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "Ключ форми веб-сайту" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "Форми веб-сайту" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "Ви не можете дублювати поле моделі." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "Ви не можете видалити поле, яке вимагає сама модель." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "веб-сайт" diff --git a/addons/website_form/i18n/ur.po b/addons/website_form/i18n/ur.po new file mode 100644 index 00000000..264c1e6a --- /dev/null +++ b/addons/website_form/i18n/ur.po @@ -0,0 +1,611 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/vi.po b/addons/website_form/i18n/vi.po new file mode 100644 index 00000000..f489a936 --- /dev/null +++ b/addons/website_form/i18n/vi.po @@ -0,0 +1,624 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# fanha99 <fanha99@hotmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Dao Nguyen <trucdao.uel@gmail.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "Ngày '%s' không hợp lệ" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "Ngày và giờ '%s' không hợp lệ" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>Tập tin đính kèm: </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "Cho phép sử dụng trong các biểu mẫu" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "Biểu mẫu chưa được gửi vì có lỗi xảy ra." + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "Đưa trường thông tin này vào danh sách đen của các biểu mẫu web " + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "Bị đưa vào danh sách đen của các biểu mẫu web " + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "Trung tâm" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "Hộp kiểm" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "Ngày" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "Số thập phân" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "Hiển thị" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "Chỉnh sửa tin nhắn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "Kích hoạt tính năng xây dựng biểu mẫu cho model này." + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "Lỗi" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "Trường thông tin cho dữ liệu tuỳ chỉnh trên biểu mẫu" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "Trường thông tin" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "Tập tin tải lên" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" +"Nhãn cho các hành động trong biểu mẫu. Ví dụ: trên crm.lead là 'Gửi email' " +"hoặc trên project.issue là 'Tạo issue'" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "Chiều cao" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "Ẩn" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "Ngang" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "Nhãn cho các hành động trong biểu mẫu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "Trái" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "Metadata" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "Mẫu" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "Không dùng" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "Không có gì" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "Số" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "Tuỳ chọn" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "Hãy điền vào biểu mẫu một cách chính xác" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "Nút Radio" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "Chuyển hướng" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "Bắt buộc" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "Phải" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "Lựa chọn" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "Show Message" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "Chỉ định trường thông tin chứa metadata và dữ liệu tuỳ chỉnh" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "Gửi" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "Thành công" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "Văn bản" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "Thank You!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "Biểu mẫu đã được gửi thành công" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "Đầu trang" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "Loại" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "Liên kết" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "Vertical" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "Chúng tôi sẽ phản hồi bạn sớm." + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "Trang web" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "website" diff --git a/addons/website_form/i18n/website_form.pot b/addons/website_form/i18n/website_form.pot new file mode 100644 index 00000000..3ca3fabf --- /dev/null +++ b/addons/website_form/i18n/website_form.pot @@ -0,0 +1,611 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-11-27 14:13+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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "" diff --git a/addons/website_form/i18n/zh_CN.po b/addons/website_form/i18n/zh_CN.po new file mode 100644 index 00000000..018537b1 --- /dev/null +++ b/addons/website_form/i18n/zh_CN.po @@ -0,0 +1,635 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Martin Trigaux, 2020 +# v2exerer <9010446@qq.com>, 2020 +# Lei Xu <xulei8@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# keecome <7017511@qq.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Jeanphy <hzh0292@qq.com>, 2020 +# Mandy Choy <mnc@odoo.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# Liping Wang <lynn.config@gmail.com>, 2020 +# bf2549c5415a9287249cba2b8a5823c7, 2020 +# liAnGjiA <liangjia@qq.com>, 2021 +# 刘群 <liuqun@22tianbo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: 刘群 <liuqun@22tianbo.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' 不是正确的日期" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' 不是正确的日期时间" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>附加的文件 : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">电话号码</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">留言主题</span><span " +"class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">你的公司</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">你的名字</span><span " +"class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "<span class=\"s_website_form_label_content\">你的问题</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "允许使用表单" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "出现错误,表单未被发送。" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "在网上表单中为此字段设置黑名单" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "已经在网站表单的黑名单中" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "居中" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "复选框" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "日期" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "日期时间" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "小数分割符" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "显示" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "编辑消息" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "启用此模型的表单生成器特性。" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "错误" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "表单数据的自定义字段" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "字段" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "文件上传" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "来自动作标注。提示:crm.lead 可以是 ‘发送一封邮件’,project.issue 可以是 ‘创建一个问题’。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "高度" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "隐藏" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "水平" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "表单动作标注" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "左" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "长文本" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "元数据" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "模型" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "多个复选框" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "没有符合条件的记录!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "无" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "没有什么" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "号码" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "可选的" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "我们的工作人员将会尽快回信联系您。" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "请正确填写表单。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "单选按钮" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "重定向" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "必填" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "右" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "选中内容" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "显示消息" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "指定包含元数据和自定义表单字段数据的字段。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "提交" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "成功" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "文本" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "谢谢!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "表单已经被成功发送。" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "顶部" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "类型" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "URL" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "Url" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "竖直" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "我们将很快给你回复。" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "网站" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "网站表单" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "网站" diff --git a/addons/website_form/i18n/zh_TW.po b/addons/website_form/i18n/zh_TW.po new file mode 100644 index 00000000..d0c389cf --- /dev/null +++ b/addons/website_form/i18n/zh_TW.po @@ -0,0 +1,619 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form +# +# Translators: +# Mandy Choy <mnc@odoo.com>, 2020 +# JustinC <dev@dottdot.com>, 2021 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 14:13+0000\n" +"PO-Revision-Date: 2020-09-07 08:21+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2021\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_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct date" +msgstr "'%s' 不是正確的日期" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "'%s' is not a correct datetime" +msgstr "'%s' 不是正確的日期時間" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid ", .s_website_form" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "<p>Attached files : </p>" +msgstr "<p>附件 : </p>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "" +"<span class=\"fa fa-check-circle\"/>\n" +" <span>Your message has been sent <b>successfully</b></span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Email To</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Email</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Phone Number</span>" +msgstr "<span class=\"s_website_form_label_content\">電話號碼</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Subject</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Company</span>" +msgstr "<span class=\"s_website_form_label_content\">你的公司名稱</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "" +"<span class=\"s_website_form_label_content\">Your Name</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" +msgstr "" +"<span class=\"s_website_form_label_content\">應徵者姓名</span>\n" +" <span class=\"s_website_form_mark\"> *</span>" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +msgid "<span class=\"s_website_form_label_content\">Your Question</span>" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field after this one" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Add a new field at the end" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_access +msgid "Allowed to use in forms" +msgstr "允許使用表單" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "An error has occured, the form has not been sent." +msgstr "錯誤,表單未被發送。" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklist this field for web forms" +msgstr "在表單中為這個字段設定黑名單" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__website_form_blacklisted +msgid "Blacklisted in web forms" +msgstr "已經在網站的表單黑名單中" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Button Position" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Center" +msgstr "中間" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Checkbox" +msgstr "複選框" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Custom field" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date" +msgstr "日期" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Date & Time" +msgstr "日期和時間" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Decimal Number" +msgstr "小數" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Display" +msgstr "顯示" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__display_name +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__display_name +#: model:ir.model.fields,field_description:website_form.field_website__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Edit Message" +msgstr "編輯訊息" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Email" +msgstr "Email" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_access +msgid "Enable the form builder feature for this model." +msgstr "啟動此模型的表單生成器特性。" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Error" +msgstr "錯誤" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_default_field_id +msgid "Field for custom form data" +msgstr "表單自定義字段" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model_fields +msgid "Fields" +msgstr "字段" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "File Upload" +msgstr "文件上傳" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_label +msgid "" +"Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue " +"could be 'Create an Issue'." +msgstr "表單動作標注。提示:crm.lead 可以是 『發送一封信件』,project.issue 可以是 『創建一個問題』。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Height" +msgstr "高度" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hidden" +msgstr "隱藏" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Hide" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Horizontal" +msgstr "水平" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__id +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields__id +#: model:ir.model.fields,field_description:website_form.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "In the meantime we invite you to visit our" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Aligned" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Placeholder" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Input Type" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Name" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Label Position" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_label +msgid "Label for form action" +msgstr "表單動作標注" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Labels Width" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model____last_update +#: model:ir.model.fields,field_description:website_form.field_ir_model_fields____last_update +#: model:ir.model.fields,field_description:website_form.field_website____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Left" +msgstr "左" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Long Text" +msgstr "輸入文字(無限制功能)" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Mark Text" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Marked Fields" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Metadata" +msgstr "元數據" + +#. module: website_form +#: model:ir.model,name:website_form.model_ir_model +msgid "Models" +msgstr "模型" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Multiple Checkboxes" +msgstr "多選選項" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "No matching record !" +msgstr "沒有匹配的記錄!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "None" +msgstr "無" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Nothing" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Number" +msgstr "號碼" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "On Success" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 1" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 2" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "Option 3" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Optional" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Other Information:" +msgstr "其他資訊:" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Our team will message you back as soon as possible." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/000.js:0 +#, python-format +msgid "Please fill in the form correctly." +msgstr "請正確填寫表單。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Radio Buttons" +msgstr "單選按鈕" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/js/website_form_editor_registry.js:0 +#, python-format +msgid "Recipient Email" +msgstr "收件者電子郵件" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Redirect" +msgstr "重定向" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Required" +msgstr "必填項" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Right" +msgstr "右" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Selection" +msgstr "選擇" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Separate email addresses with a comma." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show Message" +msgstr "顯示訊息" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Show reCaptcha Policy" +msgstr "" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_default_field_id +msgid "" +"Specify the field which will contain meta and custom form fields datas." +msgstr "指定將包含元組和自定義表單字段數據的字段。" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form +msgid "Submit" +msgstr "提交" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "Success" +msgstr "成功" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "Suspicious activity detected by Google reCaptcha." +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Telephone" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Text" +msgstr "文本" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "Thank You For Your Feedback" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "Thank You!" +msgstr "謝謝!" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form.xml:0 +#, python-format +msgid "The form has been sent successfully." +msgstr "表單已經被成功發送。" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "The form's specified model does not exist" +msgstr "" + +#. module: website_form +#: code:addons/website_form/controllers/main.py:0 +#, python-format +msgid "This message has been posted on your website!" +msgstr "此訊息已張貼在您的網站上!" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Top" +msgstr "上方" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Type" +msgstr "類型" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "URL" +msgstr "網址" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Url" +msgstr "網址" + +#. module: website_form +#: model:ir.model.fields,help:website_form.field_ir_model__website_form_key +msgid "Used in FormBuilder Registry" +msgstr "用於表單構建器註冊表" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "Vertical" +msgstr "豎直" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.contactus_thanks_ir_ui_view +#: model_terms:website.page,arch_db:website_form.contactus_thanks +msgid "We will get back to you shortly." +msgstr "我們將很快給您回覆。" + +#. module: website_form +#: model:ir.model,name:website_form.model_website +msgid "Website" +msgstr "網站" + +#. module: website_form +#: model:ir.model.fields,field_description:website_form.field_ir_model__website_form_key +msgid "Website Form Key" +msgstr "網站表單金鑰" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.ir_model_view +msgid "Website Forms" +msgstr "網站表單" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate a model field." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't duplicate the submit button of the form." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove a field that is required by the model itself." +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/snippets/s_website_form/options.js:0 +#, python-format +msgid "You can't remove the submit button of the form" +msgstr "" + +#. module: website_form +#: model_terms:ir.ui.view,arch_db:website_form.s_website_form_options +msgid "rows" +msgstr "" + +#. module: website_form +#. openerp-web +#: code:addons/website_form/static/src/xml/website_form_editor.xml:0 +#, python-format +msgid "website" +msgstr "網站" diff --git a/addons/website_form/models/__init__.py b/addons/website_form/models/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/addons/website_form/models/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/addons/website_form/models/models.py b/addons/website_form/models/models.py new file mode 100644 index 00000000..30265ba8 --- /dev/null +++ b/addons/website_form/models/models.py @@ -0,0 +1,119 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields, api, SUPERUSER_ID +from odoo.http import request + + +class website_form_config(models.Model): + _inherit = 'website' + + def _website_form_last_record(self): + if request and request.session.form_builder_model_model: + return request.env[request.session.form_builder_model_model].browse(request.session.form_builder_id) + return False + + +class website_form_model(models.Model): + _name = 'ir.model' + _description = 'Models' + _inherit = 'ir.model' + + website_form_access = fields.Boolean('Allowed to use in forms', help='Enable the form builder feature for this model.') + website_form_default_field_id = fields.Many2one('ir.model.fields', 'Field for custom form data', domain="[('model', '=', model), ('ttype', '=', 'text')]", help="Specify the field which will contain meta and custom form fields datas.") + website_form_label = fields.Char("Label for form action", help="Form action label. Ex: crm.lead could be 'Send an e-mail' and project.issue could be 'Create an Issue'.") + website_form_key = fields.Char(help='Used in FormBuilder Registry') + + def _get_form_writable_fields(self): + """ + Restriction of "authorized fields" (fields which can be used in the + form builders) to fields which have actually been opted into form + builders and are writable. By default no field is writable by the + form builder. + """ + included = { + field.name + for field in self.env['ir.model.fields'].sudo().search([ + ('model_id', '=', self.id), + ('website_form_blacklisted', '=', False) + ]) + } + return { + k: v for k, v in self.get_authorized_fields(self.model).items() + if k in included + } + + @api.model + def get_authorized_fields(self, model_name): + """ Return the fields of the given model name as a mapping like method `fields_get`. """ + model = self.env[model_name] + fields_get = model.fields_get() + + for key, val in model._inherits.items(): + fields_get.pop(val, None) + + # Unrequire fields with default values + default_values = model.with_user(SUPERUSER_ID).default_get(list(fields_get)) + for field in [f for f in fields_get if f in default_values]: + fields_get[field]['required'] = False + + # Remove readonly and magic fields + # Remove string domains which are supposed to be evaluated + # (e.g. "[('product_id', '=', product_id)]") + MAGIC_FIELDS = models.MAGIC_COLUMNS + [model.CONCURRENCY_CHECK_FIELD] + for field in list(fields_get): + if 'domain' in fields_get[field] and isinstance(fields_get[field]['domain'], str): + del fields_get[field]['domain'] + if fields_get[field].get('readonly') or field in MAGIC_FIELDS or fields_get[field]['type'] == 'many2one_reference': + del fields_get[field] + + return fields_get + + +class website_form_model_fields(models.Model): + """ fields configuration for form builder """ + _name = 'ir.model.fields' + _description = 'Fields' + _inherit = 'ir.model.fields' + + def init(self): + # set all existing unset website_form_blacklisted fields to ``true`` + # (so that we can use it as a whitelist rather than a blacklist) + self._cr.execute('UPDATE ir_model_fields' + ' SET website_form_blacklisted=true' + ' WHERE website_form_blacklisted IS NULL') + # add an SQL-level default value on website_form_blacklisted to that + # pure-SQL ir.model.field creations (e.g. in _reflect) generate + # the right default value for a whitelist (aka fields should be + # blacklisted by default) + self._cr.execute('ALTER TABLE ir_model_fields ' + ' ALTER COLUMN website_form_blacklisted SET DEFAULT true') + + @api.model + def formbuilder_whitelist(self, model, fields): + """ + :param str model: name of the model on which to whitelist fields + :param list(str) fields: list of fields to whitelist on the model + :return: nothing of import + """ + # postgres does *not* like ``in [EMPTY TUPLE]`` queries + if not fields: return False + + # only allow users who can change the website structure + if not self.env['res.users'].has_group('website.group_website_designer'): + return False + + # the ORM only allows writing on custom fields and will trigger a + # registry reload once that's happened. We want to be able to + # whitelist non-custom fields and the registry reload absolutely + # isn't desirable, so go with a method and raw SQL + self.env.cr.execute( + "UPDATE ir_model_fields" + " SET website_form_blacklisted=false" + " WHERE model=%s AND name in %s", (model, tuple(fields))) + return True + + website_form_blacklisted = fields.Boolean( + 'Blacklisted in web forms', default=True, index=True, # required=True, + help='Blacklist this field for web forms' + ) diff --git a/addons/website_form/static/description/icon.png b/addons/website_form/static/description/icon.png Binary files differnew file mode 100644 index 00000000..212df7a9 --- /dev/null +++ b/addons/website_form/static/description/icon.png diff --git a/addons/website_form/static/description/icon.svg b/addons/website_form/static/description/icon.svg new file mode 100644 index 00000000..c6dd1249 --- /dev/null +++ b/addons/website_form/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#B06161"/><stop offset="45.785%" stop-color="#984E4E"/><stop offset="100%" stop-color="#7C3838"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M41.118 69H4c-2 0-4-1-4-4V28.375L15 12h41v42L41.118 69z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><path fill="#FFF" d="M34 17v-2h2v2h2v2h-2v2h-2v-2h-2v-2h2zM15 42h41v12H15V42zm19.51 8.985a.608.608 0 0 0 .73 0l5.942-4.792c.202-.162.202-.426 0-.589l-.73-.59a.608.608 0 0 0-.731 0l-4.846 3.909-2.262-1.825a.608.608 0 0 0-.731 0l-.73.59c-.202.162-.202.426 0 .589l3.358 2.708zM15 12h41v12H15V12zm0 15h41v12H15V27zm2-13v8h37v-8H17zm0 15v8h37v-8H17zm15 3h6v2h-6v-2z"/></g></g></svg>
\ No newline at end of file diff --git a/addons/website_form/static/src/js/website_form_editor_registry.js b/addons/website_form/static/src/js/website_form_editor_registry.js new file mode 100644 index 00000000..35acc904 --- /dev/null +++ b/addons/website_form/static/src/js/website_form_editor_registry.js @@ -0,0 +1,57 @@ +odoo.define('website_form.form_editor_registry', function (require) { +'use strict'; + +var Registry = require('web.Registry'); + +return new Registry(); + +}); + +odoo.define('website_form.send_mail_form', function (require) { +'use strict'; + +var core = require('web.core'); +var FormEditorRegistry = require('website_form.form_editor_registry'); + +var _t = core._t; + +FormEditorRegistry.add('send_mail', { + formFields: [{ + type: 'char', + custom: true, + required: true, + name: 'Your Name', + }, { + type: 'tel', + custom: true, + name: 'Phone Number', + }, { + type: 'email', + modelRequired: true, + name: 'email_from', + string: 'Your Email', + }, { + type: 'char', + custom: true, + name: 'Your Company', + }, { + type: 'char', + modelRequired: true, + name: 'subject', + string: 'Subject', + }, { + type: 'text', + custom: true, + required: true, + name: 'Your Question', + }], + fields: [{ + name: 'email_to', + type: 'char', + required: true, + string: _t('Recipient Email'), + defaultValue: 'info@yourcompany.example.com', + }], +}); + +}); diff --git a/addons/website_form/static/src/scss/wysiwyg_snippets.scss b/addons/website_form/static/src/scss/wysiwyg_snippets.scss new file mode 100644 index 00000000..e4baf8d3 --- /dev/null +++ b/addons/website_form/static/src/scss/wysiwyg_snippets.scss @@ -0,0 +1,37 @@ +#oe_snippets > .o_we_customize_panel we-customizeblock-option { + we-list { + we-title, we-button { + margin-top: $o-we-sidebar-content-field-spacing; + } + .oe_we_table_wraper { + margin-top: $o-we-sidebar-content-field-spacing; + max-height: 200px; + overflow-y: auto; + + table { + table-layout: fixed; + width: 100%; + + input { + width: 100%; + border: $o-we-sidebar-content-field-border-width solid $o-we-sidebar-content-field-border-color; + border-radius: $o-we-sidebar-content-field-border-radius; + padding: 0 $o-we-sidebar-content-field-clickable-spacing; + background-color: $o-we-sidebar-content-field-input-bg; + color: inherit; + font-family: $o-we-sidebar-content-field-input-font-family; + } + tr { + border: 1px solid rgba(white, 0.1); + border-left: none; + border-right: none; + } + td { + &:first-child, &:last-child { + width: 28px; + } + } + } + } + } +} diff --git a/addons/website_form/static/src/snippets/s_website_form/000.js b/addons/website_form/static/src/snippets/s_website_form/000.js new file mode 100644 index 00000000..492db41b --- /dev/null +++ b/addons/website_form/static/src/snippets/s_website_form/000.js @@ -0,0 +1,334 @@ +odoo.define('website_form.s_website_form', function (require) { + 'use strict'; + + var core = require('web.core'); + var time = require('web.time'); + const {ReCaptcha} = require('google_recaptcha.ReCaptchaV3'); + var ajax = require('web.ajax'); + var publicWidget = require('web.public.widget'); + const dom = require('web.dom'); + + var _t = core._t; + var qweb = core.qweb; + + publicWidget.registry.s_website_form = publicWidget.Widget.extend({ + selector: '.s_website_form form, form.s_website_form', // !compatibility + xmlDependencies: ['/website_form/static/src/xml/website_form.xml'], + events: { + 'click .s_website_form_send, .o_website_form_send': 'send', // !compatibility + }, + + /** + * @constructor + */ + init: function () { + this._super(...arguments); + this._recaptcha = new ReCaptcha(); + this.__started = new Promise(resolve => this.__startResolve = resolve); + }, + willStart: function () { + const res = this._super(...arguments); + if (!this.$target[0].classList.contains('s_website_form_no_recaptcha')) { + this._recaptchaLoaded = true; + this._recaptcha.loadLibs(); + } + return res; + }, + start: function () { + var self = this; + + // Initialize datetimepickers + var datepickers_options = { + minDate: moment({ y: 1000 }), + maxDate: moment({y: 9999, M: 11, d: 31}), + calendarWeeks: true, + icons: { + time: 'fa fa-clock-o', + date: 'fa fa-calendar', + next: 'fa fa-chevron-right', + previous: 'fa fa-chevron-left', + up: 'fa fa-chevron-up', + down: 'fa fa-chevron-down', + }, + locale: moment.locale(), + format: time.getLangDatetimeFormat(), + }; + this.$target.find('.s_website_form_datetime, .o_website_form_datetime').datetimepicker(datepickers_options); // !compatibility + + // Adapt options to date-only pickers + datepickers_options.format = time.getLangDateFormat(); + this.$target.find('.s_website_form_date, .o_website_form_date').datetimepicker(datepickers_options); // !compatibility + + // Display form values from tag having data-for attribute + // It's necessary to handle field values generated on server-side + // Because, using t-att- inside form make it non-editable + var $values = $('[data-for=' + this.$target.attr('id') + ']'); + if ($values.length) { + var values = JSON.parse($values.data('values').replace('False', '""').replace('None', '""').replace(/'/g, '"')); + var fields = _.pluck(this.$target.serializeArray(), 'name'); + _.each(fields, function (field) { + if (_.has(values, field)) { + var $field = self.$target.find('input[name="' + field + '"], textarea[name="' + field + '"]'); + if (!$field.val()) { + $field.val(values[field]); + $field.data('website_form_original_default_value', $field.val()); + } + } + }); + } + + return this._super(...arguments).then(() => this.__startResolve()); + }, + + destroy: function () { + this._super.apply(this, arguments); + this.$target.find('button').off('click'); + + // Empty imputs + this.$target[0].reset(); + + // Remove saving of the error colors + this.$target.find('.o_has_error').removeClass('o_has_error').find('.form-control, .custom-select').removeClass('is-invalid'); + + // Remove the status message + this.$target.find('#s_website_form_result, #o_website_form_result').empty(); // !compatibility + + // Remove the success message and display the form + this.$target.removeClass('d-none'); + this.$target.parent().find('.s_website_form_end_message').addClass('d-none'); + }, + + send: async function (e) { + e.preventDefault(); // Prevent the default submit behavior + // Prevent users from crazy clicking + this.$target.find('.s_website_form_send, .o_website_form_send') + .addClass('disabled') // !compatibility + .attr('disabled', 'disabled'); + + var self = this; + + self.$target.find('#s_website_form_result, #o_website_form_result').empty(); // !compatibility + if (!self.check_error_fields({})) { + self.update_status('error', _t("Please fill in the form correctly.")); + return false; + } + + // Prepare form inputs + this.form_fields = this.$target.serializeArray(); + $.each(this.$target.find('input[type=file]'), function (outer_index, input) { + $.each($(input).prop('files'), function (index, file) { + // Index field name as ajax won't accept arrays of files + // when aggregating multiple files into a single field value + self.form_fields.push({ + name: input.name + '[' + outer_index + '][' + index + ']', + value: file + }); + }); + }); + + // Serialize form inputs into a single object + // Aggregate multiple values into arrays + var form_values = {}; + _.each(this.form_fields, function (input) { + if (input.name in form_values) { + // If a value already exists for this field, + // we are facing a x2many field, so we store + // the values in an array. + if (Array.isArray(form_values[input.name])) { + form_values[input.name].push(input.value); + } else { + form_values[input.name] = [form_values[input.name], input.value]; + } + } else { + if (input.value !== '') { + form_values[input.name] = input.value; + } + } + }); + + // force server date format usage for existing fields + this.$target.find('.s_website_form_field:not(.s_website_form_custom)') + .find('.s_website_form_date, .s_website_form_datetime').each(function () { + var date = $(this).datetimepicker('viewDate').clone().locale('en'); + var format = 'YYYY-MM-DD'; + if ($(this).hasClass('s_website_form_datetime')) { + date = date.utc(); + format = 'YYYY-MM-DD HH:mm:ss'; + } + form_values[$(this).find('input').attr('name')] = date.format(format); + }); + + if (this._recaptchaLoaded) { + const tokenObj = await this._recaptcha.getToken('website_form'); + if (tokenObj.token) { + form_values['recaptcha_token_response'] = tokenObj.token; + } else if (tokenObj.error) { + self.update_status('error', tokenObj.error); + return false; + } + } + + // Post form and handle result + ajax.post(this.$target.attr('action') + (this.$target.data('force_action') || this.$target.data('model_name')), form_values) + .then(function (result_data) { + // Restore send button behavior + self.$target.find('.s_website_form_send, .o_website_form_send') + .removeAttr('disabled') + .removeClass('disabled'); // !compatibility + result_data = JSON.parse(result_data); + if (!result_data.id) { + // Failure, the server didn't return the created record ID + self.update_status('error', result_data.error ? result_data.error : false); + if (result_data.error_fields) { + // If the server return a list of bad fields, show these fields for users + self.check_error_fields(result_data.error_fields); + } + } else { + // Success, redirect or update status + let successMode = self.$target[0].dataset.successMode; + let successPage = self.$target[0].dataset.successPage; + if (!successMode) { + successPage = self.$target.attr('data-success_page'); // Compatibility + successMode = successPage ? 'redirect' : 'nothing'; + } + switch (successMode) { + case 'redirect': + if (successPage.charAt(0) === "#") { + dom.scrollTo($(successPage)[0], { + duration: 500, + extraOffset: 0, + }); + } else { + $(window.location).attr('href', successPage); + } + break; + case 'message': + self.$target[0].classList.add('d-none'); + self.$target[0].parentElement.querySelector('.s_website_form_end_message').classList.remove('d-none'); + break; + default: + self.update_status('success'); + break; + } + + // Reset the form + self.$target[0].reset(); + } + }) + .guardedCatch(function () { + self.update_status('error'); + }); + }, + + check_error_fields: function (error_fields) { + var self = this; + var form_valid = true; + // Loop on all fields + this.$target.find('.form-field, .s_website_form_field').each(function (k, field) { // !compatibility + var $field = $(field); + var field_name = $field.find('.col-form-label').attr('for'); + + // Validate inputs for this field + var inputs = $field.find('.s_website_form_input, .o_website_form_input').not('#editable_select'); // !compatibility + var invalid_inputs = inputs.toArray().filter(function (input, k, inputs) { + // Special check for multiple required checkbox for same + // field as it seems checkValidity forces every required + // checkbox to be checked, instead of looking at other + // checkboxes with the same name and only requiring one + // of them to be checked. + if (input.required && input.type === 'checkbox') { + // Considering we are currently processing a single + // field, we can assume that all checkboxes in the + // inputs variable have the same name + var checkboxes = _.filter(inputs, function (input) { + return input.required && input.type === 'checkbox'; + }); + return !_.any(checkboxes, checkbox => checkbox.checked); + + // Special cases for dates and datetimes + } else if ($(input).hasClass('s_website_form_date') || $(input).hasClass('o_website_form_date')) { // !compatibility + if (!self.is_datetime_valid(input.value, 'date')) { + return true; + } + } else if ($(input).hasClass('s_website_form_datetime') || $(input).hasClass('o_website_form_datetime')) { // !compatibility + if (!self.is_datetime_valid(input.value, 'datetime')) { + return true; + } + } + return !input.checkValidity(); + }); + + // Update field color if invalid or erroneous + $field.removeClass('o_has_error').find('.form-control, .custom-select').removeClass('is-invalid'); + if (invalid_inputs.length || error_fields[field_name]) { + $field.addClass('o_has_error').find('.form-control, .custom-select').addClass('is-invalid'); + if (_.isString(error_fields[field_name])) { + $field.popover({content: error_fields[field_name], trigger: 'hover', container: 'body', placement: 'top'}); + // update error message and show it. + $field.data("bs.popover").config.content = error_fields[field_name]; + $field.popover('show'); + } + form_valid = false; + } + }); + return form_valid; + }, + + is_datetime_valid: function (value, type_of_date) { + if (value === "") { + return true; + } else { + try { + this.parse_date(value, type_of_date); + return true; + } catch (e) { + return false; + } + } + }, + + // This is a stripped down version of format.js parse_value function + parse_date: function (value, type_of_date, value_if_empty) { + var date_pattern = time.getLangDateFormat(), + time_pattern = time.getLangTimeFormat(); + var date_pattern_wo_zero = date_pattern.replace('MM', 'M').replace('DD', 'D'), + time_pattern_wo_zero = time_pattern.replace('HH', 'H').replace('mm', 'm').replace('ss', 's'); + switch (type_of_date) { + case 'datetime': + var datetime = moment(value, [date_pattern + ' ' + time_pattern, date_pattern_wo_zero + ' ' + time_pattern_wo_zero], true); + if (datetime.isValid()) { + return time.datetime_to_str(datetime.toDate()); + } + throw new Error(_.str.sprintf(_t("'%s' is not a correct datetime"), value)); + case 'date': + var date = moment(value, [date_pattern, date_pattern_wo_zero], true); + if (date.isValid()) { + return time.date_to_str(date.toDate()); + } + throw new Error(_.str.sprintf(_t("'%s' is not a correct date"), value)); + } + return value; + }, + + update_status: function (status, message) { + if (status !== 'success') { // Restore send button behavior if result is an error + this.$target.find('.s_website_form_send, .o_website_form_send') + .removeAttr('disabled') + .removeClass('disabled'); // !compatibility + } + var $result = this.$('#s_website_form_result, #o_website_form_result'); // !compatibility + + if (status === 'error' && !message) { + message = _t("An error has occured, the form has not been sent."); + } + + // Note: we still need to wait that the widget is properly started + // before any qweb rendering which depends on xmlDependencies + // because the event handlers are binded before the call to + // willStart for public widgets... + this.__started.then(() => $result.replaceWith(qweb.render(`website_form.status_${status}`, { + message: message, + }))); + }, + }); +}); diff --git a/addons/website_form/static/src/snippets/s_website_form/000.scss b/addons/website_form/static/src/snippets/s_website_form/000.scss new file mode 100644 index 00000000..0ba43a0c --- /dev/null +++ b/addons/website_form/static/src/snippets/s_website_form/000.scss @@ -0,0 +1,61 @@ +.editor_enable .s_website_form:not([data-vcss]) { + // Select inputs do not trigger the default browser behavior + // Since we use a custom editable element + .form-field select { + pointer-events: none; + } + + .o_website_form_field_hidden { + display: flex; + opacity: 0.5; + } + + // Quickfix to display the editable select as a single big field + #editable_select.form-control { + height: 100%; + } +} + +.s_website_form:not([data-vcss]) { + // Radio buttons and checkboxes flex layout + .o_website_form_flex { + display: flex; + flex-wrap: wrap; + + &.o_website_form_flex_fw > .o_website_form_flex_item { + flex-basis: 100%; + } + &:not(.o_website_form_flex_fw) > .o_website_form_flex_item { + // col-lg-4 + flex-basis: 33%; + + // col-md-6 + @include media-breakpoint-down(md) { + flex-basis: 50%; + } + + // col-12 + @include media-breakpoint-down(sm) { + flex-basis: 100%; + } + } + } + + // Hidden field is only partially hidden in editor + .o_website_form_field_hidden { + display: none; + } + + // Required fields have a star which is not part of the field label + .o_website_form_required, .o_website_form_required_custom { + .col-form-label:after { + content: ' *'; + } + } + + // Fix for firefox browse button which is too big for Bootstrap form-field + // http://stackoverflow.com/questions/22049739/fix-for-firefox-file-input-using-bootstrap-3-1 + .form-field input[type=file].form-control { + height: 100%; + } +} diff --git a/addons/website_form/static/src/snippets/s_website_form/001.scss b/addons/website_form/static/src/snippets/s_website_form/001.scss new file mode 100644 index 00000000..375a4bb5 --- /dev/null +++ b/addons/website_form/static/src/snippets/s_website_form/001.scss @@ -0,0 +1,57 @@ +.editor_enable .s_website_form[data-vcss="001"] { + // Hidden field is only partially hidden in editor + .s_website_form_field_hidden { + display: block; + opacity: 0.5; + } + // Select inputs do not trigger the default browser behavior + // Since we use a custom editable element + .s_website_form_field select { + pointer-events: none; + } + // Display the editable select as a single big field + #editable_select.form-control { + height: auto; + } +} + +.s_website_form[data-vcss="001"] { + .s_website_form_label { + @include media-breakpoint-down(xs) { + width: auto !important; + } + } + + .s_website_form_field_hidden { + display: none; + } + + span.s_website_form_mark { + font-size: 0.85em; + font-weight: 400; + } + + .s_website_form_dnone { + display: none; + } + + // The snippet editor uses padding and not margin. + // This will include bootstrap margin in the dragable y axes + .s_website_form_rows > .form-group { + margin-bottom: 0; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .s_website_form_submit, .s_website_form_recaptcha { + .s_website_form_label { + float: left; + height: 1px; + } + } + .s_website_form_no_submit_label { + .s_website_form_label { + display: none; + } + } +} diff --git a/addons/website_form/static/src/snippets/s_website_form/options.js b/addons/website_form/static/src/snippets/s_website_form/options.js new file mode 100644 index 00000000..774a4707 --- /dev/null +++ b/addons/website_form/static/src/snippets/s_website_form/options.js @@ -0,0 +1,1348 @@ +odoo.define('website_form_editor', function (require) { +'use strict'; + +const core = require('web.core'); +const FormEditorRegistry = require('website_form.form_editor_registry'); +const options = require('web_editor.snippets.options'); + +const qweb = core.qweb; +const _t = core._t; + +const FormEditor = options.Class.extend({ + xmlDependencies: [ + '/website_form/static/src/xml/website_form_editor.xml', + '/google_recaptcha/static/src/xml/recaptcha.xml', + ], + + //---------------------------------------------------------------------- + // Private + //---------------------------------------------------------------------- + + /** + * Returns a promise which is resolved once the records of the field + * have been retrieved. + * + * @private + * @param {Object} field + * @returns {Promise<Object>} + */ + _fetchFieldRecords: async function (field) { + // Convert the required boolean to a value directly usable + // in qweb js to avoid duplicating this in the templates + field.required = field.required ? 1 : null; + + if (field.records) { + return field.records; + } + // Set selection as records to avoid added conplexity + if (field.type === 'selection') { + field.records = field.selection.map(el => ({ + id: el[0], + display_name: el[1], + })); + } else if (field.relation && field.relation !== 'ir.attachment') { + field.records = await this._rpc({ + model: field.relation, + method: 'search_read', + args: [ + field.domain, + ['display_name'] + ], + }); + } + return field.records; + }, + /** + * Returns a field object + * + * @private + * @param {string} type the type of the field + * @param {string} name The name of the field used also as label + * @returns {Object} + */ + _getCustomField: function (type, name) { + return { + name: name, + string: name, + custom: true, + type: type, + // Default values for x2many fields and selection + records: [{ + id: _t('Option 1'), + display_name: _t('Option 1'), + }, { + id: _t('Option 2'), + display_name: _t('Option 2'), + }, { + id: _t('Option 3'), + display_name: _t('Option 3'), + }], + }; + }, + /** + * Returns the default formatInfos of a field. + * + * @private + * @returns {Object} + */ + _getDefaultFormat: function () { + return { + labelWidth: this.$target[0].querySelector('.s_website_form_label').style.width, + labelPosition: 'left', + multiPosition: 'horizontal', + requiredMark: this._isRequiredMark(), + optionalMark: this._isOptionalMark(), + mark: this._getMark(), + }; + }, + /** + * @private + * @returns {string} + */ + _getMark: function () { + return this.$target[0].dataset.mark; + }, + /** + * @private + * @returns {boolean} + */ + _isOptionalMark: function () { + return this.$target[0].classList.contains('o_mark_optional'); + }, + /** + * @private + * @returns {boolean} + */ + _isRequiredMark: function () { + return this.$target[0].classList.contains('o_mark_required'); + }, + /** + * @private + * @param {Object} field + * @returns {Promise<HTMLElement>} + */ + _renderField: function (field) { + field.id = Math.random().toString(36).substring(2, 15); // Big unique ID + const template = document.createElement('template'); + template.innerHTML = qweb.render("website_form.field_" + field.type, {field: field}).trim(); + return template.content.firstElementChild; + }, +}); + +const FieldEditor = FormEditor.extend({ + /** + * @override + */ + init: function () { + this._super.apply(this, arguments); + this.formEl = this.$target[0].closest('form'); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * Returns the target as a field Object + * + * @private + * @returns {Object} + */ + _getActiveField: function () { + let field; + const labelText = this.$target.find('.s_website_form_label_content').text(); + if (this._isFieldCustom()) { + field = this._getCustomField(this.$target[0].dataset.type, labelText); + } else { + field = Object.assign({}, this.fields[this._getFieldName()]); + field.string = labelText; + } + field.records = this._getListItems(); + this._setActiveProperties(field); + return field; + }, + /** + * Returns the format object of a field containing + * the position, labelWidth and bootstrap col class + * + * @private + * @returns {Object} + */ + _getFieldFormat: function () { + let requiredMark, optionalMark; + const mark = this.$target[0].querySelector('.s_website_form_mark'); + if (mark) { + requiredMark = this._isFieldRequired(); + optionalMark = !requiredMark; + } + const multipleInput = this._getMultipleInputs(); + const format = { + labelPosition: this._getLabelPosition(), + labelWidth: this.$target[0].querySelector('.s_website_form_label').style.width, + multiPosition: multipleInput && multipleInput.dataset.display || 'horizontal', + col: [...this.$target[0].classList].filter(el => el.match(/^col-/g)).join(' '), + requiredMark: requiredMark, + optionalMark: optionalMark, + mark: mark && mark.textContent, + }; + return format; + }, + /** + * Returns the name of the field + * + * @private + * @returns {string} + */ + _getFieldName: function () { + const multipleName = this.$target[0].querySelector('.s_website_form_multiple'); + return multipleName ? multipleName.dataset.name : this.$target[0].querySelector('.s_website_form_input').name; + }, + /** + * Returns the type of the field, can be used for both custom and existing fields + * + * @private + * @returns {string} + */ + _getFieldType: function () { + return this.$target[0].dataset.type; + }, + /** + * @private + * @returns {string} + */ + _getLabelPosition: function () { + const label = this.$target[0].querySelector('.s_website_form_label'); + if (this.$target[0].querySelector('.row:not(.s_website_form_multiple)')) { + return label.classList.contains('text-right') ? 'right' : 'left'; + } else { + return label.classList.contains('d-none') ? 'none' : 'top'; + } + }, + /** + * Returns the multiple checkbox/radio element if it exist else null + * + * @private + * @returns {HTMLElement} + */ + _getMultipleInputs: function () { + return this.$target[0].querySelector('.s_website_form_multiple'); + }, + /** + * @private + * @returns {string} + */ + _getPlaceholder: function () { + const input = this._getPlaceholderInput(); + return input ? input.placeholder : ''; + }, + /** + * Returns the field's input if it is placeholder compatible, else null + * + * @private + * @returns {HTMLElement} + */ + _getPlaceholderInput: function () { + return this.$target[0].querySelector('input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="url"], textarea'); + }, + /** + * Returns true if the field is a custom field, false if it is an existing field + * + * @private + * @returns {boolean} + */ + _isFieldCustom: function () { + return !!this.$target[0].classList.contains('s_website_form_custom'); + }, + /** + * Returns true if the field is required by the model or by the user. + * + * @private + * @returns {boolean} + */ + _isFieldRequired: function () { + const classList = this.$target[0].classList; + return classList.contains('s_website_form_required') || classList.contains('s_website_form_model_required'); + }, + /** + * Set the active field properties on the field Object + * + * @param {Object} field Field to complete with the active field info + */ + _setActiveProperties(field) { + const classList = this.$target[0].classList; + const textarea = this.$target[0].querySelector('textarea'); + field.placeholder = this._getPlaceholder(); + field.rows = textarea && textarea.rows; + field.required = classList.contains('s_website_form_required'); + field.modelRequired = classList.contains('s_website_form_model_required'); + field.hidden = classList.contains('s_website_form_field_hidden'); + field.formatInfo = this._getFieldFormat(); + }, + /** + * Set the placeholder on the current field if the input allow it + * + * @private + * @param {string} value + */ + _setPlaceholder: function (value) { + const input = this._getPlaceholderInput(); + if (input) { + input.placeholder = value; + } + }, +}); + +options.registry.WebsiteFormEditor = FormEditor.extend({ + events: _.extend({}, options.Class.prototype.events || {}, { + 'click .toggle-edit-message': '_onToggleEndMessageClick', + }), + + /** + * @override + */ + willStart: async function () { + const _super = this._super.bind(this); + + // Hide change form parameters option for forms + // e.g. User should not be enable to change existing job application form + // to opportunity form in 'Apply job' page. + this.modelCantChange = this.$target.attr('hide-change-model') !== undefined; + if (this.modelCantChange) { + return _super(...arguments); + } + + // Get list of website_form compatible models. + this.models = await this._rpc({ + model: "ir.model", + method: "search_read", + args: [ + [['website_form_access', '=', true]], + ['id', 'model', 'name', 'website_form_label', 'website_form_key'] + ], + }); + + const targetModelName = this.$target[0].dataset.model_name || 'mail.mail'; + this.activeForm = _.findWhere(this.models, {model: targetModelName}); + // Create the Form Action select + this.selectActionEl = document.createElement('we-select'); + this.selectActionEl.setAttribute('string', 'Action'); + this.selectActionEl.dataset.noPreview = 'true'; + this.models.forEach(el => { + const option = document.createElement('we-button'); + option.textContent = el.website_form_label; + option.dataset.selectAction = el.id; + this.selectActionEl.append(option); + }); + + return _super(...arguments); + }, + /** + * @override + */ + start: function () { + const proms = [this._super(...arguments)]; + // Disable text edition + this.$target.attr('contentEditable', false); + // Make button and recaptcha editable + this.$target.find('.s_website_form_send, .s_website_form_recaptcha').attr('contentEditable', true); + // Get potential message + this.$message = this.$target.parent().find('.s_website_form_end_message'); + this.showEndMessage = false; + // If the form has no model it means a new snippet has been dropped. + // Apply the default model selected in willStart on it. + if (!this.$target[0].dataset.model_name) { + proms.push(this._applyFormModel()); + } + return Promise.all(proms); + }, + /** + * @override + */ + cleanForSave: function () { + const model = this.$target[0].dataset.model_name; + // because apparently this can be called on the wrong widget and + // we may not have a model, or fields... + if (model) { + // we may be re-whitelisting already whitelisted fields. Doesn't + // really matter. + const fields = [...this.$target[0].querySelectorAll('.s_website_form_field:not(.s_website_form_custom) .s_website_form_input')].map(el => el.name); + if (fields.length) { + // ideally we'd only do this if saving the form + // succeeds... but no idea how to do that + this._rpc({ + model: 'ir.model.fields', + method: 'formbuilder_whitelist', + args: [model, _.uniq(fields)], + }); + } + } + if (this.$message.length) { + this.$target.removeClass('d-none'); + this.$message.addClass("d-none"); + } + + // Clear default values coming from data-for/data-values attributes + this.$target.find('input[name],textarea[name]').each(function () { + var original = $(this).data('website_form_original_default_value'); + if (original !== undefined && $(this).val() === original) { + $(this).val('').removeAttr('value'); + } + }); + }, + /** + * @override + */ + updateUI: async function () { + // If we want to rerender the xml we need to avoid the updateUI + // as they are asynchronous and the ui might try to update while + // we are building the UserValueWidgets. + if (this.rerender) { + this.rerender = false; + await this._rerenderXML(); + return; + } + await this._super.apply(this, arguments); + // End Message UI + this.updateUIEndMessage(); + }, + /** + * @see this.updateUI + */ + updateUIEndMessage: function () { + this.$target.toggleClass("d-none", this.showEndMessage); + this.$message.toggleClass("d-none", !this.showEndMessage); + this.$el.find(".toggle-edit-message").toggleClass('text-primary', this.showEndMessage); + }, + /** + * @override + */ + notify: function (name, data) { + this._super(...arguments); + if (name === 'field_mark') { + this._setLabelsMark(); + } else if (name === 'add_field') { + const field = this._getCustomField('char', 'Custom Text'); + field.formatInfo = data.formatInfo; + field.formatInfo.requiredMark = this._isRequiredMark(); + field.formatInfo.optionalMark = this._isOptionalMark(); + field.formatInfo.mark = this._getMark(); + const htmlField = this._renderField(field); + data.$target.after(htmlField); + this.trigger_up('activate_snippet', { + $snippet: $(htmlField), + }); + } + }, + + //-------------------------------------------------------------------------- + // Options + //-------------------------------------------------------------------------- + + /** + * Select the value of a field (hidden) that will be used on the model as a preset. + * ie: The Job you apply for if the form is on that job's page. + */ + addActionField: function (previewMode, value, params) { + const fieldName = params.fieldName; + if (params.isSelect === 'true') { + value = parseInt(value); + } + this._addHiddenField(value, fieldName); + }, + /** + * Changes the onSuccess event. + */ + onSuccess: function (previewMode, value, params) { + this.$target[0].dataset.successMode = value; + if (value === 'message') { + if (!this.$message.length) { + this.$message = $(qweb.render('website_form.s_website_form_end_message')); + } + this.$target.after(this.$message); + } else { + this.showEndMessage = false; + this.$message.remove(); + } + }, + /** + * Select the model to create with the form. + */ + selectAction: async function (previewMode, value, params) { + if (this.modelCantChange) { + return; + } + await this._applyFormModel(parseInt(value)); + this.rerender = true; + }, + /** + * @override + */ + selectClass: function (previewMode, value, params) { + this._super(...arguments); + if (params.name === 'field_mark_select') { + this._setLabelsMark(); + } + }, + /** + * Set the mark string on the form + */ + setMark: function (previewMode, value, params) { + this.$target[0].dataset.mark = value.trim(); + this._setLabelsMark(); + }, + /** + * Toggle the recaptcha legal terms + */ + toggleRecaptchaLegal: function (previewMode, value, params) { + const recaptchaLegalEl = this.$target[0].querySelector('.s_website_form_recaptcha'); + if (recaptchaLegalEl) { + recaptchaLegalEl.remove(); + } else { + const template = document.createElement('template'); + const labelWidth = this.$target[0].querySelector('.s_website_form_label').style.width; + template.innerHTML = qweb.render("webite_form.s_website_form_recaptcha_legal", {labelWidth: labelWidth}); + const legal = template.content.firstElementChild; + legal.setAttribute('contentEditable', true); + this.$target.find('.s_website_form_submit').before(legal); + } + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + */ + _computeWidgetState: function (methodName, params) { + switch (methodName) { + case 'selectAction': + return this.activeForm.id; + case 'addActionField': { + const value = this.$target.find(`.s_website_form_dnone input[name="${params.fieldName}"]`).val(); + if (value) { + return value; + } else { + return params.isSelect ? '0' : ''; + } + } + case 'onSuccess': + return this.$target[0].dataset.successMode; + case 'setMark': + return this._getMark(); + case 'toggleRecaptchaLegal': + return !this.$target[0].querySelector('.s_website_form_recaptcha') || ''; + } + return this._super(...arguments); + }, + /** + * @override + */ + _renderCustomXML: function (uiFragment) { + if (this.modelCantChange) { + return; + } + // Add Action select + const firstOption = uiFragment.childNodes[0]; + uiFragment.insertBefore(this.selectActionEl.cloneNode(true), firstOption); + + // Add Action related options + const formKey = this.activeForm.website_form_key; + const formInfo = FormEditorRegistry.get(formKey); + if (!formInfo || !formInfo.fields) { + return; + } + const proms = formInfo.fields.map(field => this._fetchFieldRecords(field)); + return Promise.all(proms).then(() => { + formInfo.fields.forEach(field => { + let option; + switch (field.type) { + case 'many2one': + option = this._buildSelect(field); + break; + case 'char': + option = this._buildInput(field); + break; + } + if (field.required) { + // Try to retrieve hidden value in form, else, + // get default value or for many2one fields the first option. + const currentValue = this.$target.find(`.s_website_form_dnone input[name="${field.name}"]`).val(); + const defaultValue = field.defaultValue || field.records[0].id; + this._addHiddenField(currentValue || defaultValue, field.name); + } + uiFragment.insertBefore(option, firstOption); + }); + }); + }, + /** + * Add a hidden field to the form + * + * @private + * @param {string} value + * @param {string} fieldName + */ + _addHiddenField: function (value, fieldName) { + this.$target.find(`.s_website_form_dnone:has(input[name="${fieldName}"])`).remove(); + if (value) { + const hiddenField = qweb.render('website_form.field_hidden', { + field: { + name: fieldName, + value: value, + }, + }); + this.$target.find('.s_website_form_submit').before(hiddenField); + } + }, + /** + * Returns a we-input element from the field + * + * @private + * @param {Object} field + * @returns {HTMLElement} + */ + _buildInput: function (field) { + const inputEl = document.createElement('we-input'); + inputEl.dataset.noPreview = 'true'; + inputEl.dataset.fieldName = field.name; + inputEl.dataset.addActionField = ''; + inputEl.setAttribute('string', field.string); + inputEl.classList.add('o_we_large_input'); + return inputEl; + }, + /** + * Returns a we-select element with field's records as it's options + * + * @private + * @param {Object} field + * @return {HTMLElement} + */ + _buildSelect: function (field) { + const selectEl = document.createElement('we-select'); + selectEl.dataset.noPreview = 'true'; + selectEl.dataset.fieldName = field.name; + selectEl.dataset.isSelect = 'true'; + selectEl.setAttribute('string', field.string); + if (!field.required) { + const noneButton = document.createElement('we-button'); + noneButton.textContent = 'None'; + noneButton.dataset.addActionField = 0; + selectEl.append(noneButton); + } + field.records.forEach(el => { + const button = document.createElement('we-button'); + button.textContent = el.display_name; + button.dataset.addActionField = el.id; + selectEl.append(button); + }); + return selectEl; + }, + /** + * Apply the model on the form changing it's fields + * + * @private + * @param {Integer} modelId + */ + _applyFormModel: async function (modelId) { + let oldFormInfo; + if (modelId) { + const oldFormKey = this.activeForm.website_form_key; + if (oldFormKey) { + oldFormInfo = FormEditorRegistry.get(oldFormKey); + } + this.$target.find('.s_website_form_field').remove(); + this.activeForm = _.findWhere(this.models, {id: modelId}); + } + const formKey = this.activeForm.website_form_key; + const formInfo = FormEditorRegistry.get(formKey); + // Success page + if (!this.$target[0].dataset.successMode) { + this.$target[0].dataset.successMode = 'redirect'; + } + if (this.$target[0].dataset.successMode === 'redirect') { + const currentSuccessPage = this.$target[0].dataset.successPage; + if (formInfo && formInfo.successPage) { + this.$target[0].dataset.successPage = formInfo.successPage; + } else if (!oldFormInfo || (oldFormInfo !== formInfo && oldFormInfo.successPage && currentSuccessPage === oldFormInfo.successPage)) { + this.$target[0].dataset.successPage = '/contactus-thank-you'; + } + } + // Model name + this.$target[0].dataset.model_name = this.activeForm.model; + // Load template + if (formInfo) { + const formatInfo = this._getDefaultFormat(); + await formInfo.formFields.forEach(async field => { + field.formatInfo = formatInfo; + await this._fetchFieldRecords(field); + this.$target.find('.s_website_form_submit, .s_website_form_recaptcha').first().before(this._renderField(field)); + }); + } + }, + /** + * Set the correct mark on all fields. + * + * @private + */ + _setLabelsMark: function () { + this.$target[0].querySelectorAll('.s_website_form_mark').forEach(el => el.remove()); + const mark = this._getMark(); + if (!mark) { + return; + } + let fieldsToMark = []; + const requiredSelector = '.s_website_form_model_required, .s_website_form_required'; + const fields = Array.from(this.$target[0].querySelectorAll('.s_website_form_field')); + if (this._isRequiredMark()) { + fieldsToMark = fields.filter(el => el.matches(requiredSelector)); + } else if (this._isOptionalMark()) { + fieldsToMark = fields.filter(el => !el.matches(requiredSelector)); + } + fieldsToMark.forEach(field => { + let span = document.createElement('span'); + span.classList.add('s_website_form_mark'); + span.textContent = ` ${mark}`; + field.querySelector('.s_website_form_label').appendChild(span); + }); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + */ + _onToggleEndMessageClick: function () { + this.showEndMessage = !this.showEndMessage; + this.updateUIEndMessage(); + this.trigger_up('activate_snippet', { + $snippet: this.showEndMessage ? this.$message : this.$target, + }); + }, +}); + +const authorizedFieldsCache = {}; + +options.registry.WebsiteFieldEditor = FieldEditor.extend({ + events: _.extend({}, FieldEditor.prototype.events, { + 'click we-button.o_we_select_remove_option': '_onRemoveItemClick', + 'click we-button.o_we_list_add_optional': '_onAddCustomItemClick', + 'click we-button.o_we_list_add_existing': '_onAddExistingItemClick', + 'click we-list we-select': '_onAddItemSelectClick', + 'input we-list input': '_onListItemInput', + }), + + /** + * @override + */ + init: function () { + this._super.apply(this, arguments); + this.rerender = true; + }, + /** + * @override + */ + willStart: async function () { + const _super = this._super.bind(this); + // Get the authorized existing fields for the form model + const model = this.formEl.dataset.model_name; + let getFields; + if (model in authorizedFieldsCache) { + getFields = authorizedFieldsCache[model]; + } else { + getFields = this._rpc({ + model: "ir.model", + method: "get_authorized_fields", + args: [model], + }); + authorizedFieldsCache[model] = getFields; + } + + this.existingFields = await getFields.then(fields => { + this.fields = _.each(fields, function (field, fieldName) { + field.name = fieldName; + field.domain = field.domain || []; + }); + // Create the buttons for the type we-select + return Object.keys(fields).map(key => { + const field = fields[key]; + const button = document.createElement('we-button'); + button.textContent = field.string; + button.dataset.existingField = field.name; + return button; + }).sort((a, b) => (a.textContent > b.textContent) ? 1 : (a.textContent < b.textContent) ? -1 : 0); + }); + return _super(...arguments); + }, + /** + * @override + */ + cleanForSave: function () { + this.$target[0].querySelectorAll('#editable_select').forEach(el => el.remove()); + const select = this._getSelect(); + if (select && this.listTable) { + select.style.display = ''; + select.innerHTML = ''; + // Rebuild the select from the we-list + this.listTable.querySelectorAll('input').forEach(el => { + const option = document.createElement('option'); + option.textContent = el.value; + option.value = this._isFieldCustom() ? el.value : el.name; + select.appendChild(option); + }); + } + }, + /** + * @override + */ + updateUI: async function () { + // See Form updateUI + if (this.rerender) { + const select = this._getSelect(); + if (select && !this.$target[0].querySelector('#editable_select')) { + select.style.display = 'none'; + const editableSelect = document.createElement('div'); + editableSelect.id = 'editable_select'; + editableSelect.classList = 'form-control s_website_form_input'; + select.parentElement.appendChild(editableSelect); + } + this.rerender = false; + await this._rerenderXML().then(() => this._renderList()); + return; + } + await this._super.apply(this, arguments); + }, + /** + * @override + */ + onFocus: function () { + // Other fields type might have change to an existing type. + // We need to reload the existing type list. + this.rerender = true; + }, + + //---------------------------------------------------------------------- + // Options + //---------------------------------------------------------------------- + + /** + * Replace the current field with the custom field selected. + */ + customField: async function (previewMode, value, params) { + // Both custom Field and existingField are called when selecting an option + // value is '' for the method that should not be called. + if (!value) { + return; + } + const name = this.el.querySelector(`[data-custom-field="${value}"]`).textContent; + const field = this._getCustomField(value, `Custom ${name}`); + this._setActiveProperties(field); + await this._replaceField(field); + this.rerender = true; + }, + /** + * Replace the current field with the existing field selected. + */ + existingField: async function (previewMode, value, params) { + // see customField + if (!value) { + return; + } + const field = Object.assign({}, this.fields[value]); + this._setActiveProperties(field); + await this._replaceField(field); + this.rerender = true; + }, + /** + * Set the name of the field on the label + */ + setLabelText: function (previewMode, value, params) { + this.$target.find('.s_website_form_label_content').text(value); + if (this._isFieldCustom()) { + const multiple = this.$target[0].querySelector('.s_website_form_multiple'); + if (multiple) { + multiple.dataset.name = value; + } + this.$target[0].querySelectorAll('.s_website_form_input').forEach(el => el.name = value); + } + }, + /* + * Set the placeholder of the input + */ + setPlaceholder: function (previewMode, value, params) { + this._setPlaceholder(value); + }, + /** + * Replace the field with the same field having the label in a different position. + */ + selectLabelPosition: async function (previewMode, value, params) { + const field = this._getActiveField(); + field.formatInfo.labelPosition = value; + await this._replaceField(field); + this.rerender = true; + }, + selectType: async function (previewMode, value, params) { + const field = this._getActiveField(); + field.type = value; + await this._replaceField(field); + }, + /** + * Select the display of the multicheckbox field (vertical & horizontal) + */ + multiCheckboxDisplay: function (previewMode, value, params) { + const target = this._getMultipleInputs(); + target.querySelectorAll('.checkbox, .radio').forEach(el => { + if (value === 'horizontal') { + el.classList.add('col-lg-4', 'col-md-6'); + } else { + el.classList.remove('col-lg-4', 'col-md-6'); + } + }); + target.dataset.display = value; + }, + /** + * Set the field as required or not + */ + toggleRequired: function (previewMode, value, params) { + const isRequired = this.$target[0].classList.contains(params.activeValue); + this.$target[0].classList.toggle(params.activeValue, !isRequired); + this.$target[0].querySelectorAll('input, select, textarea').forEach(el => el.toggleAttribute('required', !isRequired)); + this.trigger_up('option_update', { + optionName: 'WebsiteFormEditor', + name: 'field_mark', + }); + }, + + //---------------------------------------------------------------------- + // Private + //---------------------------------------------------------------------- + + /** + * @override + */ + _computeWidgetState: function (methodName, params) { + switch (methodName) { + case 'customField': + return this._isFieldCustom() ? this._getFieldType() : ''; + case 'existingField': + return this._isFieldCustom() ? '' : this._getFieldName(); + case 'setLabelText': + return this.$target.find('.s_website_form_label_content').text(); + case 'setPlaceholder': + return this._getPlaceholder(); + case 'selectLabelPosition': + return this._getLabelPosition(); + case 'selectType': + return this._getFieldType(); + case 'multiCheckboxDisplay': { + const target = this._getMultipleInputs(); + return target ? target.dataset.display : ''; + } + case 'toggleRequired': + return this.$target[0].classList.contains(params.activeValue) ? params.activeValue : 'false'; + } + return this._super(...arguments); + }, + /** + * @override + */ + _computeWidgetVisibility: function (widgetName, params) { + switch (widgetName) { + case 'char_input_type_opt': + return !this.$target[0].classList.contains('s_website_form_custom') && ['char', 'email', 'tel', 'url'].includes(this.$target[0].dataset.type); + case 'multi_check_display_opt': + return !!this._getMultipleInputs(); + case 'placeholder_opt': + return !!this._getPlaceholderInput(); + case 'required_opt': + case 'hidden_opt': + case 'type_opt': + return !this.$target[0].classList.contains('s_website_form_model_required'); + } + return this._super(...arguments); + }, + /** + * @override + */ + _renderCustomXML: function (uiFragment) { + const selectEl = uiFragment.querySelector('we-select[data-name="type_opt"]'); + const currentFieldName = this._getFieldName(); + const fieldsInForm = Array.from(this.formEl.querySelectorAll('.s_website_form_field:not(.s_website_form_custom) .s_website_form_input')).map(el => el.name).filter(el => el !== currentFieldName); + const availableFields = this.existingFields.filter(el => !fieldsInForm.includes(el.dataset.existingField)); + if (availableFields.length) { + const title = document.createElement('we-title'); + title.textContent = 'Existing fields'; + availableFields.unshift(title); + availableFields.forEach(option => selectEl.append(option.cloneNode(true))); + } + }, + /** + * Replace the target content with the field provided + * + * @private + * @param {Object} field + * @returns {Promise} + */ + _replaceField: async function (field) { + await this._fetchFieldRecords(field); + const htmlField = this._renderField(field); + [...this.$target[0].childNodes].forEach(node => node.remove()); + [...htmlField.childNodes].forEach(node => this.$target[0].appendChild(node)); + [...htmlField.attributes].forEach(el => this.$target[0].removeAttribute(el.nodeName)); + [...htmlField.attributes].forEach(el => this.$target[0].setAttribute(el.nodeName, el.nodeValue)); + }, + + /** + * To do after rerenderXML to add the list to the options + * + * @private + */ + _renderList: function () { + let addItemButton, addItemTitle, listTitle; + const select = this._getSelect(); + const multipleInputs = this._getMultipleInputs(); + this.listTable = document.createElement('table'); + const isCustomField = this._isFieldCustom(); + + if (select) { + listTitle = 'Options List'; + addItemTitle = 'Add new Option'; + select.querySelectorAll('option').forEach(opt => { + this._addItemToTable(opt.value, opt.textContent.trim()); + }); + this._renderListItems(); + } else if (multipleInputs) { + listTitle = multipleInputs.querySelector('.radio') ? 'Radio List' : 'Checkbox List'; + addItemTitle = 'Add new Checkbox'; + multipleInputs.querySelectorAll('.checkbox, .radio').forEach(opt => { + this._addItemToTable(opt.querySelector('input').value, opt.querySelector('.s_website_form_check_label').textContent.trim()); + }); + } else { + return; + } + + if (isCustomField) { + addItemButton = document.createElement('we-button'); + addItemButton.textContent = addItemTitle; + addItemButton.classList.add('o_we_list_add_optional'); + addItemButton.dataset.noPreview = 'true'; + } else { + addItemButton = document.createElement('we-select'); + addItemButton.classList.add('o_we_user_value_widget'); // Todo dont use user value widget class + const togglerEl = document.createElement('we-toggler'); + togglerEl.textContent = addItemTitle; + addItemButton.appendChild(togglerEl); + const selectMenuEl = document.createElement('we-selection-items'); + addItemButton.appendChild(selectMenuEl); + this._loadListDropdown(selectMenuEl); + } + const selectInputEl = document.createElement('we-list'); + const title = document.createElement('we-title'); + title.textContent = listTitle; + selectInputEl.appendChild(title); + const tableWrapper = document.createElement('div'); + tableWrapper.classList.add('oe_we_table_wraper'); + tableWrapper.appendChild(this.listTable); + selectInputEl.appendChild(tableWrapper); + selectInputEl.appendChild(addItemButton); + this.el.insertBefore(selectInputEl, this.el.querySelector('[data-set-placeholder]')); + this._makeListItemsSortable(); + }, + /** + * Load the dropdown of the list with the records missing from the list. + * + * @private + * @param {HTMLElement} selectMenu + */ + _loadListDropdown: function (selectMenu) { + selectMenu = selectMenu || this.el.querySelector('we-list we-selection-items'); + if (selectMenu) { + selectMenu.innerHTML = ''; + const field = Object.assign({}, this.fields[this._getFieldName()]); + this._fetchFieldRecords(field).then(() => { + let buttonItems; + const optionIds = Array.from(this.listTable.querySelectorAll('input')).map(opt => { + return field.type === 'selection' ? opt.name : parseInt(opt.name); + }); + const availableRecords = (field.records || []).filter(el => !optionIds.includes(el.id)); + if (availableRecords.length) { + buttonItems = availableRecords.map(el => { + const option = document.createElement('we-button'); + option.classList.add('o_we_list_add_existing'); + option.dataset.addOption = el.id; + option.dataset.noPreview = 'true'; + option.textContent = el.display_name; + return option; + }); + } else { + const title = document.createElement('we-title'); + title.textContent = 'No more records'; + buttonItems = [title]; + } + buttonItems.forEach(button => selectMenu.appendChild(button)); + }); + } + }, + /** + * @private + */ + _makeListItemsSortable: function () { + $(this.listTable).sortable({ + axis: 'y', + handle: '.o_we_drag_handle', + items: 'tr', + cursor: 'move', + opacity: 0.6, + stop: (event, ui) => { + this._renderListItems(); + }, + }); + }, + /** + * @private + * @param {string} id + * @param {string} text + */ + _addItemToTable: function (id, text) { + const isCustomField = this._isFieldCustom(); + const draggableEl = document.createElement('we-button'); + draggableEl.classList.add('o_we_drag_handle', 'o_we_link', 'fa', 'fa-fw', 'fa-arrows'); + draggableEl.dataset.noPreview = 'true'; + const inputEl = document.createElement('input'); + inputEl.type = 'text'; + if (text) { + inputEl.value = text; + } + if (!isCustomField && id) { + inputEl.name = id; + } + inputEl.disabled = !isCustomField; + const trEl = document.createElement('tr'); + const buttonEl = document.createElement('we-button'); + buttonEl.classList.add('o_we_select_remove_option', 'o_we_link', 'o_we_text_danger', 'fa', 'fa-fw', 'fa-minus'); + buttonEl.dataset.removeOption = id; + buttonEl.dataset.noPreview = 'true'; + const draggableTdEl = document.createElement('td'); + const inputTdEl = document.createElement('td'); + const buttonTdEl = document.createElement('td'); + draggableTdEl.appendChild(draggableEl); + trEl.appendChild(draggableTdEl); + inputTdEl.appendChild(inputEl); + trEl.appendChild(inputTdEl); + buttonTdEl.appendChild(buttonEl); + trEl.appendChild(buttonTdEl); + this.listTable.appendChild(trEl); + if (isCustomField) { + inputEl.focus(); + } + }, + /** + * Apply the we-list on the target and rebuild the input(s) + * + * @private + */ + _renderListItems: function () { + const multiInputsWrap = this._getMultipleInputs(); + const selectWrap = this.$target[0].querySelector('#editable_select'); + const isRequiredField = this._isFieldRequired(); + const name = this._getFieldName(); + if (multiInputsWrap) { + const type = multiInputsWrap.querySelector('.radio') ? 'radio' : 'checkbox'; + multiInputsWrap.innerHTML = ''; + const params = { + field: { + name: name, + id: Math.random().toString(36).substring(2, 15), // Big unique ID + required: isRequiredField, + formatInfo: { + multiPosition: multiInputsWrap.dataset.display, + } + } + }; + this._getListItems().forEach((record, idx) => { + params.record_index = idx; + params.record = record; + const template = document.createElement('template'); + template.innerHTML = qweb.render(`website_form.${type}`, params); + multiInputsWrap.appendChild(template.content.firstElementChild); + }); + } else if (selectWrap) { + selectWrap.innerHTML = ''; + this.listTable.querySelectorAll('input').forEach(el => { + const option = document.createElement('div'); + option.id = (el.name || el.value); + option.classList.add('s_website_form_select_item'); + option.textContent = el.value; + selectWrap.appendChild(option); + }); + } + }, + /** + * Returns an array based on the we-list containing the field's records + * + * @returns {Array} + */ + _getListItems: function () { + if (!this.listTable) { + return null; + } + const isCustomField = this._isFieldCustom(); + const records = []; + this.listTable.querySelectorAll('input').forEach(el => { + const id = isCustomField ? el.value : el.name; + records.push({ + id: id, + display_name: el.value, + }); + }); + return records; + }, + /** + * Returns the select element if it exist else null + * + * @private + * @returns {HTMLElement} + */ + _getSelect: function () { + return this.$target[0].querySelector('select'); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + * @param {Event} ev + */ + _onRemoveItemClick: function (ev) { + ev.target.closest('tr').remove(); + this._loadListDropdown(); + this._renderListItems(); + }, + /** + * @private + * @param {Event} ev + */ + _onAddCustomItemClick: function (ev) { + this._addItemToTable(); + this._makeListItemsSortable(); + this._renderListItems(); + }, + /** + * @private + * @param {Event} ev + */ + _onAddExistingItemClick: function (ev) { + const value = ev.currentTarget.dataset.addOption; + this._addItemToTable(value, ev.currentTarget.textContent); + this._makeListItemsSortable(); + this._loadListDropdown(); + this._renderListItems(); + }, + /** + * @private + * @param {Event} ev + */ + _onAddItemSelectClick: function (ev) { + ev.currentTarget.querySelector('we-toggler').classList.toggle('active'); + }, + /** + * @private + */ + _onListItemInput: function () { + this._renderListItems(); + }, +}); + +options.registry.AddFieldForm = FormEditor.extend({ + isTopOption: true, + + //-------------------------------------------------------------------------- + // Options + //-------------------------------------------------------------------------- + + /** + * Add a char field at the end of the form. + * New field is set as active + */ + addField: async function (previewMode, value, params) { + const field = this._getCustomField('char', 'Custom Text'); + field.formatInfo = this._getDefaultFormat(); + const htmlField = this._renderField(field); + this.$target.find('.s_website_form_submit, .s_website_form_recaptcha').first().before(htmlField); + this.trigger_up('activate_snippet', { + $snippet: $(htmlField), + }); + }, +}); + +options.registry.AddField = FieldEditor.extend({ + isTopOption: true, + + //-------------------------------------------------------------------------- + // Options + //-------------------------------------------------------------------------- + + /** + * Add a char field with active field properties after the active field. + * New field is set as active + */ + addField: async function (previewMode, value, params) { + this.trigger_up('option_update', { + optionName: 'WebsiteFormEditor', + name: 'add_field', + data: { + formatInfo: this._getFieldFormat(), + $target: this.$target, + }, + }); + }, +}); + +// Superclass for options that need to disable a button from the snippet overlay +const DisableOverlayButtonOption = options.Class.extend({ + // Disable a button of the snippet overlay + disableButton: function (buttonName, message) { + // TODO refactor in master + const className = 'oe_snippet_' + buttonName; + this.$overlay.add(this.$overlay.data('$optionsSection')).on('click', '.' + className, this.preventButton); + const $button = this.$overlay.add(this.$overlay.data('$optionsSection')).find('.' + className); + $button.attr('title', message).tooltip({delay: 0}); + $button.removeClass(className); // Disable the functionnality + }, + + preventButton: function (event) { + // Snippet options bind their functions before the editor, so we + // can't cleanly unbind the editor onRemove function from here + event.preventDefault(); + event.stopImmediatePropagation(); + } +}); + +// Disable duplicate button for model fields +options.registry.WebsiteFormFieldModel = DisableOverlayButtonOption.extend({ + start: function () { + this.disableButton('clone', _t('You can\'t duplicate a model field.')); + return this._super.apply(this, arguments); + } +}); + +// Disable delete button for model required fields +options.registry.WebsiteFormFieldRequired = DisableOverlayButtonOption.extend({ + start: function () { + this.disableButton('remove', _t('You can\'t remove a field that is required by the model itself.')); + return this._super.apply(this, arguments); + } +}); + +// Disable delete and duplicate button for submit +options.registry.WebsiteFormSubmitRequired = DisableOverlayButtonOption.extend({ + start: function () { + this.disableButton('remove', _t('You can\'t remove the submit button of the form')); + this.disableButton('clone', _t('You can\'t duplicate the submit button of the form.')); + return this._super.apply(this, arguments); + } +}); +}); diff --git a/addons/website_form/static/src/xml/website_form.xml b/addons/website_form/static/src/xml/website_form.xml new file mode 100644 index 00000000..9c1390c7 --- /dev/null +++ b/addons/website_form/static/src/xml/website_form.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<templates xml:space="preserve"> + + <!-- Success status --> + <t t-name="website_form.status_success"> + <span id="s_website_form_result" class="text-success ml8"> + <i class="fa fa-check mr4" role="img" aria-label="Success" title="Success"/>The form has been sent successfully. + </span> + </t> + + <!-- Error status --> + <t t-name="website_form.status_error"> + <span id="s_website_form_result" class="text-danger ml8"> + <i class="fa fa-close mr4" role="img" aria-label="Error" title="Error"/> + <t t-esc="message"/> + </span> + </t> +</templates> diff --git a/addons/website_form/static/src/xml/website_form_editor.xml b/addons/website_form/static/src/xml/website_form_editor.xml new file mode 100644 index 00000000..1450fb8c --- /dev/null +++ b/addons/website_form/static/src/xml/website_form_editor.xml @@ -0,0 +1,363 @@ +<?xml version="1.0" encoding="UTF-8"?> +<templates xml:space="preserve"> + + <!-- End Message --> + <t t-name="website_form.s_website_form_end_message"> + <div class="s_website_form_end_message d-none"> + <div class="oe_structure"> + <section class="s_text_block pt64 pb64 o_colored_level o_cc o_cc2" data-snippet="s_text_block"> + <div class="container"> + <h2 class="text-center"> + <span class="fa fa-check-circle"/> + Thank You For Your Feedback + </h2> + <p class="text-center"> + Our team will message you back as soon as possible.<br/> + In the meantime we invite you to visit our <a href="/">website</a>.<br/> + </p> + </div> + </section> + </div> + </div> + </t> + + <t t-name="webite_form.s_website_form_recaptcha_legal"> + <div class="col-12 s_website_form_recaptcha" data-name="Recaptcha Legal"> + <div t-attf-style="width: #{labelWidth or '200px'}" class="s_website_form_label"/> + <div class="col-sm"> + <t t-call="google_recaptcha.recaptcha_legal_terms"/> + </div> + </div> + </t> + + <!-- Generic Field Layout --> + <!-- Changes made here needs to be reflected in the different Form view (Contact Us, Jobs, ...) --> + <t t-name="website_form.field"> + <div t-attf-class="form-group s_website_form_field #{field.formatInfo.col or 'col-12'} #{field.custom and 's_website_form_custom' or ''} #{(field.required and 's_website_form_required' or '') or (field.modelRequired and 's_website_form_model_required' or '')} #{field.hidden and 's_website_form_field_hidden' or ''} #{field.dnone and 's_website_form_dnone' or ''}" + t-att-data-type="field.type" + data-name="Field"> + <div t-if="field.formatInfo.labelPosition != 'none' and field.formatInfo.labelPosition != 'top'" class="row s_col_no_resize s_col_no_bgcolor"> + <label t-attf-class="#{!field.isCheck and 'col-form-label' or ''} col-sm-auto s_website_form_label #{field.formatInfo.labelPosition == 'right' and 'text-right' or ''}" t-attf-style="width: #{field.formatInfo.labelWidth or '200px'}" t-att-for="field.id"> + <t t-call="website_form.label_content"/> + </label> + <div class="col-sm"> + <t t-raw="0"/> + </div> + </div> + <t t-else=""> + <label t-attf-class="s_website_form_label #{field.formatInfo.labelPosition == 'none' and 'd-none' or ''}" t-attf-style="width: #{field.formatInfo.labelWidth or '200px'}" t-att-for="field.id"> + <t t-call="website_form.label_content"/> + </label> + <t t-raw="0"/> + </t> + </div> + </t> + + <t t-name="website_form.label_content"> + <t t-if="field.custom" t-set="field.string" t-value="field.name"/> + <span class="s_website_form_label_content" t-esc="field.string"/> + <t t-if="field.required or field.modelRequired"> + <span class="s_website_form_mark" t-if="field.formatInfo.requiredMark" t-esc="' ' + field.formatInfo.mark"/> + </t> + <t t-else=""> + <span class="s_website_form_mark" t-if="field.formatInfo.optionalMark" t-esc="' ' + field.formatInfo.mark"/> + </t> + <span t-if="['email_cc', 'email_to'].includes(field.name)" title="Separate email addresses with a comma."> + <i class="fa fa-info-circle"/> + </span> + </t> + + <!-- Hidden Field --> + <t t-name="website_form.field_hidden"> + <t t-set="field.dnone" t-value="true"/> + <t t-set="field.formatInfo" t-value="{}"/> + <t t-call="website_form.field"> + <input + type="hidden" + class="form-control s_website_form_input" + t-att-name="field.name" + t-att-value="field.value" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Char Field --> + <t t-name="website_form.field_char"> + <t t-call="website_form.field"> + <input + t-att-type="field.inputType || 'text'" + class="form-control s_website_form_input" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-value="field.value" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Email Field --> + <t t-name="website_form.field_email"> + <t t-set="field.inputType" t-value="'email'"/> + <t t-call="website_form.field_char"/> + </t> + + <!-- Telephone Field --> + <t t-name="website_form.field_tel"> + <t t-set="field.inputType" t-value="'tel'"/> + <t t-call="website_form.field_char"/> + </t> + + <!-- Url Field --> + <t t-name="website_form.field_url"> + <t t-set="field.inputType" t-value="'url'"/> + <t t-call="website_form.field_char"/> + </t> + + <!-- Text Field --> + <t t-name="website_form.field_text"> + <t t-call="website_form.field"> + <textarea + class="form-control s_website_form_input" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + t-att-rows="field.rows || 3" + /> + </t> + </t> + + <!-- HTML Field --> + <t t-name="website_form.field_html"> + <!-- + Maybe use web_editor ? Not sure it actually makes + sense to have random people editing html in a form... + --> + <t t-call="website_form.field_text"/> + </t> + + <!-- Integer Field --> + <t t-name="website_form.field_integer"> + <t t-call="website_form.field"> + <input + type="number" + class="form-control s_website_form_input" + t-att-name="field.name" + step="1" + t-att-required="field.required || field.modelRequired || None" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Float Field --> + <t t-name="website_form.field_float"> + <t t-call="website_form.field"> + <input + type="number" + class="form-control s_website_form_input" + t-att-name="field.name" + step="any" + t-att-required="field.required || field.modelRequired || None" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Date Field --> + <t t-name="website_form.field_date"> + <t t-call="website_form.field"> + <t t-set="datepickerID" t-value="'datepicker' + Math.random().toString().substring(2)"/> + <div class="s_website_form_date input-group date" t-att-id="datepickerID" data-target-input="nearest"> + <input + type="text" + class="form-control datetimepicker-input s_website_form_input" + t-attf-data-target="##{datepickerID}" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + /> + <div class="input-group-append" t-attf-data-target="##{datepickerID}" data-toggle="datetimepicker"> + <div class="input-group-text"><i class="fa fa-calendar"></i></div> + </div> + </div> + </t> + </t> + + <!-- Datetime Field --> + <t t-name="website_form.field_datetime"> + <t t-call="website_form.field"> + <t t-set="datetimepickerID" t-value="'datetimepicker' + Math.random().toString().substring(2)"/> + <div class="s_website_form_datetime input-group date" t-att-id="datetimepickerID" data-target-input="nearest"> + <input + type="text" + class="form-control datetimepicker-input s_website_form_input" + t-attf-data-target="##{datetimepickerID}" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-placeholder="field.placeholder" + t-att-id="field.id" + /> + <div class="input-group-append" t-attf-data-target="##{datetimepickerID}" data-toggle="datetimepicker"> + <div class="input-group-text"><i class="fa fa-calendar"></i></div> + </div> + </div> + </t> + </t> + + <!-- Boolean Field --> + <t t-name="website_form.field_boolean"> + <t t-set="field.isCheck" t-value="true"/> + <t t-call="website_form.field"> + <input + type="checkbox" + value="Yes" + class="s_website_form_input" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Selection Field --> + <t t-name="website_form.field_selection"> + <t t-set="field.isCheck" t-value="true"/> + <t t-call="website_form.field"> + <div class="row s_col_no_resize s_col_no_bgcolor s_website_form_multiple" t-att-data-name="field.name" t-att-data-display="field.formatInfo.multiPosition"> + <t t-if="!field.records"> + <input + class="s_website_form_input" + t-att-name="field.name" + t-att-value="record.id" + t-att-required="field.required || field.modelRequired || None" + placeholder="No matching record !" + /> + </t> + <t t-foreach="field.records" t-as="record"> + <t t-call="website_form.radio"/> + </t> + </div> + </t> + </t> + + <!-- Radio --> + <t t-name="website_form.radio"> + <t t-set="recordId" t-value="field.id + record_index"/> + <div t-attf-class="radio col-12 #{field.formatInfo.multiPosition === 'horizontal' and 'col-lg-4 col-md-6' or ''}"> + <div class="form-check"> + <input + type="radio" + class="s_website_form_input form-check-input" + t-att-id="recordId" + t-att-name="field.name" + t-att-value="record.id" + t-att-required="field.required || field.modelRequired || None" + /> + <label class="form-check-label s_website_form_check_label" t-att-for="recordId"> + <t t-esc="record.display_name"/> + </label> + </div> + </div> + </t> + + <!-- Many2One Field --> + <t t-name="website_form.field_many2one"> + <!-- Binary one2many --> + <t t-if="field.relation == 'ir.attachment'"> + <t t-call="website_form.field_binary"/> + </t> + <!-- Generic one2many --> + <t t-if="field.relation != 'ir.attachment'"> + <t t-call="website_form.field"> + <select class="form-control s_website_form_input" t-att-name="field.name" t-att-required="field.required || field.modelRequired || None" t-att-id="field.id"> + <t t-foreach="field.records" t-as="record"> + <option t-att-value="record.id" t-att-selected="record.selected"> + <t t-esc="record.display_name"/> + </option> + </t> + </select> + </t> + </t> + </t> + + <!-- One2Many Field --> + <t t-name="website_form.field_one2many"> + <!-- Binary one2many --> + <t t-if="field.relation == 'ir.attachment'"> + <t t-call="website_form.field_binary"> + <t t-set="multiple" t-value="1"/> + </t> + </t> + <!-- Generic one2many --> + <t t-if="field.relation != 'ir.attachment'"> + <t t-set="field.isCheck" t-value="true"/> + <t t-call="website_form.field"> + <div class="row s_col_no_resize s_col_no_bgcolor s_website_form_multiple" t-att-data-name="field.name" t-att-data-display="field.formatInfo.multiPosition"> + <t t-if="!field.records"> + <input + class="s_website_form_input" + t-att-name="field.name" + t-att-value="record.id" + t-att-required="field.required || field.modelRequired || None" + placeholder="No matching record !" + /> + </t> + <t t-foreach="field.records" t-as="record"> + <t t-call="website_form.checkbox"/> + </t> + </div> + </t> + </t> + </t> + + <!-- Checkbox --> + <t t-name="website_form.checkbox"> + <t t-set="recordId" t-value="field.id + record_index"/> + <div t-attf-class="checkbox col-12 #{field.formatInfo.multiPosition === 'horizontal' and 'col-lg-4 col-md-6' or ''}"> + <div class="form-check"> + <input + type="checkbox" + class="s_website_form_input form-check-input" + t-att-id="recordId" + t-att-name="field.name" + t-att-value="record.id" + t-att-required="field.required || field.modelRequired || None" + /> + <label class="form-check-label s_website_form_check_label" t-att-for="recordId"> + <t t-esc="record.display_name"/> + </label> + </div> + </div> + </t> + + <!-- Many2Many Field --> + <t t-name="website_form.field_many2many"> + <t t-call="website_form.field_one2many"/> + </t> + + <!-- Binary Field --> + <t t-name="website_form.field_binary"> + <t t-set="field.isCheck" t-value="true"/> + <t t-call="website_form.field"> + <input + type="file" + class="form-control-file s_website_form_input" + t-att-name="field.name" + t-att-required="field.required || field.modelRequired || None" + t-att-multiple="multiple" + t-att-id="field.id" + /> + </t> + </t> + + <!-- Monetary Field --> + <t t-name="website_form.field_monetary"> + <t t-call="website_form.field_float" /> + </t> +</templates> diff --git a/addons/website_form/static/tests/tours/website_form_editor.js b/addons/website_form/static/tests/tours/website_form_editor.js new file mode 100644 index 00000000..97708dcc --- /dev/null +++ b/addons/website_form/static/tests/tours/website_form_editor.js @@ -0,0 +1,438 @@ +odoo.define('website_form_editor.tour', function (require) { + 'use strict'; + + const rpc = require('web.rpc'); + const tour = require("web_tour.tour"); + + const selectButtonByText = function (text) { + return [{ + content: "Open the select", + trigger: `we-select:has(we-button:contains("${text}")) we-toggler`, + }, + { + content: "Click on the option", + trigger: `we-select we-button:contains("${text}")`, + }]; + }; + const selectButtonByData = function (data) { + return [{ + content: "Open the select", + trigger: `we-select:has(we-button[${data}]) we-toggler`, + }, { + content: "Click on the option", + trigger: `we-select we-button[${data}]`, + }]; + }; + const addField = function (data, name, type, label, required, hidden) { + const ret = [{ + content: "Select form", + extra_trigger: '.s_website_form_field', + trigger: 'section.s_website_form', + }, { + content: "Add field", + trigger: 'we-button[data-add-field]', + }, + ...selectButtonByData(data), + { + content: "Wait for field to load", + trigger: `.s_website_form_field[data-type="${name}"], .s_website_form_input[name="${name}"]`, //custom or existing field + run: function () {}, + }]; + let testText = '.s_website_form_field'; + if (required) { + testText += '.s_website_form_required'; + ret.push({ + content: "Mark the field as required", + trigger: 'we-button[data-name="required_opt"] we-checkbox', + }); + } + if (hidden) { + testText += '.s_website_form_field_hidden'; + ret.push({ + content: "Mark the field as hidden", + trigger: 'we-button[data-name="hidden_opt"] we-checkbox', + }); + } + if (label) { + testText += `:has(label:contains("${label}"))`; + ret.push({ + content: "Change the label text", + trigger: 'we-input[data-set-label-text] input', + run: `text ${label}`, + }); + } + if (type !== 'checkbox' && type !== 'radio' && type !== 'select') { + let inputType = type === 'textarea' ? type : `input[type="${type}"]`; + testText += `:has(${inputType}[name="${name}"]${required ? '[required]' : ''})`; + } + ret.push({ + content: "Check the resulting field", + trigger: testText, + run: function () {}, + }); + return ret; + }; + const addCustomField = function (name, type, label, required, hidden) { + return addField(`data-custom-field="${name}"`, name, type, label, required, hidden); + }; + const addExistingField = function (name, type, label, required, hidden) { + return addField(`data-existing-field="${name}"`, name, type, label, required, hidden); + }; + + tour.register("website_form_editor_tour", { + test: true, + }, [ + // Drop a form builder snippet and configure it + { + content: "Enter edit mode", + trigger: 'a[data-action=edit]', + }, { + content: "Drop the form snippet", + trigger: '#oe_snippets .oe_snippet:has(.s_website_form) .oe_snippet_thumbnail', + run: 'drag_and_drop #wrap', + }, { + content: "Check dropped snippet and select it", + extra_trigger: '.s_website_form_field', + trigger: 'section.s_website_form', + }, + ...selectButtonByText('Send an E-mail'), + { + content: "Form has a model name", + trigger: 'section.s_website_form form[data-model_name="mail.mail"]', + }, { + content: "Complete Recipient E-mail", + trigger: '[data-field-name="email_to"] input', + run: 'text_blur test@test.test', + }, + ...addExistingField('date', 'text', 'Test Date', true), + + ...addExistingField('record_name', 'text', 'Awesome Label', false, true), + + ...addExistingField('body_html', 'textarea', 'Your Message', true), + + ...addExistingField('recipient_ids', 'checkbox'), + + ...addCustomField('one2many', 'checkbox', 'Products', true), + { + content: "Change Option 1 label", + trigger: 'we-list table input:eq(0)', + run: 'text Iphone', + }, { + content: "Change Option 2 label", + trigger: 'we-list table input:eq(1)', + run: 'text Galaxy S', + }, { + content: "Change first Option 3 label", + trigger: 'we-list table input:eq(2)', + run: 'text Xperia', + }, { + content: "Click on Add new Checkbox", + trigger: 'we-list we-button.o_we_list_add_optional', + }, { + content: "Change added Option label", + trigger: 'we-list table input:eq(3)', + run: 'text Wiko Stairway', + }, { + content: "Check the resulting field", + trigger: ".s_website_form_field.s_website_form_custom.s_website_form_required" + + ":has(.s_website_form_multiple[data-display='horizontal'])" + + ":has(.checkbox:has(label:contains('Iphone')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Galaxy S')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Xperia')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Wiko Stairway')):has(input[type='checkbox'][required]))", + run: function () {}, + }, + ...selectButtonByData('data-multi-checkbox-display="vertical"'), + { + content: "Check the resulting field", + trigger: ".s_website_form_field.s_website_form_custom.s_website_form_required" + + ":has(.s_website_form_multiple[data-display='vertical'])" + + ":has(.checkbox:has(label:contains('Iphone')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Galaxy S')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Xperia')):has(input[type='checkbox'][required]))" + + ":has(.checkbox:has(label:contains('Wiko Stairway')):has(input[type='checkbox'][required]))", + run: function () {}, + }, + + ...addCustomField('selection', 'radio', 'Service', true), + { + content: "Change Option 1 label", + trigger: 'we-list table input:eq(0)', + run: 'text After-sales Service', + }, { + content: "Change Option 2 label", + trigger: 'we-list table input:eq(1)', + run: 'text Invoicing Service', + }, { + content: "Change first Option 3 label", + trigger: 'we-list table input:eq(2)', + run: 'text Development Service', + }, { + content: "Click on Add new Checkbox", + trigger: 'we-list we-button.o_we_list_add_optional', + }, { + content: "Change last Option label", + trigger: 'we-list table input:eq(3)', + run: 'text Management Service', + }, { + content: "Mark the field as not required", + trigger: 'we-button[data-name="required_opt"] we-checkbox', + }, { + content: "Check the resulting field", + trigger: ".s_website_form_field.s_website_form_custom:not(.s_website_form_required)" + + ":has(.radio:has(label:contains('After-sales Service')):has(input[type='radio']:not([required])))" + + ":has(.radio:has(label:contains('Invoicing Service')):has(input[type='radio']:not([required])))" + + ":has(.radio:has(label:contains('Development Service')):has(input[type='radio']:not([required])))" + + ":has(.radio:has(label:contains('Management Service')):has(input[type='radio']:not([required])))", + run: function () {}, + }, + + ...addCustomField('many2one', 'select', 'State', true), + + // Customize custom selection field + { + content: "Change Option 1 Label", + trigger: 'we-list table input:eq(0)', + run: 'text Germany', + }, { + content: "Change Option 2 Label", + trigger: 'we-list table input:eq(1)', + run: 'text Belgium', + }, { + content: "Change first Option 3 label", + trigger: 'we-list table input:eq(2)', + run: 'text France', + }, { + content: "Click on Add new Checkbox", + trigger: 'we-list we-button.o_we_list_add_optional', + }, { + content: "Change last Option label", + trigger: 'we-list table input:eq(3)', + run: 'text Canada', + }, { + content: "Remove Germany Option", + trigger: '.o_we_select_remove_option:eq(0)', + }, { + content: "Check the resulting snippet", + trigger: ".s_website_form_field.s_website_form_custom.s_website_form_required" + + ":has(label:contains('State'))" + + ":has(select[required]:hidden)" + + ":has(.s_website_form_select_item:contains('Belgium'))" + + ":has(.s_website_form_select_item:contains('France'))" + + ":has(.s_website_form_select_item:contains('Canada'))" + + ":not(:has(.s_website_form_select_item:contains('Germany')))", + run: function () {}, + }, + + ...addExistingField('attachment_ids', 'file', 'Invoice Scan'), + + // Edit the submit button using linkDialog. + { + content: "Double click submit button to edit it", + trigger: '.s_website_form_send', + run: 'dblclick', + }, { + content: "Check that no URL field is suggested", + trigger: 'form:has(#o_link_dialog_label_input:hidden)', + run: () => null, + }, { + content: "Check that preview element has the same style", + trigger: '.o_link_dialog_preview:has(.s_website_form_send.btn.btn-lg.btn-primary)', + run: () => null, + }, { + content: "Change button's style", + trigger: 'label:has(input[name="link_style_color"][value="secondary"])', + run: () => { + $('input[name="link_style_color"][value="secondary"]').click(); + $('select[name="link_style_shape"]').val('rounded-circle').change(); + $('select[name="link_style_size"]').val('sm').change(); + }, + }, { + content: "Check that preview is updated too", + trigger: '.o_link_dialog_preview:has(.s_website_form_send.btn.btn-sm.btn-secondary.rounded-circle)', + run: () => null, + }, { + content: "Save changes from linkDialog", + trigger: '.modal-footer .btn-primary', + }, { + content: "Check the resulting button", + trigger: '.s_website_form_send.btn.btn-sm.btn-secondary.rounded-circle', + run: () => null, + }, + // Save the page + { + trigger: 'body', + run: function () { + $('body').append('<div id="completlyloaded"></div>'); + }, + }, + { + content: "Save the page", + trigger: "button[data-action=save]", + }, + { + content: "Wait reloading...", + trigger: "html:not(:has(#completlyloaded)) div", + } + ]); + + tour.register("website_form_editor_tour_submit", { + test: true, + },[ + { + content: "Try to send empty form", + extra_trigger: "form[data-model_name='mail.mail']" + + "[data-success-page='/contactus-thank-you']" + + ":has(.s_website_form_field:has(label:contains('Your Name')):has(input[type='text'][name='Your Name'][required]))" + + ":has(.s_website_form_field:has(label:contains('Email')):has(input[type='email'][name='email_from'][required]))" + + ":has(.s_website_form_field:has(label:contains('Your Question')):has(textarea[name='Your Question'][required]))" + + ":has(.s_website_form_field:has(label:contains('Subject')):has(input[type='text'][name='subject'][required]))" + + ":has(.s_website_form_field:has(label:contains('Test Date')):has(input[type='text'][name='date'][required]))" + + ":has(.s_website_form_field:has(label:contains('Awesome Label')):hidden)" + + ":has(.s_website_form_field:has(label:contains('Your Message')):has(textarea[name='body_html'][required]))" + + ":has(.s_website_form_field:has(label:contains('Products')):has(input[type='checkbox'][name='Products'][value='Iphone'][required]))" + + ":has(.s_website_form_field:has(label:contains('Products')):has(input[type='checkbox'][name='Products'][value='Galaxy S'][required]))" + + ":has(.s_website_form_field:has(label:contains('Products')):has(input[type='checkbox'][name='Products'][value='Xperia'][required]))" + + ":has(.s_website_form_field:has(label:contains('Products')):has(input[type='checkbox'][name='Products'][value='Wiko Stairway'][required]))" + + ":has(.s_website_form_field:has(label:contains('Service')):has(input[type='radio'][name='Service'][value='After-sales Service']:not([required])))" + + ":has(.s_website_form_field:has(label:contains('Service')):has(input[type='radio'][name='Service'][value='Invoicing Service']:not([required])))" + + ":has(.s_website_form_field:has(label:contains('Service')):has(input[type='radio'][name='Service'][value='Development Service']:not([required])))" + + ":has(.s_website_form_field:has(label:contains('Service')):has(input[type='radio'][name='Service'][value='Management Service']:not([required])))" + + ":has(.s_website_form_field:has(label:contains('State')):has(select[name='State'][required]:has(option[value='Belgium'])))" + + ":has(.s_website_form_field.s_website_form_required:has(label:contains('State')):has(select[name='State'][required]:has(option[value='France'])))" + + ":has(.s_website_form_field:has(label:contains('State')):has(select[name='State'][required]:has(option[value='Canada'])))" + + ":has(.s_website_form_field:has(label:contains('Invoice Scan')))" + + ":has(.s_website_form_field:has(input[name='email_to'][value='test@test.test']))", + trigger: ".s_website_form_send" + }, + { + content: "Check if required fields were detected and complete the Subject field", + extra_trigger: "form:has(#s_website_form_result.text-danger)" + + ":has(.s_website_form_field:has(label:contains('Your Name')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Email')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Question')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Subject')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Test Date')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Message')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Products')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Service')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('State')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Invoice Scan')):not(.o_has_error))", + trigger: "input[name=subject]", + run: "text Jane Smith" + }, + { + content: "Update required field status by trying to Send again", + trigger: ".s_website_form_send" + }, + { + content: "Check if required fields were detected and complete the Message field", + extra_trigger: "form:has(#s_website_form_result.text-danger)" + + ":has(.s_website_form_field:has(label:contains('Your Name')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Email')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Question')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Subject')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Test Date')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Message')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Products')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Service')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('State')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Invoice Scan')):not(.o_has_error))", + trigger: "textarea[name=body_html]", + run: "text A useless message" + }, + { + content: "Update required field status by trying to Send again", + trigger: ".s_website_form_send" + }, + { + content: "Check if required fields was detected and check a product. If this fails, you probably broke the cleanForSave.", + extra_trigger: "form:has(#s_website_form_result.text-danger)" + + ":has(.s_website_form_field:has(label:contains('Your Name')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Email')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Question')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Subject')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Test Date')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Your Message')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Products')).o_has_error)" + + ":has(.s_website_form_field:has(label:contains('Service')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('State')):not(.o_has_error))" + + ":has(.s_website_form_field:has(label:contains('Invoice Scan')):not(.o_has_error))", + trigger: "input[name=Products][value='Wiko Stairway']" + }, + { + content: "Complete Date field", + trigger: ".s_website_form_datetime [data-toggle='datetimepicker']", + }, + { + content: "Check another product", + trigger: "input[name='Products'][value='Xperia']" + }, + { + content: "Check a service", + trigger: "input[name='Service'][value='Development Service']" + }, + { + content: "Complete Your Name field", + trigger: "input[name='Your Name']", + run: "text chhagan" + }, + { + content: "Complete Email field", + trigger: "input[name=email_from]", + run: "text test@mail.com" + }, + { + content: "Complete Subject field", + trigger: 'input[name="subject"]', + run: 'text subject', + }, + { + content: "Complete Your Question field", + trigger: "textarea[name='Your Question']", + run: "text magan" + }, + { + content: "Send the form", + trigger: ".s_website_form_send" + }, + { + content: "Check form is submitted without errors", + trigger: "#wrap:has(h1:contains('Thank You!'))" + } + ]); + + tour.register("website_form_editor_tour_results", { + test: true, + }, [ + { + content: "Check mail.mail records have been created", + trigger: "body", + run: function () { + var mailDef = rpc.query({ + model: 'mail.mail', + method: 'search_count', + args: [[ + ['email_to', '=', 'test@test.test'], + ['body_html', 'like', 'A useless message'], + ['body_html', 'like', 'Service : Development Service'], + ['body_html', 'like', 'State : Belgium'], + ['body_html', 'like', 'Products : Xperia,Wiko Stairway'] + ]], + }); + var success = function(model, count) { + if (count > 0) { + $('body').append('<div id="website_form_editor_success_test_tour_'+model+'"></div>'); + } + }; + mailDef.then(_.bind(success, this, 'mail_mail')); + } + }, + { + content: "Check mail.mail records have been created", + trigger: "#website_form_editor_success_test_tour_mail_mail" + } + ]); + + return {}; +}); diff --git a/addons/website_form/tests/__init__.py b/addons/website_form/tests/__init__.py new file mode 100644 index 00000000..b7c97e7f --- /dev/null +++ b/addons/website_form/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import test_website_form_editor
\ No newline at end of file diff --git a/addons/website_form/tests/test_website_form_editor.py b/addons/website_form/tests/test_website_form_editor.py new file mode 100644 index 00000000..0bb993cb --- /dev/null +++ b/addons/website_form/tests/test_website_form_editor.py @@ -0,0 +1,12 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +# -*- coding: utf-8 -*- + +import odoo.tests + + +@odoo.tests.tagged('post_install','-at_install') +class TestWebsiteFormEditor(odoo.tests.HttpCase): + def test_tour(self): + self.start_tour("/", 'website_form_editor_tour', login="admin") + self.start_tour("/", 'website_form_editor_tour_submit') + self.start_tour("/", 'website_form_editor_tour_results', login="admin") diff --git a/addons/website_form/views/assets.xml b/addons/website_form/views/assets.xml new file mode 100644 index 00000000..b5433e0d --- /dev/null +++ b/addons/website_form/views/assets.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <template id="assets_editor" name="Website Form Editor Assets Editor" inherit_id="website.assets_editor"> + <xpath expr="." position="inside"> + <link rel="stylesheet" type="text/scss" href="/website_form/static/src/scss/wysiwyg_snippets.scss"/> + <script type="text/javascript" src="/website_form/static/src/snippets/s_website_form/options.js"/> + <script type="text/javascript" src="/website_form/static/src/js/website_form_editor_registry.js"/> + </xpath> + </template> + + <template id="assets_tests" name="Website Form Assets Tests" inherit_id="web.assets_tests"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/website_form/static/tests/tours/website_form_editor.js"/> + </xpath> + </template> + </data> +</odoo> diff --git a/addons/website_form/views/ir_model_views.xml b/addons/website_form/views/ir_model_views.xml new file mode 100644 index 00000000..78c27f94 --- /dev/null +++ b/addons/website_form/views/ir_model_views.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <record id="ir_model_view" model="ir.ui.view"> + <field name="name">website_form_editor.ir.model.view.form</field> + <field name="model">ir.model</field> + <field name="inherit_id" ref="base.view_model_form"/> + <field name="arch" type="xml"> + <xpath expr="//notebook" position="inside"> + <page string="Website Forms" name="website_forms"> + <group> + <field name="website_form_access"/> + <field name="website_form_label"/> + <field name="website_form_default_field_id"/> + </group> + </page> + </xpath> + + <xpath expr="//page[@name='base']/group/group/field[@name='translate']" position="after"> + <field name="website_form_blacklisted"/> + </xpath> + </field> + </record> + + <record id="ir_model_fields_view" model="ir.ui.view"> + <field name="name">website_form_editor.ir.model.fields.view.form</field> + <field name="model">ir.model.fields</field> + <field name="inherit_id" ref="base.view_model_fields_form"/> + <field name="arch" type="xml"> + <xpath expr="//field[@name='translate']" position="after"> + <field name="website_form_blacklisted"/> + </xpath> + </field> + </record> + + +</odoo> diff --git a/addons/website_form/views/snippets/s_website_form.xml b/addons/website_form/views/snippets/s_website_form.xml new file mode 100644 index 00000000..a64571c0 --- /dev/null +++ b/addons/website_form/views/snippets/s_website_form.xml @@ -0,0 +1,162 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="s_website_form" name="Form"> + <section class="s_website_form pt16 pb16" data-vcss="001" data-snippet="s_website_form"> + <div class="container"> + <form action="/website_form/" method="post" enctype="multipart/form-data" class="o_mark_required" data-mark="*"> + <div class="s_website_form_rows row s_col_no_bgcolor"> + <div class="form-group col-12 s_website_form_submit" data-name="Submit Button"> + <div style="width: 200px;" class="s_website_form_label"/> + <a href="#" role="button" class="btn btn-primary btn-lg s_website_form_send">Submit</a> + <span id="s_website_form_result"></span> + </div> + </div> + </form> + </div> + </section> +</template> + +<template id="s_website_form_options" inherit_id="website.snippet_options"> + <!-- Extend drop locations to columns --> + <xpath expr="//t[@t-set='so_content_addition_selector']" position="inside">, .s_website_form</xpath> + + <xpath expr="//div" position="after"> + <!-- Form --> + <div data-js="WebsiteFormEditor" data-selector=".s_website_form" data-target="form"> + <we-select string="Marked Fields" data-name="field_mark_select"> + <we-button data-select-class="">None</we-button> + <we-button data-select-class="o_mark_required" data-name="form_required_opt">Required</we-button> + <we-button data-select-class="o_mark_optional" data-name="form_optional_opt">Optional</we-button> + </we-select> + <we-input string="Mark Text" data-set-mark="" data-dependencies="form_required_opt, form_optional_opt"/> + <we-input string="Labels Width" + data-select-style="" data-css-property="width" + data-unit="px" data-apply-to=".s_website_form_label"/> + <we-row> + <we-select string="On Success" data-no-preview="true"> + <we-button data-on-success="nothing">Nothing</we-button> + <we-button data-on-success="redirect" data-name="show_redirect_opt">Redirect</we-button> + <we-button data-on-success="message" data-name="show_message_opt">Show Message</we-button> + </we-select> + <we-button class="fa fa-fw fa-eye align-self-end toggle-edit-message" title="Edit Message" data-name="message_opt" data-dependencies="show_message_opt"/> + </we-row> + <we-urlpicker string="URL" data-select-data-attribute="/contactus-thank-you" data-attribute-name="successPage" data-name="url_opt" data-dependencies="show_redirect_opt"/> + <t t-set="recaptcha_public_key" t-value="request.env['ir.config_parameter'].sudo().get_param('recaptcha_public_key')"/> + <we-checkbox t-if="recaptcha_public_key" string="Show reCaptcha Policy" data-toggle-recaptcha-legal="" data-no-preview="true"/> + </div> + + <!-- Add Field Form --> + <div data-js="AddFieldForm" data-selector=".s_website_form" data-target="form"> + <we-button class="o_we_text_success" + title="Add a new field at the end" + data-add-field="" + data-no-preview="true"> + <i class="fa fa-fw fa-plus"/> + </we-button> + </div> + + <!-- Add Field --> + <div data-js="AddField" data-selector=".s_website_form_field" data-exclude=".s_website_form_dnone"> + <we-button class="o_we_text_success" + title="Add a new field after this one" + data-add-field="" + data-no-preview="true"> + <i class="fa fa-fw fa-plus"/> + </we-button> + </div> + + <!-- Field --> + <div data-js='WebsiteFieldEditor' data-selector=".s_website_form_field" + data-exclude=".s_website_form_dnone" data-drop-near=".s_website_form_field"> + <we-select data-name="type_opt" string="Type" data-no-preview="true"> + <we-title>Custom field</we-title> + <we-button data-custom-field="char">Text</we-button> + <we-button data-custom-field="text">Long Text</we-button> + <we-button data-custom-field="email">Email</we-button> + <we-button data-custom-field="tel">Telephone</we-button> + <we-button data-custom-field="url">Url</we-button> + <we-button data-custom-field="integer">Number</we-button> + <we-button data-custom-field="float">Decimal Number</we-button> + <we-button data-custom-field="boolean">Checkbox</we-button> + <we-button data-custom-field="one2many">Multiple Checkboxes</we-button> + <we-button data-custom-field="selection">Radio Buttons</we-button> + <we-button data-custom-field="many2one">Selection</we-button> + <we-button data-custom-field="date">Date</we-button> + <we-button data-custom-field="datetime">Date & Time</we-button> + <we-button data-custom-field="binary">File Upload</we-button> + </we-select> + <we-select data-name="char_input_type_opt" string="Input Type" data-no-preview="true"> + <we-button data-select-type="char">Text</we-button> + <we-button data-select-type="email">Email</we-button> + <we-button data-select-type="tel">Telephone</we-button> + <we-button data-select-type="url">Url</we-button> + </we-select> + <t t-set="unit_textarea_height">rows</t> + <we-input string="Height" data-step="1" t-attf-data-select-attribute="3#{unit_textarea_height}" t-att-data-unit="unit_textarea_height" + data-attribute-name="rows" data-apply-to="textarea"/> + <we-select string="Display" data-name="multi_check_display_opt" data-no-preview="true"> + <we-button data-multi-checkbox-display="horizontal">Horizontal</we-button> + <we-button data-multi-checkbox-display="vertical">Vertical</we-button> + </we-select> + <we-input string="Input Placeholder" class="o_we_large_input" data-name="placeholder_opt" data-set-placeholder=""/> + <we-input string="Label Name" class="o_we_large_input" data-set-label-text=""/> + <we-button-group string="Label Position"> + <we-button title="Hide" + data-select-label-position="none"> + <i class="fa fa-eye-slash"/> + </we-button> + <we-button title="Top" + data-select-label-position="top" + data-img="/website/static/src/img/snippets_options/pos_top.svg"/> + <we-button title="Left" + data-select-label-position="left" + data-img="/website/static/src/img/snippets_options/pos_left.svg"/> + <we-button title="Right" + data-select-label-position="right" + data-img="/website/static/src/img/snippets_options/pos_right.svg"/> + </we-button-group> + <we-checkbox string="Required" data-name="required_opt" data-no-preview="true" + data-toggle-required="s_website_form_required"/> + <we-checkbox string="Hidden" data-name="hidden_opt" data-no-preview="true" + data-select-class="s_website_form_field_hidden"/> + </div> + + <div data-js="WebsiteFormSubmit" data-selector=".s_website_form_submit" data-exclude=".s_website_form_no_submit_options"> + <we-select string="Button Position"> + <we-button data-select-class="text-left s_website_form_no_submit_label">Left</we-button> + <we-button data-select-class="text-center s_website_form_no_submit_label">Center</we-button> + <we-button data-select-class="text-right s_website_form_no_submit_label">Right</we-button> + <we-button data-select-class="">Input Aligned</we-button> + </we-select> + </div> + + <!-- Remove the duplicate option of model fields --> + <div data-js="WebsiteFormFieldModel" data-selector=".s_website_form .s_website_form_field:not(.s_website_form_custom)"/> + + <!-- Remove the delete option of model required fields --> + <div data-js="WebsiteFormFieldRequired" data-selector=".s_website_form .s_website_form_model_required"/> + + <!-- Remove the delete and duplicate option of the submit button --> + <div data-js="WebsiteFormSubmitRequired" data-selector=".s_website_form .s_website_form_submit"/> + </xpath> +</template> + +<template id="assets_snippet_s_website_form_css_000" inherit_id="website.assets_frontend" active="False"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/website_form/static/src/snippets/s_website_form/000.scss"/> + </xpath> +</template> +<template id="assets_snippet_s_website_form_css_001" inherit_id="website.assets_frontend"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/website_form/static/src/snippets/s_website_form/001.scss"/> + </xpath> +</template> + +<template id="assets_snippet_s_website_form_js_000" inherit_id="website.assets_frontend"> + <xpath expr="//script[last()]" position="after"> + <script type="text/javascript" src="/website_form/static/src/snippets/s_website_form/000.js"/> + </xpath> +</template> + +</odoo> diff --git a/addons/website_form/views/snippets/snippets.xml b/addons/website_form/views/snippets/snippets.xml new file mode 100644 index 00000000..f684c975 --- /dev/null +++ b/addons/website_form/views/snippets/snippets.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="remove_external_snippets" inherit_id="website.external_snippets"> + <xpath expr="//t[@t-install='website_form']" position="replace"/> +</template> + +<template id="snippets" inherit_id="website.snippets" name="Snippet Form Builder"> + <xpath expr="//t[@id='form_form_hook']" position="replace"> + <t t-snippet="website_form.s_website_form" t-thumbnail="/website/static/src/img/snippets_thumbs/s_website_form.svg"/> + </xpath> +</template> + +</odoo> diff --git a/addons/website_form/views/website_form_templates.xml b/addons/website_form/views/website_form_templates.xml new file mode 100644 index 00000000..36732b23 --- /dev/null +++ b/addons/website_form/views/website_form_templates.xml @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <template id="contactus_form" name="Contact Form" inherit_id="website.contactus" customize_show="True"> + <xpath expr="//div[@name='mail_button']" position="replace"> + <span class="hidden" data-for="contactus_form" t-att-data-values="{'email_to': res_company.email}" /> + <div id="contactus_section"> + <section class="s_website_form" data-vcss="001" data-snippet="s_website_form"> + <div class="container"> + <form id="contactus_form" action="/website_form/" method="post" enctype="multipart/form-data" class="o_mark_required" data-mark="*" data-model_name="mail.mail" data-success-mode="redirect" data-success-page="/contactus-thank-you"> + <div class="s_website_form_rows row s_col_no_bgcolor"> + <div class="form-group col-12 s_website_form_field s_website_form_custom s_website_form_required" data-type="char" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact1"> + <span class="s_website_form_label_content">Your Name</span> + <span class="s_website_form_mark"> *</span> + </label> + <div class="col-sm"> + <input id="contact1" type="text" class="form-control s_website_form_input" name="Name" required=""/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_custom" data-type="char" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact2"> + <span class="s_website_form_label_content">Phone Number</span> + </label> + <div class="col-sm"> + <input id="contact2" type="tel" class="form-control s_website_form_input" name="Phone"/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_required" data-type="email" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact3"> + <span class="s_website_form_label_content">Email</span> + <span class="s_website_form_mark"> *</span> + </label> + <div class="col-sm"> + <input id="contact3" type="email" class="form-control s_website_form_input" name="email_from" required=""/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_custom" data-type="char" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact4"> + <span class="s_website_form_label_content">Your Company</span> + </label> + <div class="col-sm"> + <input id="contact4" type="text" class="form-control s_website_form_input" name="Partner Name"/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_required" data-type="char" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact5"> + <span class="s_website_form_label_content">Subject</span> + <span class="s_website_form_mark"> *</span> + </label> + <div class="col-sm"> + <input id="contact5" type="text" class="form-control s_website_form_input" name="subject" required=""/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_custom s_website_form_required" data-type="text" data-name="Field"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact6"> + <span class="s_website_form_label_content">Your Question</span> + </label> + <div class="col-sm"> + <textarea id="contact6" class="form-control s_website_form_input" name="Description" required=""></textarea> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_field s_website_form_dnone"> + <div class="row s_col_no_resize s_col_no_bgcolor"> + <label class="col-form-label col-sm-auto s_website_form_label" style="width: 200px" for="contact7"> + <span class="s_website_form_label_content">Email To</span> + </label> + <div class="col-sm"> + <input id="contact7" type="hidden" class="form-control s_website_form_input" name="email_to"/> + </div> + </div> + </div> + <div class="form-group col-12 s_website_form_submit" data-name="Submit Button"> + <div style="width: 200px;" class="s_website_form_label"/> + <a href="#" role="button" class="btn btn-primary btn-lg s_website_form_send">Submit</a> + <span id="s_website_form_result"></span> + </div> + </div> + </form> + </div> + </section> + </div> + </xpath> + </template> + + <record id="contactus_thanks" model="website.page"> + <field name="name">Thanks (Contact us)</field> + <field name="type">qweb</field> + <field name="url">/contactus-thank-you</field> + <field name="website_indexed" eval="False"/> + <field name="is_published">True</field> + <field name="key">website_form.contactus_thanks</field> + <field name="arch" type="xml"> + <t name="Thanks (Contact us)" t-name="website_form.contactus_thanks"> + <t t-call="website.layout"> + <div id="wrap"> + <div class="oe_structure" id="oe_structure_website_form_contact_us_thanks_1"/> + <div class="container mt-4"> + <div class="row"> + <div class="col-lg-7 col-xl-6 mr-lg-auto oe_structure"> + <section class="pt40 s_text_block pb40 o_colored_level o_cc o_cc1" data-snippet="s_text_block" data-name="Text"> + <div class="container"> + <span class="d-block fa fa-4x fa-thumbs-up mx-auto rounded-circle bg-primary"/><br/> + <h1 class="text-center">Thank You!</h1> + <div class="pb16 pt16 s_hr" data-snippet="s_hr" data-name="Separator"> + <hr class="mx-auto border-top w-50 border-dark text-center"/> + </div> + <h5 class="text-center"> + <span class="fa fa-check-circle"/> + <span>Your message has been sent <b>successfully</b></span> + </h5> + <p class="text-center">We will get back to you shortly.</p> + </div> + </section> + </div> + <div class="col-lg-4"> + <t t-call="website.company_description"/> + </div> + </div> + </div> + <div class="oe_structure" id="oe_structure_website_form_contact_us_thanks_2"/> + </div> + </t> + </t> + </field> + </record> + +</odoo> |
