[10.0] [IMP] base_multi_image: improve uninstall hook (#1286)
improve uninstall hook to move images from multi to single modepull/2334/head
parent
8b393199fe
commit
4df296e25a
|
@ -63,8 +63,10 @@ def pre_init_hook_for_submodules(cr, model, field):
|
|||
)
|
||||
|
||||
|
||||
def uninstall_hook_for_submodules(cr, registry, model):
|
||||
"""Remove multi-images for a given model.
|
||||
def uninstall_hook_for_submodules(cr, registry, model, field=None,
|
||||
field_medium=None, field_small=None):
|
||||
"""Moves images from multi to single mode and remove multi-images for a
|
||||
given model.
|
||||
|
||||
:param odoo.sql_db.Cursor cr:
|
||||
Database cursor.
|
||||
|
@ -75,11 +77,74 @@ def uninstall_hook_for_submodules(cr, registry, model):
|
|||
:param str model:
|
||||
Model technical name, like "res.partner". All multi-images for that
|
||||
model will be deleted
|
||||
|
||||
:param str field:
|
||||
Binary field that had the images in that :param:`model`, like
|
||||
``image``.
|
||||
|
||||
:param str field_medium:
|
||||
Binary field that had the medium-sized images in that :param:`model`,
|
||||
like ``image_medium``.
|
||||
|
||||
:param str field_small:
|
||||
Binary field that had the small-sized images in that :param:`model`,
|
||||
like ``image_small``.
|
||||
"""
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
with cr.savepoint():
|
||||
Image = env["base_multi_image.image"]
|
||||
images = Image.search([("owner_model", "=", model)])
|
||||
images = Image.search([("owner_model", "=", model)],
|
||||
order="sequence, id")
|
||||
if images and (field or field_medium or field_small):
|
||||
main_images = {}
|
||||
for image in images:
|
||||
if image.owner_id not in main_images:
|
||||
main_images[image.owner_id] = image
|
||||
main_images = main_images.values()
|
||||
Model = env[model]
|
||||
Field = field and Model._fields[field]
|
||||
FieldMedium = field_medium and Model._fields[field_medium]
|
||||
FieldSmall = field_small and Model._fields[field_small]
|
||||
# fields.Binary(), save the binary content directly to the table
|
||||
if field and not Field.attachment \
|
||||
or field_medium and not FieldMedium.attachment \
|
||||
or field_small and not FieldSmall.attachment:
|
||||
fields = []
|
||||
if field and not Field.attachment:
|
||||
fields.append(field + " = " + "%(image)s")
|
||||
if field_medium and not FieldMedium.attachment:
|
||||
fields.append(field_medium + " = " + "%(image_medium)s")
|
||||
if field_small and not FieldSmall.attachment:
|
||||
fields.append(field_small + " = " + "%(image_small)s")
|
||||
query = """
|
||||
UPDATE %(table)s
|
||||
SET %(fields)s
|
||||
WHERE id = %%(id)s
|
||||
""" % {
|
||||
"table": Model._table,
|
||||
"fields": ", ".join(fields),
|
||||
}
|
||||
for main_image in main_images:
|
||||
vars = {"id": main_image.owner_id}
|
||||
if field and not Field.attachment:
|
||||
vars["image"] = main_image.image_main
|
||||
if field_medium and not FieldMedium.attachment:
|
||||
vars["image_medium"] = main_image.image_medium
|
||||
if field_small and not FieldSmall.attachment:
|
||||
vars["image_small"] = main_image.image_small
|
||||
cr.execute(query, vars)
|
||||
# fields.Binary(attachment=True), save the ir_attachment record ID
|
||||
if field and Field.attachment \
|
||||
or field_medium and FieldMedium.attachment \
|
||||
or field_small and FieldSmall.attachment:
|
||||
for main_image in main_images:
|
||||
owner = Model.browse(main_image.owner_id)
|
||||
if field and Field.attachment:
|
||||
Field.write(owner, main_image.image_main)
|
||||
if field_medium and FieldMedium.attachment:
|
||||
FieldMedium.write(owner, main_image.image_medium)
|
||||
if field_small and FieldSmall.attachment:
|
||||
FieldSmall.write(owner, main_image.image_small)
|
||||
images.unlink()
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
|
@ -10,11 +10,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-09-10 02:52+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:26+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/language/am/)\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/"
|
||||
"language/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -156,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
#: sql_constraint:base_multi_image.image:0
|
||||
#, python-format
|
||||
msgid "A document can have only one image with the same name."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.actions.act_window,help:base_multi_image.image_action
|
||||
msgid "Click to add an image attached to an specific record."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_comments
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: selection:base_multi_image.image,storage:0
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_display_name
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_extension
|
||||
msgid "File extension"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_filename
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: selection:base_multi_image.image,storage:0
|
||||
msgid "Filestore"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_image_main
|
||||
msgid "Full-sized image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_id
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_path
|
||||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_path
|
||||
msgid "Image path"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_url
|
||||
msgid "Image remote URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_file_db_store
|
||||
msgid "Image stored in database"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_name
|
||||
msgid "Image title"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_image_ids
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_tree_view
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image___last_update
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/owner.py:73
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_image_main
|
||||
#, python-format
|
||||
msgid "Main image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_image_main_medium
|
||||
msgid "Medium image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid "Medium-sized image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid "Medium-sized image. It is automatically resized as a 128 x 128 px image, with aspect ratio preserved, only when the image exceeds one of those sizes. Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.actions.act_window,name:base_multi_image.image_action
|
||||
#: model:ir.ui.menu,name:base_multi_image.image_menu
|
||||
msgid "Multi images"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: selection:base_multi_image.image,storage:0
|
||||
msgid "OS file"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_owner_id
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_owner_model
|
||||
msgid "Owner model"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_form_view
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.ui.view,arch_db:base_multi_image.image_kanban_view
|
||||
msgid "Product Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_owner_ref_id
|
||||
msgid "Referenced Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_show_technical
|
||||
msgid "Show technical"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_owner_image_main_small
|
||||
msgid "Small image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_image_small
|
||||
msgid "Small-sized image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_small
|
||||
msgid "Small-sized image. It is automatically resized as a 64 x 64 px image, with aspect ratio preserved. Use this field anywhere a small image is required."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_storage
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: selection:base_multi_image.image,storage:0
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:205
|
||||
#, python-format
|
||||
msgid "You must provide a file path for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:199
|
||||
#, python-format
|
||||
msgid "You must provide an URL for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:211
|
||||
#, python-format
|
||||
msgid "You must provide an attached file for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:217
|
||||
#, python-format
|
||||
msgid "You must provide an attachment for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model,name:base_multi_image.model_base_multi_image_image
|
||||
msgid "base_multi_image.image"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model,name:base_multi_image.model_base_multi_image_owner
|
||||
msgid "base_multi_image.owner"
|
||||
msgstr ""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2017
|
||||
|
@ -13,10 +13,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -158,8 +158,8 @@ msgstr "Bild mit mittlerer Größe"
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
"Mittelgroßes Bild. Es wird automatisch auf 128 x 128 Pixel, unter "
|
||||
"Beibehaltung der Seitenverhältnisse, umgerechnet, sofern eine Seite diese "
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
||||
"el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# enjolras <yo@miguelrevilla.com>, 2017
|
||||
|
@ -13,10 +13,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2018-03-02 18:40+0000\n"
|
||||
"Last-Translator: enjolras <yo@miguelrevilla.com>, 2017\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -158,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-05-01 10:38+0000\n"
|
||||
"PO-Revision-Date: 2017-05-01 10:38+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
||||
"Language: 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=1; plural=0;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
|
||||
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
|
||||
"fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
|
||||
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
|
||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
|
||||
"teams/23907/fr_CH/)\n"
|
||||
"Language: fr_CH\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
|
||||
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
|
||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"gl_ES/)\n"
|
||||
"Language: gl_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
||||
"Language: 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=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
|
@ -13,11 +13,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -158,8 +159,8 @@ msgstr "Slika srednje veličine"
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,12 +11,14 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"hr_HR/)\n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +159,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Paolo Valier <paolo.valier@hotmail.it>, 2017
|
||||
|
@ -13,10 +13,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2018-01-06 02:24+0000\n"
|
||||
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 2017\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -158,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
||||
"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,12 +11,14 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
|
||||
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
|
||||
"teams/23907/lt_LT/)\n"
|
||||
"Language: lt_LT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +159,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
||||
"nb/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-11-26 03:36+0000\n"
|
||||
"PO-Revision-Date: 2016-11-26 03:36+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nb_NO/)\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n"
|
||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
||||
"nl_BE/)\n"
|
||||
"Language: nl_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-16 02:17+0000\n"
|
||||
"PO-Revision-Date: 2017-12-16 02:17+0000\n"
|
||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,13 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +159,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Accounts-Payable - Alkemics, 2015
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2016
|
||||
|
@ -49,11 +49,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2016-07-09 10:34+0000\n"
|
||||
"PO-Revision-Date: 2016-07-05 18:08+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/pt_BR/)\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-"
|
||||
"tools-9-0/language/pt_BR/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -195,8 +196,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -241,6 +242,11 @@ msgstr ""
|
|||
msgid "Product Images"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_owner_ref_id
|
||||
msgid "Referenced Owner"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: model:ir.model.fields,field_description:base_multi_image.field_base_multi_image_image_sequence
|
||||
msgid "Sequence"
|
||||
|
@ -279,25 +285,25 @@ msgid "URL"
|
|||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:184
|
||||
#: code:addons/base_multi_image/models/image.py:205
|
||||
#, python-format
|
||||
msgid "You must provide a file path for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:178
|
||||
#: code:addons/base_multi_image/models/image.py:199
|
||||
#, python-format
|
||||
msgid "You must provide an URL for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:190
|
||||
#: code:addons/base_multi_image/models/image.py:211
|
||||
#, python-format
|
||||
msgid "You must provide an attached file for the image."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:196
|
||||
#: code:addons/base_multi_image/models/image.py:217
|
||||
#, python-format
|
||||
msgid "You must provide an attachment for the image."
|
||||
msgstr ""
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,13 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +159,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
||||
"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: 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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,12 +11,14 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr"
|
||||
"%40latin/)\n"
|
||||
"Language: sr@latin\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"
|
||||
"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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +159,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||
"tr_TR/)\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,11 +12,12 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: base_multi_image
|
||||
#: code:addons/base_multi_image/models/image.py:22
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +157,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-02-18 02:29+0000\n"
|
||||
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
|
||||
"teams/23907/vi_VN/)\n"
|
||||
"Language: vi_VN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_multi_image
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
|
@ -11,11 +11,12 @@ msgstr ""
|
|||
"POT-Creation-Date: 2017-12-01 02:10+0000\n"
|
||||
"PO-Revision-Date: 2017-12-01 02:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_TW/)\n"
|
||||
"Language: 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: base_multi_image
|
||||
|
@ -157,8 +158,8 @@ msgstr ""
|
|||
#: model:ir.model.fields,help:base_multi_image.field_base_multi_image_image_image_medium
|
||||
msgid ""
|
||||
"Medium-sized image. It is automatically resized as a 128 x 128 px image, "
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes."
|
||||
" Use this field in form views or kanban views."
|
||||
"with aspect ratio preserved, only when the image exceeds one of those sizes. "
|
||||
"Use this field in form views or kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_multi_image
|
||||
|
|
Loading…
Reference in New Issue