Merge lp:~akretion-team/openerp-product-attributes/7.0-french-translation-base_custom_attributes into lp:~product-core-editors/openerp-product-attributes/7.0

Proposed by Benoit Guillot - http://www.akretion.com
Status: Merged
Merged at revision: 219
Proposed branch: lp:~akretion-team/openerp-product-attributes/7.0-french-translation-base_custom_attributes
Merge into: lp:~product-core-editors/openerp-product-attributes/7.0
Diff against target: 630 lines (+586/-4)
3 files modified
base_custom_attributes/custom_attributes.py (+4/-4)
base_custom_attributes/i18n/base_custom_attributes.pot (+291/-0)
base_custom_attributes/i18n/fr.po (+291/-0)
To merge this branch: bzr merge lp:~akretion-team/openerp-product-attributes/7.0-french-translation-base_custom_attributes
Reviewer Review Type Date Requested Status
Guewen Baconnier @ Camptocamp code review Approve
Quentin THEURET @Amaris (community) code review, no tests Approve
Joao Alfredo Gama Batista code review. no tests Approve
Pedro Manuel Baeza code review, no test Approve
Review via email: mp+191357@code.launchpad.net

Description of the change

Add french translation for the module base_custom_attributes
Fix some field labels before the translation

To post a comment you must log in.
Revision history for this message
Pedro Manuel Baeza (pedro.baeza) wrote :

Hi, Benoit, thank you very much for your MP. Can you please add the translation template .pot file so that we can enable translations in Launchpad?

Regards.

review: Needs Fixing (code review, no test)
217. By Benoit Guillot - http://www.akretion.com

[FIX] add .pot file for translation

Revision history for this message
Benoit Guillot - http://www.akretion.com (benoit-guillot-z) wrote :

Thanks for the review, I have added the file

Revision history for this message
Pedro Manuel Baeza (pedro.baeza) wrote :

Thank you!

review: Approve (code review, no test)
Revision history for this message
Joao Alfredo Gama Batista (joao-gama) wrote :

lgtm.

review: Approve (code review. no tests)
Revision history for this message
Quentin THEURET @Amaris (qtheuret) wrote :

LGTM.

Two little things to match better with the French typography :

"Si serialisé, le champ sera stocké dans un champ serialisé:" -> Put a space before the colon.
"Erreur!" -> Put a space after the exclamation mark.

review: Approve (code review, no tests)
Revision history for this message
Quentin THEURET @Amaris (qtheuret) wrote :

Sorry,

I made a mistake on my previous message.

"Erreur!" -> Put a space BEFORE the exclamation mark.

218. By Benoit Guillot - http://www.akretion.com

[FIX] fix typo

Revision history for this message
Benoit Guillot - http://www.akretion.com (benoit-guillot-z) wrote :

Thank you Quentin for your review.

I made the changes

Revision history for this message
Guewen Baconnier @ Camptocamp (gbaconnier-c2c) wrote :

thanks LGTM

review: Approve (code review)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'base_custom_attributes/custom_attributes.py'
--- base_custom_attributes/custom_attributes.py 2013-10-16 09:50:02 +0000
+++ base_custom_attributes/custom_attributes.py 2013-10-23 12:15:20 +0000
@@ -35,13 +35,13 @@
35 _columns = {35 _columns = {
36 'name': fields.char('Name', size=128, translate=True, required=True),36 'name': fields.char('Name', size=128, translate=True, required=True),
37 'value_ref': fields.reference('Reference', selection=[], size=128),37 'value_ref': fields.reference('Reference', selection=[], size=128),
38 'attribute_id': fields.many2one('attribute.attribute', 'Product Attribute', required=True),38 'attribute_id': fields.many2one('attribute.attribute', 'Attribute', required=True),
39 'sequence': fields.integer('Sequence'),39 'sequence': fields.integer('Sequence'),
40 }40 }
4141
42 def name_change(self, cr, uid, ids, name, relation_model_id, context=None):42 def name_change(self, cr, uid, ids, name, relation_model_id, context=None):
43 if relation_model_id:43 if relation_model_id:
44 warning = {'title': _('Error!'), 'message': _("Use the 'Change Options' button instead to select appropriate model references'")}44 warning = {'title': _('Error!'), 'message': _("Use the 'Load Options' button instead to select appropriate model references.")}
45 return {"value": {"name": False}, "warning": warning}45 return {"value": {"name": False}, "warning": warning}
46 else:46 else:
47 return True47 return True
@@ -52,7 +52,7 @@
52 _rec_name = 'attribute_id'52 _rec_name = 'attribute_id'
5353
54 _columns = {54 _columns = {
55 'attribute_id': fields.many2one('attribute.attribute', 'Product Attribute', required=True),55 'attribute_id': fields.many2one('attribute.attribute', 'Attribute', required=True),
56 }56 }
5757
58 _defaults = {58 _defaults = {
@@ -328,7 +328,7 @@
328 return self.pool.get('attribute.location').search(cr, uid, [('attribute_group_id', 'in', ids)], context=context)328 return self.pool.get('attribute.location').search(cr, uid, [('attribute_group_id', 'in', ids)], context=context)
329329
330 _columns = {330 _columns = {
331 'attribute_id': fields.many2one('attribute.attribute', 'Product Attribute', required=True, ondelete="cascade"),331 'attribute_id': fields.many2one('attribute.attribute', 'Attribute', required=True, ondelete="cascade"),
332 'attribute_set_id': fields.related('attribute_group_id', 'attribute_set_id', type='many2one', relation='attribute.set', string='Attribute Set', readonly=True,332 'attribute_set_id': fields.related('attribute_group_id', 'attribute_set_id', type='many2one', relation='attribute.set', string='Attribute Set', readonly=True,
333store={333store={
334 'attribute.group': (_get_attribute_loc_from_group, ['attribute_set_id'], 10),334 'attribute.group': (_get_attribute_loc_from_group, ['attribute_set_id'], 10),
335335
=== added directory 'base_custom_attributes/i18n'
=== added file 'base_custom_attributes/i18n/base_custom_attributes.pot'
--- base_custom_attributes/i18n/base_custom_attributes.pot 1970-01-01 00:00:00 +0000
+++ base_custom_attributes/i18n/base_custom_attributes.pot 2013-10-23 12:15:20 +0000
@@ -0,0 +1,291 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * base_custom_attributes
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2013-10-16 10:39+0000\n"
10"PO-Revision-Date: 2013-10-16 10:39+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: base_custom_attributes
19#: code:addons/base_custom_attributes/custom_attributes.py:44
20#, python-format
21msgid "Use the 'Load Options' button instead to select appropriate model references."
22msgstr ""
23
24#. module: base_custom_attributes
25#: selection:attribute.attribute,attribute_type:0
26msgid "Binary"
27msgstr ""
28
29#. module: base_custom_attributes
30#: view:attribute.attribute:0
31msgid "Search Attributes"
32msgstr ""
33
34#. module: base_custom_attributes
35#: view:attribute.group:0
36#: field:attribute.location,attribute_group_id:0
37#: model:ir.model,name:base_custom_attributes.model_attribute_group
38#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_group_id
39msgid "Attribute Group"
40msgstr ""
41
42#. module: base_custom_attributes
43#: view:attribute.group:0
44#: model:ir.model,name:base_custom_attributes.model_attribute_location
45msgid "Attribute Location"
46msgstr ""
47
48#. module: base_custom_attributes
49#: code:addons/base_custom_attributes/custom_attributes.py:154
50#: view:attribute.option.wizard:0
51#, python-format
52msgid "Options Wizard"
53msgstr ""
54
55#. module: base_custom_attributes
56#: view:attribute.group:0
57msgid "Search Attribute Groups"
58msgstr ""
59
60#. module: base_custom_attributes
61#: field:attribute.attribute,attribute_type:0
62#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_attribute_type
63msgid "Type"
64msgstr ""
65
66#. module: base_custom_attributes
67#: field:attribute.set,attribute_group_ids:0
68#: model:ir.actions.act_window,name:base_custom_attributes.attribute_group_form_action
69#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_attribute_group_ids
70#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_group_action
71msgid "Attribute Groups"
72msgstr ""
73
74#. module: base_custom_attributes
75#: field:attribute.attribute,create_date:0
76#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_create_date
77msgid "Created date"
78msgstr ""
79
80#. module: base_custom_attributes
81#: view:attribute.set:0
82msgid "Search Attribute Sets"
83msgstr ""
84
85#. module: base_custom_attributes
86#: view:attribute.option:0
87#: model:ir.model,name:base_custom_attributes.model_attribute_option
88msgid "Attribute Option"
89msgstr ""
90
91#. module: base_custom_attributes
92#: selection:attribute.attribute,attribute_type:0
93msgid "Date"
94msgstr ""
95
96#. module: base_custom_attributes
97#: help:attribute.attribute,required_on_views:0
98msgid "If activated, the attribute will be mandatory on the views, but not in the database"
99msgstr ""
100
101#. module: base_custom_attributes
102#: field:attribute.attribute,field_id:0
103#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_field_id
104msgid "Ir Model Fields"
105msgstr ""
106
107#. module: base_custom_attributes
108#: view:attribute.option.wizard:0
109msgid "options_placeholder"
110msgstr ""
111
112#. module: base_custom_attributes
113#: field:attribute.group,name:0
114#: field:attribute.option,name:0
115#: field:attribute.set,name:0
116#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_name
117#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_name
118#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_name
119msgid "Name"
120msgstr ""
121
122#. module: base_custom_attributes
123#: help:attribute.attribute,serialized:0
124msgid "If serialized, the field will be stocked in the serialized field: attribute_custom_tmpl or attribute_custom_variant depending on the field based_on"
125msgstr ""
126
127#. module: base_custom_attributes
128#: field:attribute.attribute,required_on_views:0
129#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_required_on_views
130msgid "Required (on views)"
131msgstr ""
132
133#. module: base_custom_attributes
134#: model:ir.model,name:base_custom_attributes.model_ir_model_fields
135msgid "Fields"
136msgstr ""
137
138#. module: base_custom_attributes
139#: view:attribute.attribute:0
140#: field:attribute.attribute,option_ids:0
141#: model:ir.actions.act_window,name:base_custom_attributes.attribute_option_form_action
142#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_option_ids
143#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_option_action
144msgid "Attribute Options"
145msgstr ""
146
147#. module: base_custom_attributes
148#: field:attribute.attribute,serialized:0
149#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_serialized
150msgid "Field serialized"
151msgstr ""
152
153#. module: base_custom_attributes
154#: code:addons/base_custom_attributes/custom_attributes.py:44
155#, python-format
156msgid "Error!"
157msgstr ""
158
159#. module: base_custom_attributes
160#: view:attribute.option.wizard:0
161msgid "Validate"
162msgstr ""
163
164#. module: base_custom_attributes
165#: selection:attribute.attribute,attribute_type:0
166msgid "Multiselect"
167msgstr ""
168
169#. module: base_custom_attributes
170#: view:attribute.option:0
171msgid "Search Attribute Options"
172msgstr ""
173
174#. module: base_custom_attributes
175#: selection:attribute.attribute,attribute_type:0
176msgid "Integer"
177msgstr ""
178
179#. module: base_custom_attributes
180#: field:attribute.group,attribute_ids:0
181#: model:ir.actions.act_window,name:base_custom_attributes.attribute_attribute_form_action
182#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_attribute_ids
183#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_attribute_action
184#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_in_admin
185msgid "Attributes"
186msgstr ""
187
188#. module: base_custom_attributes
189#: field:attribute.attribute,relation_model_id:0
190#: field:attribute.group,model_id:0
191#: field:attribute.set,model_id:0
192#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_relation_model_id
193#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_model_id
194#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_model_id
195msgid "Model"
196msgstr ""
197
198#. module: base_custom_attributes
199#: model:ir.actions.act_window,name:base_custom_attributes.attribute_set_form_action
200#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_set_action
201msgid "Attribute Sets"
202msgstr ""
203
204#. module: base_custom_attributes
205#: view:attribute.attribute:0
206msgid "Load Options"
207msgstr ""
208
209#. module: base_custom_attributes
210#: field:attribute.option,value_ref:0
211#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_value_ref
212msgid "Reference"
213msgstr ""
214
215#. module: base_custom_attributes
216#: field:attribute.group,sequence:0
217#: field:attribute.location,sequence:0
218#: field:attribute.option,sequence:0
219#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_sequence
220#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_sequence
221#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_sequence
222msgid "Sequence"
223msgstr ""
224
225#. module: base_custom_attributes
226#: view:attribute.attribute:0
227#: field:attribute.location,attribute_id:0
228#: field:attribute.option,attribute_id:0
229#: field:attribute.option.wizard,attribute_id:0
230#: model:ir.model,name:base_custom_attributes.model_attribute_attribute
231#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_id
232#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_attribute_id
233#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_wizard_attribute_id
234msgid "Attribute"
235msgstr ""
236
237#. module: base_custom_attributes
238#: selection:attribute.attribute,attribute_type:0
239msgid "Float"
240msgstr ""
241
242#. module: base_custom_attributes
243#: field:attribute.group,attribute_set_id:0
244#: field:attribute.location,attribute_set_id:0
245#: view:attribute.set:0
246#: model:ir.model,name:base_custom_attributes.model_attribute_set
247#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_attribute_set_id
248#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_set_id
249msgid "Attribute Set"
250msgstr ""
251
252#. module: base_custom_attributes
253#: selection:attribute.attribute,attribute_type:0
254msgid "Datetime"
255msgstr ""
256
257#. module: base_custom_attributes
258#: selection:attribute.attribute,attribute_type:0
259msgid "Char"
260msgstr ""
261
262#. module: base_custom_attributes
263#: selection:attribute.attribute,attribute_type:0
264msgid "Boolean"
265msgstr ""
266
267#. module: base_custom_attributes
268#: selection:attribute.attribute,attribute_type:0
269msgid "Text"
270msgstr ""
271
272#. module: base_custom_attributes
273#: view:attribute.option.wizard:0
274msgid "Cancel"
275msgstr ""
276
277#. module: base_custom_attributes
278#: model:ir.model,name:base_custom_attributes.model_attribute_option_wizard
279msgid "attribute.option.wizard"
280msgstr ""
281
282#. module: base_custom_attributes
283#: sql_constraint:ir.model.fields:0
284msgid "The name of the field has to be uniq for a given model !"
285msgstr ""
286
287#. module: base_custom_attributes
288#: selection:attribute.attribute,attribute_type:0
289msgid "Select"
290msgstr ""
291
0292
=== added file 'base_custom_attributes/i18n/fr.po'
--- base_custom_attributes/i18n/fr.po 1970-01-01 00:00:00 +0000
+++ base_custom_attributes/i18n/fr.po 2013-10-23 12:15:20 +0000
@@ -0,0 +1,291 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * base_custom_attributes
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2013-10-16 09:03+0000\n"
10"PO-Revision-Date: 2013-10-16 09:03+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: base_custom_attributes
19#: code:addons/base_custom_attributes/custom_attributes.py:44
20#, python-format
21msgid "Use the 'Load Options' button instead to select appropriate model references."
22msgstr "Utiliser le bouton 'Charger les options' pour sélectionner le modèle de référence approprié."
23
24#. module: base_custom_attributes
25#: selection:attribute.attribute,attribute_type:0
26msgid "Binary"
27msgstr "Binary"
28
29#. module: base_custom_attributes
30#: view:attribute.attribute:0
31msgid "Search Attributes"
32msgstr "Rechercher des attributs"
33
34#. module: base_custom_attributes
35#: view:attribute.group:0
36#: field:attribute.location,attribute_group_id:0
37#: model:ir.model,name:base_custom_attributes.model_attribute_group
38#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_group_id
39msgid "Attribute Group"
40msgstr "Groupe d'attributs"
41
42#. module: base_custom_attributes
43#: view:attribute.group:0
44#: model:ir.model,name:base_custom_attributes.model_attribute_location
45msgid "Attribute Location"
46msgstr "Attribute Location"
47
48#. module: base_custom_attributes
49#: code:addons/base_custom_attributes/custom_attributes.py:154
50#: view:attribute.option.wizard:0
51#, python-format
52msgid "Options Wizard"
53msgstr "Options Wizard"
54
55#. module: base_custom_attributes
56#: view:attribute.group:0
57msgid "Search Attribute Groups"
58msgstr "Rechercher des groupes d'attributs"
59
60#. module: base_custom_attributes
61#: field:attribute.attribute,attribute_type:0
62#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_attribute_type
63msgid "Type"
64msgstr "Type"
65
66#. module: base_custom_attributes
67#: field:attribute.set,attribute_group_ids:0
68#: model:ir.actions.act_window,name:base_custom_attributes.attribute_group_form_action
69#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_attribute_group_ids
70#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_group_action
71msgid "Attribute Groups"
72msgstr "Groupes d'attributs"
73
74#. module: base_custom_attributes
75#: field:attribute.attribute,create_date:0
76#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_create_date
77msgid "Created date"
78msgstr "Date de création"
79
80#. module: base_custom_attributes
81#: view:attribute.set:0
82msgid "Search Attribute Sets"
83msgstr "Rechercher des jeux d'attributs"
84
85#. module: base_custom_attributes
86#: view:attribute.option:0
87#: model:ir.model,name:base_custom_attributes.model_attribute_option
88msgid "Attribute Option"
89msgstr "Option d'attribut"
90
91#. module: base_custom_attributes
92#: selection:attribute.attribute,attribute_type:0
93msgid "Date"
94msgstr "Date"
95
96#. module: base_custom_attributes
97#: help:attribute.attribute,required_on_views:0
98msgid "If activated, the attribute will be mandatory on the views, but not in the database"
99msgstr "Si activé, l'attribut sera obligatoire dans les vues, mais pas dans la base de données."
100
101#. module: base_custom_attributes
102#: field:attribute.attribute,field_id:0
103#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_field_id
104msgid "Ir Model Fields"
105msgstr "Ir Model Fields"
106
107#. module: base_custom_attributes
108#: view:attribute.option.wizard:0
109msgid "options_placeholder"
110msgstr "options_placeholder"
111
112#. module: base_custom_attributes
113#: field:attribute.group,name:0
114#: field:attribute.option,name:0
115#: field:attribute.set,name:0
116#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_name
117#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_name
118#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_name
119msgid "Name"
120msgstr "Nom"
121
122#. module: base_custom_attributes
123#: help:attribute.attribute,serialized:0
124msgid "If serialized, the field will be stocked in the serialized field: attribute_custom_tmpl or attribute_custom_variant depending on the field based_on"
125msgstr "Si serialisé, le champ sera stocké dans un champ serialisé : attribute_custom_tmpl ou attribut_custom_variant selon la valeur du champ based_on"
126
127#. module: base_custom_attributes
128#: field:attribute.attribute,required_on_views:0
129#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_required_on_views
130msgid "Required (on views)"
131msgstr "Obligatoire (dans les vues)"
132
133#. module: base_custom_attributes
134#: model:ir.model,name:base_custom_attributes.model_ir_model_fields
135msgid "Fields"
136msgstr "Champs"
137
138#. module: base_custom_attributes
139#: view:attribute.attribute:0
140#: field:attribute.attribute,option_ids:0
141#: model:ir.actions.act_window,name:base_custom_attributes.attribute_option_form_action
142#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_option_ids
143#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_option_action
144msgid "Attribute Options"
145msgstr "Options d'attribut"
146
147#. module: base_custom_attributes
148#: field:attribute.attribute,serialized:0
149#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_serialized
150msgid "Field serialized"
151msgstr "Champ serialisé"
152
153#. module: base_custom_attributes
154#: code:addons/base_custom_attributes/custom_attributes.py:44
155#, python-format
156msgid "Error!"
157msgstr "Erreur !"
158
159#. module: base_custom_attributes
160#: view:attribute.option.wizard:0
161msgid "Validate"
162msgstr "Valider"
163
164#. module: base_custom_attributes
165#: selection:attribute.attribute,attribute_type:0
166msgid "Multiselect"
167msgstr "Multiselect"
168
169#. module: base_custom_attributes
170#: view:attribute.option:0
171msgid "Search Attribute Options"
172msgstr "Rechercher des options d'attribut"
173
174#. module: base_custom_attributes
175#: selection:attribute.attribute,attribute_type:0
176msgid "Integer"
177msgstr "Integer"
178
179#. module: base_custom_attributes
180#: field:attribute.group,attribute_ids:0
181#: model:ir.actions.act_window,name:base_custom_attributes.attribute_attribute_form_action
182#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_attribute_ids
183#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_attribute_action
184#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_in_admin
185msgid "Attributes"
186msgstr "Attributs"
187
188#. module: base_custom_attributes
189#: field:attribute.attribute,relation_model_id:0
190#: field:attribute.group,model_id:0
191#: field:attribute.set,model_id:0
192#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_attribute_relation_model_id
193#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_model_id
194#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_set_model_id
195msgid "Model"
196msgstr "Modèle"
197
198#. module: base_custom_attributes
199#: model:ir.actions.act_window,name:base_custom_attributes.attribute_set_form_action
200#: model:ir.ui.menu,name:base_custom_attributes.menu_attribute_set_action
201msgid "Attribute Sets"
202msgstr "Jeux d'attributs"
203
204#. module: base_custom_attributes
205#: view:attribute.attribute:0
206msgid "Load Options"
207msgstr "Charger les options"
208
209#. module: base_custom_attributes
210#: field:attribute.option,value_ref:0
211#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_value_ref
212msgid "Reference"
213msgstr "Référence"
214
215#. module: base_custom_attributes
216#: field:attribute.group,sequence:0
217#: field:attribute.location,sequence:0
218#: field:attribute.option,sequence:0
219#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_sequence
220#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_sequence
221#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_sequence
222msgid "Sequence"
223msgstr "Séquence"
224
225#. module: base_custom_attributes
226#: view:attribute.attribute:0
227#: field:attribute.location,attribute_id:0
228#: field:attribute.option,attribute_id:0
229#: field:attribute.option.wizard,attribute_id:0
230#: model:ir.model,name:base_custom_attributes.model_attribute_attribute
231#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_id
232#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_attribute_id
233#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_option_wizard_attribute_id
234msgid "Attribute"
235msgstr "Attribut"
236
237#. module: base_custom_attributes
238#: selection:attribute.attribute,attribute_type:0
239msgid "Float"
240msgstr "Float"
241
242#. module: base_custom_attributes
243#: field:attribute.group,attribute_set_id:0
244#: field:attribute.location,attribute_set_id:0
245#: view:attribute.set:0
246#: model:ir.model,name:base_custom_attributes.model_attribute_set
247#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_group_attribute_set_id
248#: model:ir.model.fields,field_description:base_custom_attributes.field_attribute_location_attribute_set_id
249msgid "Attribute Set"
250msgstr "Jeux d'attributs"
251
252#. module: base_custom_attributes
253#: selection:attribute.attribute,attribute_type:0
254msgid "Datetime"
255msgstr "Datetime"
256
257#. module: base_custom_attributes
258#: selection:attribute.attribute,attribute_type:0
259msgid "Char"
260msgstr "Char"
261
262#. module: base_custom_attributes
263#: selection:attribute.attribute,attribute_type:0
264msgid "Boolean"
265msgstr "Boolean"
266
267#. module: base_custom_attributes
268#: selection:attribute.attribute,attribute_type:0
269msgid "Text"
270msgstr "Text"
271
272#. module: base_custom_attributes
273#: view:attribute.option.wizard:0
274msgid "Cancel"
275msgstr "Annuler"
276
277#. module: base_custom_attributes
278#: model:ir.model,name:base_custom_attributes.model_attribute_option_wizard
279msgid "attribute.option.wizard"
280msgstr "attribute.option.wizard"
281
282#. module: base_custom_attributes
283#: sql_constraint:ir.model.fields:0
284msgid "The name of the field has to be uniq for a given model !"
285msgstr "Le nom du champ doit être unique pour un modèle donné !"
286
287#. module: base_custom_attributes
288#: selection:attribute.attribute,attribute_type:0
289msgid "Select"
290msgstr "Select"
291

Subscribers

People subscribed via source and target branches