Add missing files: translation, purchase.line views and spanish doc

This commit is contained in:
Guillem Barba 2014-07-01 19:24:52 +02:00
parent 02c7686f26
commit 9dd82e6f0d
6 changed files with 98 additions and 0 deletions

8
doc/es/index.rst Normal file
View File

@ -0,0 +1,8 @@
Abastecimiento mínimo
#####################
El módulo de Abastecimiento mínimo añade la Cantidad mínima a la ficha de
proveedor de un producto.
Esto permite definir una cantidad mínima de compra para el producto y proveedor
dado, de manera que las compras creadas para este producto y proveedor (tanto
manualmente como desde solicitudes de compra) tendrán en cuenta esta condición.

27
locale/ca_ES.po Normal file
View File

@ -0,0 +1,27 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:purchase.line,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Quantitat mínima"
msgctxt "field:purchase.product_supplier,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Quantitat mínima"
msgctxt "field:purchase.request,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:purchase.request,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Quantitat mínima"
msgctxt "help:purchase.line,minimum_quantity:"
msgid "The quantity must be greater or equal than minimum quantity"
msgstr "La quantitat ha de ser igual o superior a la quantitat mínima"
msgctxt "view:purchase.line:"
msgid "The quantity must be greater or equal than minimum quantity:"
msgstr "La quantitat ha de ser igual o superior a la quantitat mínima:"

27
locale/es_ES.po Normal file
View File

@ -0,0 +1,27 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:purchase.line,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Cantidad mínima"
msgctxt "field:purchase.product_supplier,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Cantidad mínima"
msgctxt "field:purchase.request,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:purchase.request,minimum_quantity:"
msgid "Minimum Quantity"
msgstr "Cantidad mínima"
msgctxt "help:purchase.line,minimum_quantity:"
msgid "The quantity must be greater or equal than minimum quantity"
msgstr "La cantidad debe ser superior o igual a la cantidad mínima"
msgctxt "view:purchase.line:"
msgid "The quantity must be greater or equal than minimum quantity:"
msgstr "La cantidad debe ser superior o igual a la cantidad mínima:"

View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<data>
<xpath expr="/form/notebook/page[@id='general']/label[@name='quantity']"
position="before">
<label id="space_minimum_quantity" string=""/>
<group id="minimum_quantity" colspan="3" col="2">
<label name="minimum_quantity"
string="The quantity must be greater or equal than minimum quantity:"/>
<field name="minimum_quantity"/>
</group>
</xpath>
</data>

View File

@ -0,0 +1,11 @@
<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<data>
<xpath expr="/tree" position="replace_attributes">
<tree colors="If(Bool(Eval('minimum_quantity')), 'red', 'black')"/>
</xpath>
<xpath expr="/tree/field[@name='quantity']" position="before">
<field name="minimum_quantity"/>
</xpath>
</data>

View File

@ -0,0 +1,11 @@
<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<data>
<xpath expr="/tree" position="replace_attributes">
<tree colors="If(Bool(Eval('minimum_quantity')), 'red', 'black')"/>
</xpath>
<xpath expr="/tree/field[@name='quantity']" position="before">
<field name="minimum_quantity"/>
</xpath>
</data>