[IMP] wording: "children" intead of "childs"

lp bug: https://launchpad.net/bugs/327259 fixed

bzr revid: ls@numerigraphe.fr-20100324163724-q1xe1ozomk23k17j
This commit is contained in:
Numerigraphe - Lionel Sausin 2010-03-24 17:37:24 +01:00
parent f0bfaff07a
commit 744bfb8cc1
103 changed files with 134 additions and 134 deletions

View File

@ -176,7 +176,7 @@ class account_account(osv.osv):
args[pos] = ('id', 'in', ids1)
pos += 1
if context and context.has_key('consolidate_childs'): #add consolidated childs of accounts
if context and context.has_key('consolidate_children'): #add consolidated children of accounts
ids = super(account_account, self).search(cr, uid, args, offset, limit,
order, context=context, count=count)
for consolidate_child in self.browse(cr, uid, context['account_id']).child_consol_ids:
@ -1456,7 +1456,7 @@ class account_tax(osv.osv):
RETURN:
[ tax ]
tax = {'name':'', 'amount':0.0, 'account_collected_id':1, 'account_paid_id':2}
one tax for each tax id in IDS and their childs
one tax for each tax id in IDS and their children
"""
res = self._unit_compute(cr, uid, taxes, price_unit, address_id, product, partner, quantity)
total = 0.0
@ -1553,7 +1553,7 @@ class account_tax(osv.osv):
RETURN:
[ tax ]
tax = {'name':'', 'amount':0.0, 'account_collected_id':1, 'account_paid_id':2}
one tax for each tax id in IDS and their childs
one tax for each tax id in IDS and their children
"""
res = self._unit_compute_inv(cr, uid, taxes, price_unit, address_id, product, partner=None)
total = 0.0

View File

@ -6,8 +6,8 @@
</assert>
<!-- <assert model="account.account" search="[]" string="For all accounts, the balance is equal to the sum of the balance of its childs">
<assert model="account.account" search="[]" string="For all accounts, the balance is equal to the sum of the balance of its childs">
<!-- <assert model="account.account" search="[]" string="For all accounts, the balance is equal to the sum of the balance of its children">
<assert model="account.account" search="[]" string="For all accounts, the balance is equal to the sum of the balance of its children">
<test expr="not len(child_id) or (balance - sum([c.balance for c in child_id]) &lt;= 0.00001)"/>
</assert>

View File

@ -187,8 +187,8 @@ class general_ledger(rml_parse.rml_parse):
##
#
self.query = self.pool.get('account.move.line')._query_get(self.cr, self.uid, context=ctx)
if account and account.child_consol_ids: # add ids of consolidated childs also of selected account
ctx['consolidate_childs'] = True
if account and account.child_consol_ids: # add ids of consolidated children also of selected account
ctx['consolidate_children'] = True
ctx['account_id'] = account.id
ids_acc = self.pool.get('account.account').search(self.cr, self.uid,[('parent_id', 'child_of', [account.id])], context=ctx)
for child_id in ids_acc:

View File

@ -190,8 +190,8 @@ class general_ledger_landscape(rml_parse.rml_parse):
#
self.query = self.pool.get('account.move.line')._query_get(self.cr, self.uid, context=ctx)
if account and account.child_consol_ids: # add ids of consolidated childs also of selected account
ctx['consolidate_childs'] = True
if account and account.child_consol_ids: # add ids of consolidated children also of selected account
ctx['consolidate_children'] = True
ctx['account_id'] = account.id
ids_acc = self.pool.get('account.account').search(self.cr, self.uid,[('parent_id', 'child_of', [account.id])], context=ctx)
for child_id in ids_acc:

View File

@ -51,7 +51,7 @@ class wizard_move_line_select(wizard.interface):
if data['id']:
acc_data = account_obj.browse(cr, uid, data['id']).child_consol_ids
if acc_data:
result['context'].update({'consolidate_childs': True})
result['context'].update({'consolidate_children': True})
result['domain']=result['domain'][0:-1]+','+domain+result['domain'][-1]
return result

View File

@ -31,7 +31,7 @@ class accounting_report(report_sxw.rml_parse):
self.ret_list = []
self.localcontext.update({
'time': time,
'childs':self.process
'children':self.process
})
def process(self,id,level=0):

View File

@ -88,7 +88,7 @@
</blockTable>
<para style="P3"><font color="white"> </font></para>
<section>
<para style="P7">[[repeatIn(childs(o.id),'obj')]]</para>
<para style="P7">[[repeatIn(children(o.id),'obj')]]</para>
<blockTable colWidths="362.0,73.0,93.0" repeatRows="1" style="Table3">
<tr>
<td><para style="P11"><font color="white">[[ '....'*(obj['level']) ]]</font><font>[[ obj['name'] ]]</font></para></td>

View File

@ -255,8 +255,8 @@ class account_analytic_account(osv.osv):
if not parent_id:
return {}
parent = self.read(cr, uid, [parent_id], ['partner_id','code'])[0]
childs = self.search(cr, uid, [('parent_id', '=', parent_id)])
numchild = len(childs)
children = self.search(cr, uid, [('parent_id', '=', parent_id)])
numchild = len(children)
if parent['partner_id']:
partner = parent['partner_id'][0]
else:

View File

@ -256,8 +256,8 @@ class DomApi(DomApiGeneral):
parent = self.style_dict[style_name].getAttribute("style:parent-style-name").encode("utf-8")
res = self.getStylePropertiesDict(parent)
childs = self.style_dict[style_name].childNodes
for c in childs:
children = self.style_dict[style_name].childNodes
for c in children:
if c.nodeType == c.ELEMENT_NODE and c.nodeName.find("properties")>0 :
for attr in c._attrs.keys():
res[attr] = c.getAttribute(attr).encode("utf-8")

View File

@ -39,7 +39,7 @@ def deltree(dc,uri,exclude={}):
# test here, if an element is a prefix of an uri which
# generated an error before.
# note that we walk here from childs to parents, thus
# note that we walk here from children to parents, thus
# we cannot delete a parent if a child made a problem.
# (see example in 8.6.2.1)
ok=1

View File

@ -199,7 +199,7 @@ class dav_interface:
To decide which approach is the best you have to decide if your application
is able to generate errors inside a tree. E.g. a function which completely
fails on a tree if one of the tree's childs fail is not what we need. Then
fails on a tree if one of the tree's children fail is not what we need. Then
2) would be your way of doing it.
Actually usually 2) is the better solution and should only be replaced by
1) if you really need it.

View File

@ -131,7 +131,7 @@ class PROPFIND:
re=self.mk_propname_response(self.__uri,pnames,doc)
ms.appendChild(re)
for newuri in dc.get_childs(self.__uri):
for newuri in dc.get_children(self.__uri):
pnames=dc.get_propnames(newuri)
re=self.mk_propname_response(newuri,pnames,doc)
ms.appendChild(re)
@ -193,7 +193,7 @@ class PROPFIND:
ms.appendChild(res)
try:
for newuri in self.__dataclass.get_childs(self.__uri):
for newuri in self.__dataclass.get_children(self.__uri):
gp,bp=self.get_propvalues(newuri)
res=self.mk_prop_response(newuri,gp,bp,doc)
ms.appendChild(res)

View File

@ -88,15 +88,15 @@ def create_treelist(dataclass,uri):
while len(queue):
element=queue[-1]
if dataclass.is_collection(element):
childs=dataclass.get_childs(element)
children=dataclass.get_children(element)
else:
childs=[]
if len(childs):
list=list+childs
children=[]
if len(children):
list=list+children
# update queue
del queue[-1]
if len(childs):
queue=queue+childs
if len(children):
queue=queue+children
return list
def is_prefix(uri1,uri2):

View File

@ -242,7 +242,7 @@ class document_directory(osv.osv):
oo2 = node.object2 and (node.object2._name, node.object2.id) or False
return node
def ol_get_childs(self, cr, uid, uri, context={}):
def ol_get_children(self, cr, uid, uri, context={}):
node = self.get_object(cr, uid, uri, context)
if uri:
children = node.children()

View File

@ -521,7 +521,7 @@ class abstracted_fs:
"""
Renaming operation, the effect depends on the src:
* A file: read, create and remove
* A directory: change the parent and reassign childs to ressource
* A directory: change the parent and reassign children to ressource
"""
cr = False
try:
@ -544,7 +544,7 @@ class abstracted_fs:
'directory': [],
'attachment': []
}
# Compute all childs to set the new ressource ID
# Compute all children to set the new ressource ID
child_ids = [src]
while len(child_ids):
node = child_ids.pop(0)

View File

@ -39,7 +39,7 @@ def deltree(dc,uri,exclude={}):
# test here, if an element is a prefix of an uri which
# generated an error before.
# note that we walk here from childs to parents, thus
# note that we walk here from children to parents, thus
# we cannot delete a parent if a child made a problem.
# (see example in 8.6.2.1)
ok=1

View File

@ -199,7 +199,7 @@ class dav_interface:
To decide which approach is the best you have to decide if your application
is able to generate errors inside a tree. E.g. a function which completely
fails on a tree if one of the tree's childs fail is not what we need. Then
fails on a tree if one of the tree's children fail is not what we need. Then
2) would be your way of doing it.
Actually usually 2) is the better solution and should only be replaced by
1) if you really need it.

View File

@ -131,7 +131,7 @@ class PROPFIND:
re=self.mk_propname_response(self.__uri,pnames,doc)
ms.appendChild(re)
for newuri in dc.get_childs(self.__uri):
for newuri in dc.get_children(self.__uri):
pnames=dc.get_propnames(newuri)
re=self.mk_propname_response(newuri,pnames,doc)
ms.appendChild(re)
@ -193,7 +193,7 @@ class PROPFIND:
ms.appendChild(res)
try:
for newuri in self.__dataclass.get_childs(self.__uri):
for newuri in self.__dataclass.get_children(self.__uri):
gp,bp=self.get_propvalues(newuri)
res=self.mk_prop_response(newuri,gp,bp,doc)
ms.appendChild(res)

View File

@ -88,15 +88,15 @@ def create_treelist(dataclass,uri):
while len(queue):
element=queue[-1]
if dataclass.is_collection(element):
childs=dataclass.get_childs(element)
children=dataclass.get_children(element)
else:
childs=[]
if len(childs):
list=list+childs
children=[]
if len(children):
list=list+children
# update queue
del queue[-1]
if len(childs):
queue=queue+childs
if len(children):
queue=queue+children
return list
def is_prefix(uri1,uri2):

View File

@ -142,9 +142,9 @@ class tinydav_handler(dav_interface):
cr.close()
return self.db_name_list
def get_childs(self,uri):
def get_children(self,uri):
""" return the child objects as self.baseuris for the given URI """
self.parent.log_message('get childs: %s' % uri)
self.parent.log_message('get children: %s' % uri)
if uri[-1]=='/':uri=uri[:-1]
cr, uid, pool, dbname, uri2 = self.get_cr(uri)
@ -160,7 +160,7 @@ class tinydav_handler(dav_interface):
else:
fp = node.full_path()
if fp and len(fp):
self.parent.log_message('childs: @%s' % fp)
self.parent.log_message('children: @%s' % fp)
fp = '/'.join(fp)
else:
fp = None

View File

@ -135,13 +135,13 @@ class res_users(osv.osv):
ids_dept = obj_dept.search(cr, uid, [('id', 'child_of', mgnt_dept_ids)])
if ids_dept:
data_dept = obj_dept.read(cr, uid, ids_dept, ['member_ids'])
childs = map(lambda x: x['member_ids'], data_dept)
childs = tools.flatten(childs)
childs = obj_user.search(cr, uid, [('id','in',childs),('active','=',True)])
if manager_id in childs:
childs.remove(manager_id)
children = map(lambda x: x['member_ids'], data_dept)
children = tools.flatten(children)
children = obj_user.search(cr, uid, [('id','in',children),('active','=',True)])
if manager_id in children:
children.remove(manager_id)
child_ids.extend(tools.flatten(childs))
child_ids.extend(tools.flatten(children))
set = {}
map(set.__setitem__, child_ids, [])
child_ids = set.keys()

View File

@ -1675,7 +1675,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1674,7 +1674,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1742,7 +1742,7 @@ msgstr "Min. količina"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Postavite kategoriju proizvoda ako se ovo pravilo odnosi na proizvode "
"kategorije i pod kategorije. Ostavite prazno za sve proizvode"

View File

@ -1750,7 +1750,7 @@ msgstr "Quantitat Mín."
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Indica una categoria de producte si aquesta regla només s'aplica a productes "
"d'una categoria i als seus descendents. Deixeu-lo buit per a tots els "

View File

@ -1672,7 +1672,7 @@ msgstr "Min. množství"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1758,7 +1758,7 @@ msgstr "Min. Anzahl"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Definiere eine Produkt Kategorie wenn diese Regel nur auf die Produkte einer "
"Kategorie und seinen zugeordneten Produkten angewendet werden soll. Lasse "

View File

@ -1768,7 +1768,7 @@ msgstr "Ελάχιστη Ποσότητα"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Ρυθμίστε μιά κατηγορία προϊόντων έαν αυτός ο κανόνας χρησιμοποιείται σε "
"προϊόντα μιάς κατηγορίας και των υποκατηγοριών. Διατηρήστε κενό για όλα τα "

View File

@ -1758,7 +1758,7 @@ msgstr "Cantidad mín."
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Indicar una categoría de producto si esta regla sólo se aplica a productos "
"de una categoría y a sus descendientes. Dejarlo vacío para todos los "

View File

@ -1750,7 +1750,7 @@ msgstr "Cantidad mín."
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Indicar una categoría de producto si esta regla sólo se aplica a productos "
"de una categoría y a sus descendientes. Dejarlo vacío para todos los "

View File

@ -1739,7 +1739,7 @@ msgstr "Vähim kogus"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Määra toote kategooria, kui see reegel rakendub ainult kategooria toodetele "
"ja nende alamatele. Hoia tühjana kõigi toodete jaoks."

View File

@ -1741,7 +1741,7 @@ msgstr "Vähimmäismäärä"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Aseta tuotekategoria jos sääntöä sovelletaan vain siinä tai sen "
"alakategorioissa oleviin tuotteisiin. Jätä tyhjäksi jos sovelletaan kaikkiin "

View File

@ -1756,7 +1756,7 @@ msgstr "Quantité min."
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Indiquer une catégorie de produit si la règle n'est appliquée que sur une "
"catégorie de produits et ses fils. Laisser vide si elle s'applique à tous "

View File

@ -1672,7 +1672,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1675,7 +1675,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1672,7 +1672,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1763,7 +1763,7 @@ msgstr "Quantità Minima"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Selezionare una categoria di prodotti se questa regola va applicata ai "
"prodotti di una categoria e le sue sottocategorie. Lasciare vuoto per tutti "

View File

@ -1683,7 +1683,7 @@ msgstr "최소 수량"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"이 규칙이 어느 한 카테고리와 그 차일드 카테고리들의 상품에만 적용될 경우, 상품 카테고리를 설정합니다. 모든 상품의 경우는 비워 "
"두십시오."

View File

@ -1719,7 +1719,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1673,7 +1673,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1675,7 +1675,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1699,7 +1699,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1758,7 +1758,7 @@ msgstr "Min. hoeveelheid"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Selecteer een productcategorie als deze regel alleen betrekking heeft op "
"producten van één categorie en diens subcategorieën. Laat deze leeg voor "

View File

@ -1593,7 +1593,7 @@ msgstr ""
#. module: product
#: help:product.pricelist.item,categ_id:0
msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products"
msgid "Set a category of product if this rule only apply to products of a category and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1750,7 +1750,7 @@ msgstr "Ilość minimalna"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Ustaw kategorię produktu, jeśli ta reguła ma dotyczyć produktów tej "
"kategorii lub kategorii podrzędnych. Zostaw puste, jeśli ma dotyczyć "

View File

@ -1593,7 +1593,7 @@ msgstr ""
#. module: product
#: help:product.pricelist.item,categ_id:0
msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products"
msgid "Set a category of product if this rule only apply to products of a category and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1732,7 +1732,7 @@ msgstr "Quantidade mínima"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Defina a categoria se esta regra aplica-se apenas a artigos dessa categoria "
"e dependentes. Deixe vazio para todos os artigos."

View File

@ -1732,7 +1732,7 @@ msgstr "Quantidade mínima"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Defina uma categoria de produto, se esta regra apenas se aplica aos produtos "
"de uma categoria e seus filhos. Mantenha em branco para todos os produtos"

View File

@ -1672,7 +1672,7 @@ msgstr "Cantitatea minima"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1689,7 +1689,7 @@ msgstr "Мин. кол-во"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1683,7 +1683,7 @@ msgstr "Min. množstvo"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1697,7 +1697,7 @@ msgstr "Min. količina"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1594,7 +1594,7 @@ msgstr ""
#. module: product
#: help:product.pricelist.item,categ_id:0
msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products"
msgid "Set a category of product if this rule only apply to products of a category and his children. Keep empty for all products"
msgstr ""
#. module: product
@ -3216,7 +3216,7 @@ msgstr ""
#. module: product
#: help:product.pricelist.item,categ_id:0
msgid "Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products"
msgid "Set a category of product if this rule only apply to products of a category and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1744,7 +1744,7 @@ msgstr "Min. količina"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Postavite kategoriju proizvoda ako se ovo pravilo odnosi na proizvode "
"kategorije i pod kategorije. Ostavite prazno za sve proizvode"

View File

@ -1749,7 +1749,7 @@ msgstr "Minsta kvantitet"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
"Bestäm en produktkategori om denna regel endast tillämpas på produkter i en "
"kategori och barnprodukter. Håll tomt för alla produkter"

View File

@ -1672,7 +1672,7 @@ msgstr ""
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1672,7 +1672,7 @@ msgstr "Mil. Miktar"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1688,7 +1688,7 @@ msgstr "Мін. кількість"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1673,7 +1673,7 @@ msgstr "Số lượng tối thiểu"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -1672,7 +1672,7 @@ msgstr "最小数量"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr "设置产品类别如果这规则只适合产品分类和它的子项.留空为为全部"
#. module: product

View File

@ -1672,7 +1672,7 @@ msgstr "最小数量"
#: help:product.pricelist.item,categ_id:0
msgid ""
"Set a category of product if this rule only apply to products of a category "
"and his childs. Keep empty for all products"
"and his children. Keep empty for all products"
msgstr ""
#. module: product

View File

@ -363,7 +363,7 @@ class product_pricelist_item(osv.osv):
'price_version_id': fields.many2one('product.pricelist.version', 'Price List Version', required=True, select=True, ondelete='cascade'),
'product_tmpl_id': fields.many2one('product.template', 'Product Template', ondelete='cascade', help="Set a template if this rule only apply to a template of product. Keep empty for all products"),
'product_id': fields.many2one('product.product', 'Product', ondelete='cascade', help="Set a product if this rule only apply to one product. Keep empty for all products"),
'categ_id': fields.many2one('product.category', 'Product Category', ondelete='cascade', help="Set a category of product if this rule only apply to products of a category and his childs. Keep empty for all products"),
'categ_id': fields.many2one('product.category', 'Product Category', ondelete='cascade', help="Set a category of product if this rule only apply to products of a category and his children. Keep empty for all products"),
'min_quantity': fields.integer('Min. Quantity', required=True, help="The rule only applies if the partner buys/sells more than this quantity."),
'sequence': fields.integer('Sequence', required=True, help="Gives the sequence order when displaying a list of pricelist items."),

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Редове с движения"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Включване на всички подчинени на това местонахождение"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Stavke kretanja"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Uključi sve podlokacije za datu lokaciju"
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr "Línies de moviment"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Inclou tots els descendents de la ubicació"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Buchungszeilen"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Beinhaltet alle einzelnen Lagerplätze dieses Lagerortes"
#. module: stock

View File

@ -361,7 +361,7 @@ msgstr "Γραμμές Κίνησης"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Να συμπεριληφθούν τα υπό-τμήματα"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Líneas de movimiento"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Incluir todos los descendientes de la ubicación"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Líneas del movimiento"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Incluir todos los descendientes de la ubicación"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Liiguta read"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Kaasa kõik alamad asukohale"
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -374,7 +374,7 @@ msgstr "Lignes de mouvements"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Inclure tous les sous-emplacements"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Movimenti"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Includere tutti i derivati per la locazione"
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr "이동 라인"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "이 위치에 대한 모든 자식들을 포함"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr "Verplaats regels"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Inclusief alle onderliggende"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Pozycje przesunięcia"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Włącz podrzędne dla tej strefy"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Linhas de movimento"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Incluir todos os dependentes da localização"
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr "Mover Linhas"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Postavke knjižb"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock
@ -2707,7 +2707,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "Uključivanje svih potomaka za ovu lokaciju"
#. module: stock

View File

@ -357,7 +357,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -359,7 +359,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -383,7 +383,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "Hareket Kalemleri"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock
@ -2707,7 +2707,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr "调拨线路"
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr "包括所有库位子项"
#. module: stock

View File

@ -358,7 +358,7 @@ msgstr ""
#. module: stock
#: wizard_field:stock.fill_inventory,init,recursive:0
msgid "Include all childs for the location"
msgid "Include all children for the location"
msgstr ""
#. module: stock

Some files were not shown because too many files have changed in this diff Show More