Merge lp:~camptocamp/openerp-connector-magento/7.0-next-release-bundle-import-base into lp:~openerp-connector-core-editors/openerp-connector-magento/7.0-next-release

Proposed by Guewen Baconnier @ Camptocamp
Status: Superseded
Proposed branch: lp:~camptocamp/openerp-connector-magento/7.0-next-release-bundle-import-base
Merge into: lp:~openerp-connector-core-editors/openerp-connector-magento/7.0-next-release
Diff against target: 12336 lines (+6253/-5087) (has conflicts)
14 files modified
magentoerpconnect/AUTHORS (+1/-1)
magentoerpconnect/CHANGES.rst (+22/-5)
magentoerpconnect/__openerp__.py (+4/-3)
magentoerpconnect/i18n/de.po (+1025/-855)
magentoerpconnect/i18n/es.po (+1058/-885)
magentoerpconnect/i18n/fr.po (+1031/-859)
magentoerpconnect/i18n/it.po (+988/-811)
magentoerpconnect/i18n/magentoerpconnect.pot (+943/-786)
magentoerpconnect/i18n/nl.po (+1032/-861)
magentoerpconnect/magento_model.py (+21/-0)
magentoerpconnect/product.py (+105/-13)
magentoerpconnect/sale.py (+8/-1)
magentoerpconnect/unit/binder.py (+8/-5)
magentoerpconnect/unit/import_synchronizer.py (+7/-2)
Text conflict in magentoerpconnect/CHANGES.rst
Text conflict in magentoerpconnect/magento_model.py
To merge this branch: bzr merge lp:~camptocamp/openerp-connector-magento/7.0-next-release-bundle-import-base
Reviewer Review Type Date Requested Status
OpenERP Connector Core Editors Pending
Review via email: mp+220043@code.launchpad.net

This proposal has been superseded by a proposal from 2014-06-19.

Description of the change

Prepare import of bundle products so it can be handled in sub-modules.

It does not implement the import of bundle products, but only add a hook ConnectorUnit to implement it.
It imports the dependencies of the bundle though.

The PHP part of the connector has been updated in order to add the bundle information, so it needs to be updated on the Magento instance.

To post a comment you must log in.
989. By Guewen Baconnier @ Camptocamp

typo and example with custom backend

Revision history for this message
Chafique DELLI (chafique-delli) wrote :

Hi,

In my module who implement the import(orders with) bundle products, I need to map the type of product(if record['type_id'] == 'bundle': return {'type': 'service'}).
I thought extending the mapping product type from the base map in magentoerpconnect/product.py to treat the case of the bundle only if a flag is set via my module.
Like that, if my module is not installed then no mapping for record['type_id'] = 'bundle'.
What do you think?

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

Can you give a link please?

Revision history for this message
Chafique DELLI (chafique-delli) wrote :
990. By Guewen Baconnier @ Camptocamp

merge from lp:openerp-connector-magento/7.0

991. By Guewen Baconnier @ Camptocamp

Add possibility to have a custom mapper extension for the bundle products

992. By Guewen Baconnier @ Camptocamp

BundleImporter is an importer

993. By Guewen Baconnier @ Camptocamp

remove duplicated mapper

994. By Guewen Baconnier @ Camptocamp

remove duplicated method

995. By Guewen Baconnier @ Camptocamp

remove duplicated data entry

996. By Guewen Baconnier @ Camptocamp

importer entry point should be run(). Also takes binding_id as argument, it can be useful

997. By Guewen Baconnier @ Camptocamp

Correct test data for bundle products

Unmerged revisions

997. By Guewen Baconnier @ Camptocamp

Correct test data for bundle products

996. By Guewen Baconnier @ Camptocamp

importer entry point should be run(). Also takes binding_id as argument, it can be useful

995. By Guewen Baconnier @ Camptocamp

remove duplicated data entry

994. By Guewen Baconnier @ Camptocamp

remove duplicated method

993. By Guewen Baconnier @ Camptocamp

remove duplicated mapper

992. By Guewen Baconnier @ Camptocamp

BundleImporter is an importer

991. By Guewen Baconnier @ Camptocamp

Add possibility to have a custom mapper extension for the bundle products

990. By Guewen Baconnier @ Camptocamp

merge from lp:openerp-connector-magento/7.0

989. By Guewen Baconnier @ Camptocamp

typo and example with custom backend

988. By Guewen Baconnier @ Camptocamp

Prepare import of bundle products so it can be handled in sub-modules.

It does not implement the import of bundle products, but only add a hook ConnectorUnit to implement it.
It imports the dependencies of the bundle though.

The PHP part of the connector has been updated in order to add the bundle information, so it needs to be updated on the Magento instance.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'magentoerpconnect/AUTHORS'
2--- magentoerpconnect/AUTHORS 2014-05-06 15:46:57 +0000
3+++ magentoerpconnect/AUTHORS 2014-06-18 11:34:02 +0000
4@@ -13,7 +13,7 @@
5 * Alexis de Lattre at Akretion (tiny change)
6 * Olivier Distexhe at Akilon (tiny change)
7 * Romain Deheele at Camptocamp
8-* Jan-Philipp Fischer at Greencoding
9 * Thomas Rehn at initOS
10 * Katja Matthes at initOS
11 * Markus Schneider at initOS
12+* Jan-Philipp Fischer at greencoding
13
14=== modified file 'magentoerpconnect/CHANGES.rst'
15--- magentoerpconnect/CHANGES.rst 2014-05-26 08:28:17 +0000
16+++ magentoerpconnect/CHANGES.rst 2014-06-18 11:34:02 +0000
17@@ -1,8 +1,18 @@
18 Changelog
19 ---------
20
21-2.3.1.dev0 (unreleased)
22-~~~~~~~~~~~~~~~~~~~~~~~
23+2.4.2 (2014-06-16)
24+~~~~~~~~~~~~~~~~~~
25+
26+* Fix: AssertionError: Several classes found for <class 'openerp.addons.connector.unit.mapper.ImportMapper'> with session <Session db_name: pruebas, uid: 1>, model name: magento.product.product. Found: set([<class 'openerp.addons.magentoerpconnect.product.IsActiveProductImportMapper'>, <class 'openerp.addons.magentoerpconnect.product.ProductImportMapper'>])
27+
28+2.4.1 (2014-06-10)
29+~~~~~~~~~~~~~~~~~~
30+
31+* Fix: Binders should find records even if they are inactive (lp:1323719)
32+
33+2.4.0 (2014-05-26)
34+~~~~~~~~~~~~~~~~~~
35
36 * New helper in importer to import dependencies
37 * allow to customize the available versions without overriding the 'version' field
38@@ -16,9 +26,16 @@
39 * Fix: calculate correctly the discount ratio on sales order lines (lp:1201590)
40 * Possibility to exclude products from stock synchronizations
41 * Products disabled on Magento are imported disabled on OpenERP. An additional module allows more options.
42-* Possibility to disable import of sales orders per storeview
43-* Related Actions: open the form view on the record concerned by an export job, or open the Magento's admin page
44- on importing jobs
45+<<<<<<< TREE
46+* Possibility to disable import of sales orders per storeview
47+* Related Actions: open the form view on the record concerned by an export job, or open the Magento's admin page
48+ on importing jobs
49+=======
50+* Possibility to disable import of sales orders per storeview
51+* Related Actions: open the form view on the record concerned by an export job, or open the Magento's admin page
52+ on importing jobs
53+* Special order lines (shipping, ...) are now the last lines of an order, not the first
54+>>>>>>> MERGE-SOURCE
55
56
57 2.3.1 (2014-01-23)
58
59=== modified file 'magentoerpconnect/__openerp__.py'
60--- magentoerpconnect/__openerp__.py 2014-03-19 10:06:58 +0000
61+++ magentoerpconnect/__openerp__.py 2014-06-18 11:34:02 +0000
62@@ -21,7 +21,7 @@
63 ##############################################################################
64
65 {'name': 'Magento Connector',
66- 'version': '2.3.1',
67+ 'version': '2.4.2',
68 'category': 'Connector',
69 'depends': ['account',
70 'product',
71@@ -35,7 +35,7 @@
72 },
73 'author': 'Connector Core Editors',
74 'license': 'AGPL-3',
75- 'website': 'https://launchpad.net/magentoerpconnect',
76+ 'website': 'https://launchpad.net/openerp-connector-magento',
77 'description': """
78 Magento Connector
79 =================
80@@ -132,7 +132,8 @@
81 'delivery_view.xml',
82 'stock_view.xml',
83 'security/ir.model.access.csv',
84- 'payment_invoice.xml',
85+ 'payment_invoice.xml',
86+ 'payment_invoice.xml',
87 ],
88 'installable': True,
89 'application': True,
90
91=== modified file 'magentoerpconnect/i18n/de.po'
92--- magentoerpconnect/i18n/de.po 2014-04-12 10:07:56 +0000
93+++ magentoerpconnect/i18n/de.po 2014-06-18 11:34:02 +0000
94@@ -7,7 +7,7 @@
95 msgstr ""
96 "Project-Id-Version: openerp-connector-magento\n"
97 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
98-"POT-Creation-Date: 2013-05-01 12:45+0000\n"
99+"POT-Creation-Date: 2014-06-10 14:00+0000\n"
100 "PO-Revision-Date: 2014-02-26 21:07+0000\n"
101 "Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
102 "consulting.net>\n"
103@@ -15,119 +15,79 @@
104 "MIME-Version: 1.0\n"
105 "Content-Type: text/plain; charset=UTF-8\n"
106 "Content-Transfer-Encoding: 8bit\n"
107-"X-Launchpad-Export-Date: 2014-04-12 10:07+0000\n"
108-"X-Generator: Launchpad (build 16976)\n"
109-
110-#. module: magentoerpconnect
111-#: help:magento.backend,pricelist_id:0
112-msgid "The price list used to define the prices of the products in Magento."
113-msgstr ""
114-"Die Preisliste wird benutzt, um die Preise der Produkte in Magento zu "
115-"definieren."
116-
117-#. module: magentoerpconnect
118-#: help:magento.store,send_invoice_paid_mail:0
119-msgid ""
120-"Does the invoice export/creation should send an email notification on "
121-"Magento side?"
122-msgstr ""
123-"Soll bei Erstellung/Export der Rechnung eine E-Mail aus Magento versendet "
124-"werden ?"
125-
126-#. module: magentoerpconnect
127-#: view:magento.backend:0
128-msgid "Import sales orders from all store views"
129-msgstr "Importiere Aufträge von allen Store Views"
130-
131-#. module: magentoerpconnect
132-#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount_tax
133-msgid ""
134-"The tax amount computed in OpenERP doesn't match with the tax amount in "
135-"Magento.\n"
136-"\n"
137-"Cause:\n"
138-"The taxes are probably different between OpenERP and Magento. A fiscal "
139-"position could have changed the final price.\n"
140-"\n"
141-"Resolution:\n"
142-"Check your taxes and fiscal positions configuration and correct them if "
143-"necessary."
144-msgstr ""
145-"Die in OpenERP errechnete Steuer stimmt nicht mit der Magento Steuer "
146-"überein.\n"
147-"\n"
148-"Grund:\n"
149-"Vermutlich sind die Steuersätze in OpenERP und Magento nicht identisch. "
150-"Durch eine entsprechende Steuerzuordnung wurde möglicherweise der Endpreis "
151-"verändert.\n"
152-"\n"
153-"Lösung: \n"
154-"Überprüfen Sie die Steuern und auch Zuordnungen und korrigieren Sie diese "
155-"dann bei Bedarf."
156-
157-#. module: magentoerpconnect
158-#: help:magento.backend,warehouse_id:0
159-msgid "Warehouse used to compute the stock quantities."
160-msgstr "Zentrallager zur Bestände Berechnung"
161-
162-#. module: magentoerpconnect
163-#: field:magento.account.invoice,sync_date:0
164-#: field:magento.address,sync_date:0
165-#: field:magento.binding,sync_date:0
166-#: field:magento.product.category,sync_date:0
167-#: field:magento.product.product,sync_date:0
168-#: field:magento.res.partner,sync_date:0
169-#: field:magento.res.partner.category,sync_date:0
170-#: field:magento.sale.order,sync_date:0
171-#: field:magento.sale.order.line,sync_date:0
172-#: field:magento.stock.picking.out,sync_date:0
173-#: field:magento.store,sync_date:0
174-#: field:magento.storeview,sync_date:0
175-#: field:magento.website,sync_date:0
176-msgid "Last synchronization date"
177-msgstr "Letzte Synchronisierung"
178-
179-#. module: magentoerpconnect
180-#: help:magento.backend,default_category_id:0
181-msgid ""
182-"If a default category is selected, products imported without a category will "
183-"be linked to it."
184-msgstr ""
185-"Durch eine vor-eingestellte Standard Kategorie, werden alle Produkte, ohne "
186-"irgendeine Kategorie dann mit dieser verlinkt."
187-
188-#. module: magentoerpconnect
189-#: help:magento.storeview,import_orders_from_date:0
190-msgid ""
191-"do not consider non-imported sale orders before this date. Leave empty to "
192-"import all sale orders"
193-msgstr ""
194-"Vernachlässigen Sie die nicht-importierten Aufträge vor diesem Datum. Bitte "
195-"tragen Sie nichts ein, um sämtliche Aufträge zu importieren."
196-
197-#. module: magentoerpconnect
198-#: help:magento.store,send_picking_done_mail:0
199-msgid ""
200-"Does the picking export/creation should send an email notification on "
201-"Magento side?"
202-msgstr ""
203-"Soll bei Erstellung / Export eines Lieferscheins eine E-Mail aus Magento "
204-"versendet werden ?"
205-
206-#. module: magentoerpconnect
207-#: selection:magento.product.product,manage_stock:0
208-msgid "Do Not Manage Stock"
209-msgstr "Kein Lager verwalten"
210-
211-#. module: magentoerpconnect
212-#: field:connector.config.settings,module_magentoerpconnect_catalog:0
213-msgid "Handle the product's catalog (not implemented)"
214-msgstr "Verwalre den Produktkatalog (nicht implementiert)"
215-
216-#. module: magentoerpconnect
217-#: field:res.partner,company:0
218-msgid "Company"
219-msgstr "Unternehmen"
220+"X-Launchpad-Export-Date: 2014-06-11 06:38+0000\n"
221+"X-Generator: Launchpad (build 17031)\n"
222+
223+#. module: magentoerpconnect
224+#: help:magento.sale.order,magento_order_id:0
225+msgid "'order_id' field in Magento"
226+msgstr "'order_id' Feld in Magento"
227+
228+#. module: magentoerpconnect
229+#: view:magento.product.product:0
230+msgid "(recompute)"
231+msgstr "(neuberechnen)"
232+
233+#. module: magentoerpconnect
234+#: sql_constraint:magento.backend:0
235+msgid "A backend with the same sale prefix already exists"
236+msgstr ""
237+
238+#. module: magentoerpconnect
239+#: sql_constraint:magento.address:0
240+msgid "A partner address with same ID on Magento already exists."
241+msgstr ""
242+
243+#. module: magentoerpconnect
244+#: sql_constraint:magento.res.partner.category:0
245+msgid "A partner tag with same ID on Magento already exists."
246+msgstr "Ein Partner Tag mit der gleichen ID existiert bereits in Magento."
247+
248+#. module: magentoerpconnect
249+#: sql_constraint:magento.res.partner:0
250+msgid "A partner with same ID on Magento already exists for this website."
251+msgstr ""
252+"Ein Partner mit der ID existiert in Magento bereits für diese Webseite."
253+
254+#. module: magentoerpconnect
255+#: help:magento.backend,sale_prefix:0
256+msgid ""
257+"A prefix put before the name of imported sales orders.\n"
258+"For instance, if the prefix is 'mag-', the sales order 100000692 in Magento, "
259+"will be named 'mag-100000692' in OpenERP."
260+msgstr ""
261+
262+#. module: magentoerpconnect
263+#: sql_constraint:magento.product.category:0
264+msgid "A product category with same ID on Magento already exists."
265+msgstr ""
266+"Eine Produktkategorie mit der gleichen ID existiert bereits in Magento."
267+
268+#. module: magentoerpconnect
269+#: sql_constraint:magento.product.product:0
270+msgid "A product with the same ID on Magento already exists"
271+msgstr "Ein Produkt mit der gleichen ID existiert bereits in Magento."
272+
273+#. module: magentoerpconnect
274+#: sql_constraint:magento.sale.order:0
275+#: sql_constraint:magento.sale.order.line:0
276+msgid "A sale order line with the same ID on Magento already exists."
277+msgstr "Eine VK-Auftragszeile mit der ID existiert bereits in Magento."
278+
279+#. module: magentoerpconnect
280+#: sql_constraint:magento.stock.picking.out:0
281+msgid "A stock picking with same ID on Magento already exists."
282+msgstr "Ein Packauftrag mit der gleichen ID existiert bereits in Magento."
283+
284+#. module: magentoerpconnect
285+#: sql_constraint:magento.store:0
286+msgid "A store with the same ID on Magento already exists."
287+msgstr "Ein Store mit der ID existiert bereits in Magento."
288+
289+#. module: magentoerpconnect
290+#: sql_constraint:magento.storeview:0
291+msgid "A storeview with same ID on Magento already exists."
292+msgstr "Ein Storeview mit der ID existiert bereits in Magento."
293
294 #. module: magentoerpconnect
295 #: sql_constraint:magento.website:0
296@@ -135,33 +95,9 @@
297 msgstr "Eine Webseite mit der gleichen ID existiert bereits in Magento."
298
299 #. module: magentoerpconnect
300-#: field:magento.backend,import_categories_from_date:0
301-msgid "Import categories from date"
302-msgstr "Importiere Kategorien ab Datum"
303-
304-#. module: magentoerpconnect
305-#: view:account.invoice:0
306-#: field:account.invoice,magento_bind_ids:0
307-#: view:product.category:0
308-#: field:product.category,magento_bind_ids:0
309-#: view:product.product:0
310-#: field:product.product,magento_bind_ids:0
311-#: view:res.partner:0
312-#: field:res.partner,magento_bind_ids:0
313-#: field:res.partner.category,magento_bind_ids:0
314-#: field:sale.order,magento_bind_ids:0
315-#: field:sale.order.line,magento_bind_ids:0
316-#: field:sale.shop,magento_bind_ids:0
317-#: field:stock.picking,magento_bind_ids:0
318-#: view:stock.picking.out:0
319-#: field:stock.picking.out,magento_bind_ids:0
320-msgid "Magento Bindings"
321-msgstr "Magento Verbindungen"
322-
323-#. module: magentoerpconnect
324-#: help:connector.config.settings,module_magentoerpconnect_catalog:0
325-msgid "This installs the module magentoerpconnect_catalog."
326-msgstr "Dies installiert das Modul magentoerpconnect_catalog"
327+#: view:magento.backend:0
328+msgid "API"
329+msgstr ""
330
331 #. module: magentoerpconnect
332 #: field:magento.address,is_magento_order_address:0
333@@ -169,124 +105,58 @@
334 msgstr "Adresse von einer Magento Bestellung"
335
336 #. module: magentoerpconnect
337-#: field:magento.sale.order,magento_order_id:0
338-msgid "Magento Order ID"
339-msgstr "Magento Bestell ID"
340-
341-#. module: magentoerpconnect
342-#: model:ir.model,name:magentoerpconnect.model_magentoerpconnect_installed
343-msgid "magentoerpconnect.installed"
344+#: field:magento.backend,admin_location:0
345+msgid "Admin Location"
346 msgstr ""
347
348 #. module: magentoerpconnect
349-#: help:connector.config.settings,module_magentoerpconnect_export_partner:0
350-msgid "This installs the module magentoerpconnect_export_partner."
351-msgstr "Dies installiert das Modul magentoerpconnect_export_partner."
352-
353-#. module: magentoerpconnect
354-#: field:magento.sale.order.line,notes:0
355-msgid "Notes"
356-msgstr "Notizen"
357-
358-#. module: magentoerpconnect
359-#: field:magento.sale.order,openerp_id:0
360-msgid "Sale Order"
361-msgstr "VK-Auftrag"
362-
363-#. module: magentoerpconnect
364-#: field:magento.stock.picking.out,openerp_id:0
365-msgid "Stock Picking"
366-msgstr "Lagerpackauftrag"
367-
368-#. module: magentoerpconnect
369-#: view:connector.config.settings:0
370-msgid "Extensions"
371-msgstr "Erweiterungen"
372-
373-#. module: magentoerpconnect
374 #: view:magento.backend:0
375 msgid "Advanced Configuration"
376 msgstr "Erweiterte Einstellungen"
377
378 #. module: magentoerpconnect
379-#: field:magento.res.partner,group_id:0
380-msgid "Magento Group (Category)"
381-msgstr "Magento Gruppe (Kategorie)"
382-
383-#. module: magentoerpconnect
384-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_store
385-#: view:magento.website:0
386-#: field:magento.website,store_ids:0
387-msgid "Stores"
388-msgstr "Stores"
389-
390-#. module: magentoerpconnect
391-#: field:magento.backend,product_stock_field_id:0
392-msgid "Stock Field"
393-msgstr "Lagerfeld"
394-
395-#. module: magentoerpconnect
396-#: field:magento.res.partner.category,openerp_id:0
397-msgid "Partner Category"
398-msgstr "Partnerkategorie"
399-
400-#. module: magentoerpconnect
401-#: help:magento.product.product,magento_qty:0
402-msgid "Last computed quantity to send on Magento."
403-msgstr "Zuletzt errechnete Anzahl die zu Magento geschickt wird."
404-
405-#. module: magentoerpconnect
406-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_root
407-#: view:res.partner.category:0
408-msgid "Magento"
409-msgstr "Magento"
410-
411-#. module: magentoerpconnect
412-#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
413-msgid "connector.config.settings"
414-msgstr ""
415-
416-#. module: magentoerpconnect
417-#: field:magento.backend,import_products_from_date:0
418-msgid "Import products from date"
419-msgstr "Importiere Produkte vom Datum"
420-
421-#. module: magentoerpconnect
422-#: model:ir.model,name:magentoerpconnect.model_res_partner
423-#: field:magento.address,openerp_id:0
424-#: field:magento.res.partner,openerp_id:0
425-msgid "Partner"
426-msgstr "Partner"
427-
428-#. module: magentoerpconnect
429-#: model:ir.model,name:magentoerpconnect.model_sale_order
430-msgid "Sales Order"
431-msgstr "VK-Auftrag"
432-
433-#. module: magentoerpconnect
434-#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
435-msgid "Delivery Orders"
436-msgstr "Auslieferungsaufträge"
437-
438-#. module: magentoerpconnect
439-#: model:ir.model,name:magentoerpconnect.model_sale_order_line
440-msgid "Sales Order Line"
441-msgstr "Auftragsposition"
442-
443-#. module: magentoerpconnect
444-#: field:connector.config.settings,module_magentoerpconnect_pricing:0
445-msgid "Prices are managed in OpenERP with pricelists"
446-msgstr "Preise sind in OpenERP mit Preislisten verwaltet"
447-
448-#. module: magentoerpconnect
449-#: field:magento.address,is_default_shipping:0
450-msgid "Default Shipping"
451-msgstr "Vorgegebener Versand"
452-
453-#. module: magentoerpconnect
454-#: sql_constraint:magento.stock.picking.out:0
455-msgid "A stock picking with same ID on Magento already exists."
456-msgstr "Ein Packauftrag mit der gleichen ID existiert bereits in Magento."
457+#: help:magento.res.partner,consider_as_company:0
458+msgid ""
459+"An account imported with a 'company' in the billing address is considered as "
460+"a company.\n"
461+" The partner takes the name of the company and is not merged with the "
462+"billing address."
463+msgstr ""
464+
465+#. module: magentoerpconnect
466+#: sql_constraint:magento.account.invoice:0
467+msgid "An invoice with the same ID on Magento already exists."
468+msgstr "Eine Rechnung mit der ID existiert bereits in Magento."
469+
470+#. module: magentoerpconnect
471+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
472+msgid "Backends"
473+msgstr "Backends"
474+
475+#. module: magentoerpconnect
476+#: field:magento.backend,auth_basic_password:0
477+msgid "Basic Auth. Password"
478+msgstr ""
479+
480+#. module: magentoerpconnect
481+#: field:magento.backend,auth_basic_username:0
482+msgid "Basic Auth. Username"
483+msgstr ""
484+
485+#. module: magentoerpconnect
486+#: help:magento.backend,auth_basic_password:0
487+msgid "Basic access authentication web server side password"
488+msgstr ""
489+
490+#. module: magentoerpconnect
491+#: help:magento.backend,auth_basic_username:0
492+msgid "Basic access authentication web server side username"
493+msgstr ""
494+
495+#. module: magentoerpconnect
496+#: field:res.partner,birthday:0
497+msgid "Birthday"
498+msgstr "Geburtstag"
499
500 #. module: magentoerpconnect
501 #: view:magento.backend:0
502@@ -308,6 +178,23 @@
503 "die dies so früh wie möglich erledigen."
504
505 #. module: magentoerpconnect
506+#: model:ir.model,name:magentoerpconnect.model_delivery_carrier
507+msgid "Carrier"
508+msgstr "Frachtführer"
509+
510+#. module: magentoerpconnect
511+#: help:magento.storeview,no_sales_order_sync:0
512+msgid ""
513+"Check if the storeview is active in Magento but its sales orders should not "
514+"be imported."
515+msgstr ""
516+
517+#. module: magentoerpconnect
518+#: help:magento.product.product,no_stock_sync:0
519+msgid "Check this to exclude the product from stock synchronizations."
520+msgstr ""
521+
522+#. module: magentoerpconnect
523 #: help:magento.backend,product_stock_field_id:0
524 msgid ""
525 "Choose the field of the product which will be used for stock inventory "
526@@ -319,55 +206,137 @@
527 "Wenn leer, wird die verfügbare Menge benutzt."
528
529 #. module: magentoerpconnect
530-#: sql_constraint:magento.product.product:0
531-msgid "A product with the same ID on Magento already exists"
532-msgstr "Ein Produkt mit der gleichen ID existiert bereits in Magento."
533-
534-#. module: magentoerpconnect
535-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
536-msgid "Backends"
537-msgstr "Backends"
538-
539-#. module: magentoerpconnect
540-#: field:magento.backend,location:0
541-msgid "Location"
542-msgstr "Standort"
543-
544-#. module: magentoerpconnect
545-#: model:ir.model,name:magentoerpconnect.model_stock_picking
546-msgid "Picking List"
547-msgstr "Entnahmeliste"
548-
549-#. module: magentoerpconnect
550-#: field:magento.backend,warehouse_id:0
551-msgid "Warehouse"
552-msgstr "Lager"
553-
554-#. module: magentoerpconnect
555-#: field:magento.backend,catalog_price_tax_included:0
556-msgid "Prices include tax"
557-msgstr "Preise inkl. Steuer"
558-
559-#. module: magentoerpconnect
560-#: view:magento.backend:0
561-msgid "Import products categories since"
562-msgstr "Importiere Produktkategorien seit"
563-
564-#. module: magentoerpconnect
565-#: field:magento.sale.order.line,openerp_id:0
566-msgid "Sale Order Line"
567-msgstr "Verkaufsauftragsposition"
568-
569-#. module: magentoerpconnect
570-#: field:magento.backend,username:0
571-msgid "Username"
572-msgstr "Benutzername"
573-
574-#. module: magentoerpconnect
575-#: model:ir.model,name:magentoerpconnect.model_product_category
576-#: field:magento.product.category,openerp_id:0
577-msgid "Product Category"
578-msgstr "Produktkategorie"
579+#: field:magento.storeview,code:0
580+#: field:magento.website,code:0
581+msgid "Code"
582+msgstr "Code"
583+
584+#. module: magentoerpconnect
585+#: view:res.partner:0
586+#: field:res.partner,company:0
587+msgid "Company"
588+msgstr "Unternehmen"
589+
590+#. module: magentoerpconnect
591+#: selection:magento.stock.picking.out,picking_method:0
592+msgid "Complete"
593+msgstr "Vollständig"
594+
595+#. module: magentoerpconnect
596+#: field:magento.product.product,magento_qty:0
597+msgid "Computed Quantity"
598+msgstr "Errechnete Menge"
599+
600+#. module: magentoerpconnect
601+#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
602+msgid "Connector Configuration"
603+msgstr ""
604+
605+#. module: magentoerpconnect
606+#: field:magento.res.partner,consider_as_company:0
607+msgid "Considered as company"
608+msgstr ""
609+
610+#. module: magentoerpconnect
611+#: view:payment.method:0
612+msgid "Create invoice on"
613+msgstr ""
614+
615+#. module: magentoerpconnect
616+#: field:magento.store,create_invoice_on:0
617+#: field:payment.method,create_invoice_on:0
618+msgid "Create invoice on action"
619+msgstr ""
620+
621+#. module: magentoerpconnect
622+#: field:magento.address,created_at:0
623+#: field:magento.product.product,created_at:0
624+#: field:magento.res.partner,created_at:0
625+msgid "Created At (on Magento)"
626+msgstr "Erstellt am (in Magento)"
627+
628+#. module: magentoerpconnect
629+#: field:magento.backend,use_custom_api_path:0
630+msgid "Custom Api Path"
631+msgstr ""
632+
633+#. module: magentoerpconnect
634+#: field:magento.address,is_default_billing:0
635+msgid "Default Invoice"
636+msgstr "Voreingestellte Rechnung"
637+
638+#. module: magentoerpconnect
639+#: field:magento.backend,default_lang_id:0
640+msgid "Default Language"
641+msgstr "Standardsprache"
642+
643+#. module: magentoerpconnect
644+#: field:magento.backend,default_category_id:0
645+msgid "Default Product Category"
646+msgstr "Voreingestellte Produktkategorie"
647+
648+#. module: magentoerpconnect
649+#: field:magento.address,is_default_shipping:0
650+msgid "Default Shipping"
651+msgstr "Vorgegebener Versand"
652+
653+#. module: magentoerpconnect
654+#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
655+msgid "Delivery Orders"
656+msgstr "Auslieferungsaufträge"
657+
658+#. module: magentoerpconnect
659+#: field:magento.product.category,description:0
660+msgid "Description"
661+msgstr "Beschreibung"
662+
663+#. module: magentoerpconnect
664+#: selection:magento.product.product,manage_stock:0
665+msgid "Do Not Manage Stock"
666+msgstr "Kein Lager verwalten"
667+
668+#. module: magentoerpconnect
669+#: help:magento.store,send_invoice_paid_mail:0
670+msgid ""
671+"Does the invoice export/creation should send an email notification on "
672+"Magento side?"
673+msgstr ""
674+"Soll bei Erstellung/Export der Rechnung eine E-Mail aus Magento versendet "
675+"werden ?"
676+
677+#. module: magentoerpconnect
678+#: help:magento.store,send_picking_done_mail:0
679+msgid ""
680+"Does the picking export/creation should send an email notification on "
681+"Magento side?"
682+msgstr ""
683+"Soll bei Erstellung / Export eines Lieferscheins eine E-Mail aus Magento "
684+"versendet werden ?"
685+
686+#. module: magentoerpconnect
687+#: field:magento.res.partner,emailid:0
688+msgid "E-mail address"
689+msgstr "E-Mail Adresse"
690+
691+#. module: magentoerpconnect
692+#: field:magento.storeview,enabled:0
693+msgid "Enabled"
694+msgstr "Aktiviert"
695+
696+#. module: magentoerpconnect
697+#: field:connector.config.settings,module_magentoerpconnect_export_partner:0
698+msgid "Export Partners to Magento (experimental)"
699+msgstr "Exportiere Partner zu Magento (experimentell)"
700+
701+#. module: magentoerpconnect
702+#: field:delivery.carrier,magento_export_tracking:0
703+msgid "Export tracking numbers"
704+msgstr "Exportiere Sendungsverfolgungsnummern"
705+
706+#. module: magentoerpconnect
707+#: view:connector.config.settings:0
708+msgid "Extensions"
709+msgstr "Erweiterungen"
710
711 #. module: magentoerpconnect
712 #: field:magento.res.partner,guest_customer:0
713@@ -375,31 +344,14 @@
714 msgstr "Gastkunde"
715
716 #. module: magentoerpconnect
717-#: help:connector.config.settings,module_magentoerpconnect_pricing:0
718-msgid ""
719-"Prices are set in OpenERP and exported to Magento.\n"
720-"\n"
721-"This installs the module magentoerpconnect_pricing."
722+#: view:magento.backend:0
723+msgid "HTTP Authentication"
724 msgstr ""
725-"Preise sind in OpenERP gesetzt und zu Magento exportiert.\n"
726-"\n"
727-"Dies installier das Modul magentoerpconnect_pricing."
728-
729-#. module: magentoerpconnect
730-#: field:delivery.carrier,magento_carrier_code:0
731-msgid "Magento Base Carrier Code"
732-msgstr "Magento Basisspediteur Code"
733-
734-#. module: magentoerpconnect
735-#: view:magento.website:0
736-msgid "Import partners since"
737-msgstr "Importiere Partner seit"
738-
739-#. module: magentoerpconnect
740-#: view:magento.backend:0
741-#: view:magento.website:0
742-msgid "Import in background"
743-msgstr "Importiere im Hintergrund"
744+
745+#. module: magentoerpconnect
746+#: field:connector.config.settings,module_magentoerpconnect_catalog:0
747+msgid "Handle the product's catalog (not implemented)"
748+msgstr "Verwalre den Produktkatalog (nicht implementiert)"
749
750 #. module: magentoerpconnect
751 #: field:magento.account.invoice,magento_id:0
752@@ -419,41 +371,163 @@
753 msgstr "ID in Magento"
754
755 #. module: magentoerpconnect
756-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_store
757-msgid "Magento Stores"
758-msgstr "Magento Stores"
759-
760-#. module: magentoerpconnect
761-#: field:magento.backend,pricelist_id:0
762-#: field:magento.website,pricelist_id:0
763-msgid "Pricelist"
764-msgstr "Preisliste"
765-
766-#. module: magentoerpconnect
767-#: field:magento.sale.order,total_amount:0
768-msgid "Total amount"
769-msgstr "Gesamtbetrag"
770-
771-#. module: magentoerpconnect
772-#: model:ir.model,name:magentoerpconnect.model_magento_product_category
773-#: view:magento.product.category:0
774-msgid "Magento Product Category"
775-msgstr "Magento Produktkategorie"
776+#: help:magento.backend,default_category_id:0
777+msgid ""
778+"If a default category is selected, products imported without a category will "
779+"be linked to it."
780+msgstr ""
781+"Durch eine vor-eingestellte Standard Kategorie, werden alle Produkte, ohne "
782+"irgendeine Kategorie dann mit dieser verlinkt."
783+
784+#. module: magentoerpconnect
785+#: help:magento.backend,default_lang_id:0
786+msgid ""
787+"If a default language is selected, the records will be imported in the "
788+"translation of this language.\n"
789+"Note that a similar configuration exists for each storeview."
790+msgstr ""
791+
792+#. module: magentoerpconnect
793+#: view:magento.storeview:0
794+msgid "Import Sale Orders"
795+msgstr "Importiere VK-Aufträge"
796+
797+#. module: magentoerpconnect
798+#: view:magento.storeview:0
799+msgid "Import Sale Orders since"
800+msgstr "Importiere VK-Aufträge seit"
801+
802+#. module: magentoerpconnect
803+#: view:magento.backend:0
804+msgid "Import all customer groups"
805+msgstr "Importiere alle Kundengruppen"
806+
807+#. module: magentoerpconnect
808+#: field:magento.backend,import_categories_from_date:0
809+msgid "Import categories from date"
810+msgstr "Importiere Kategorien ab Datum"
811+
812+#. module: magentoerpconnect
813+#: view:magento.backend:0
814+#: view:magento.website:0
815+msgid "Import in background"
816+msgstr "Importiere im Hintergrund"
817+
818+#. module: magentoerpconnect
819+#: view:magento.backend:0
820+msgid "Import partners from all websites"
821+msgstr "Importiere Partner von allen Webseiten"
822+
823+#. module: magentoerpconnect
824+#: field:magento.website,import_partners_from_date:0
825+msgid "Import partners from date"
826+msgstr "Importiere Partner seit Datum"
827+
828+#. module: magentoerpconnect
829+#: view:magento.website:0
830+msgid "Import partners since"
831+msgstr "Importiere Partner seit"
832+
833+#. module: magentoerpconnect
834+#: view:magento.backend:0
835+msgid "Import products categories since"
836+msgstr "Importiere Produktkategorien seit"
837+
838+#. module: magentoerpconnect
839+#: field:magento.backend,import_products_from_date:0
840+msgid "Import products from date"
841+msgstr "Importiere Produkte vom Datum"
842+
843+#. module: magentoerpconnect
844+#: view:magento.backend:0
845+msgid "Import products since"
846+msgstr "Importiere/Update Produkte seit"
847+
848+#. module: magentoerpconnect
849+#: field:magento.storeview,import_orders_from_date:0
850+msgid "Import sale orders from date"
851+msgstr "Importiere VK-Aufträge vom Datum"
852+
853+#. module: magentoerpconnect
854+#: view:magento.backend:0
855+msgid "Import sales orders from all store views"
856+msgstr "Importiere Aufträge von allen Store Views"
857+
858+#. module: magentoerpconnect
859+#: view:magento.backend:0
860+#: view:magento.storeview:0
861+#: view:magento.website:0
862+msgid "Imports"
863+msgstr "Importe"
864+
865+#. module: magentoerpconnect
866+#: view:magento.store:0
867+#: view:magento.storeview:0
868+#: view:magento.website:0
869+msgid "Informations"
870+msgstr "Informationen"
871
872 #. module: magentoerpconnect
873 #: view:magento.product.product:0
874-msgid "(recompute)"
875-msgstr "(neuberechnen)"
876-
877-#. module: magentoerpconnect
878-#: field:magento.store,openerp_id:0
879-msgid "Sale Shop"
880-msgstr "Verkaufsshop"
881-
882-#. module: magentoerpconnect
883-#: field:magento.product.product,manage_stock:0
884-msgid "Manage Stock Level"
885-msgstr "Verwalte Lager Level"
886+msgid "Inventory Options"
887+msgstr "Sortimentsoptionen"
888+
889+#. module: magentoerpconnect
890+#: model:ir.model,name:magentoerpconnect.model_account_invoice
891+#: field:magento.account.invoice,openerp_id:0
892+msgid "Invoice"
893+msgstr "Rechnung"
894+
895+#. module: magentoerpconnect
896+#: field:magento.storeview,lang_id:0
897+msgid "Language"
898+msgstr "Sprache"
899+
900+#. module: magentoerpconnect
901+#: help:magento.product.product,magento_qty:0
902+msgid "Last computed quantity to send on Magento."
903+msgstr "Zuletzt errechnete Anzahl die zu Magento geschickt wird."
904+
905+#. module: magentoerpconnect
906+#: field:magento.account.invoice,sync_date:0
907+#: field:magento.address,sync_date:0
908+#: field:magento.binding,sync_date:0
909+#: field:magento.product.category,sync_date:0
910+#: field:magento.product.product,sync_date:0
911+#: field:magento.res.partner,sync_date:0
912+#: field:magento.res.partner.category,sync_date:0
913+#: field:magento.sale.order,sync_date:0
914+#: field:magento.sale.order.line,sync_date:0
915+#: field:magento.stock.picking.out,sync_date:0
916+#: field:magento.store,sync_date:0
917+#: field:magento.storeview,sync_date:0
918+#: field:magento.website,sync_date:0
919+msgid "Last synchronization date"
920+msgstr "Letzte Synchronisierung"
921+
922+#. module: magentoerpconnect
923+#: field:magento.backend,location:0
924+msgid "Location"
925+msgstr "Standort"
926+
927+#. module: magentoerpconnect
928+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_root
929+#: view:payment.method:0
930+#: view:res.partner.category:0
931+msgid "Magento"
932+msgstr "Magento"
933+
934+#. module: magentoerpconnect
935+#: model:ir.model,name:magentoerpconnect.model_magento_address
936+#: view:magento.address:0
937+msgid "Magento Address"
938+msgstr "Magento Adresse"
939+
940+#. module: magentoerpconnect
941+#: view:res.partner:0
942+#: field:res.partner,magento_address_bind_ids:0
943+msgid "Magento Address Bindings"
944+msgstr ""
945
946 #. module: magentoerpconnect
947 #: model:ir.model,name:magentoerpconnect.model_magento_backend
948@@ -475,45 +549,81 @@
949 msgstr "Magento Backend"
950
951 #. module: magentoerpconnect
952-#: view:magento.storeview:0
953-msgid "Import Sale Orders"
954-msgstr "Importiere VK-Aufträge"
955-
956-#. module: magentoerpconnect
957-#: field:magento.stock.picking.out,picking_method:0
958-msgid "Picking Method"
959-msgstr "Packmethode"
960-
961-#. module: magentoerpconnect
962+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_backend
963+msgid "Magento Backends"
964+msgstr "Magento Backends"
965+
966+#. module: magentoerpconnect
967+#: field:delivery.carrier,magento_carrier_code:0
968+msgid "Magento Base Carrier Code"
969+msgstr "Magento Basisspediteur Code"
970+
971+#. module: magentoerpconnect
972+#: model:ir.model,name:magentoerpconnect.model_magento_binding
973+#: model:ir.model,name:magentoerpconnect.model_magento_res_partner_category
974+msgid "Magento Binding (abstract)"
975+msgstr ""
976+
977+#. module: magentoerpconnect
978+#: view:account.invoice:0
979+#: field:account.invoice,magento_bind_ids:0
980+#: view:product.category:0
981+#: field:product.category,magento_bind_ids:0
982+#: view:product.product:0
983+#: field:product.product,magento_bind_ids:0
984 #: view:res.partner:0
985-#: field:res.partner,magento_address_bind_ids:0
986-msgid "Magento Address Bindings"
987+#: field:res.partner,magento_bind_ids:0
988+#: field:res.partner.category,magento_bind_ids:0
989+#: field:sale.order,magento_bind_ids:0
990+#: field:sale.order.line,magento_bind_ids:0
991+#: field:sale.shop,magento_bind_ids:0
992+#: field:stock.picking,magento_bind_ids:0
993+#: view:stock.picking.out:0
994+#: field:stock.picking.out,magento_bind_ids:0
995+msgid "Magento Bindings"
996+msgstr "Magento Verbindungen"
997+
998+#. module: magentoerpconnect
999+#: field:delivery.carrier,magento_code:0
1000+msgid "Magento Carrier Code"
1001 msgstr ""
1002
1003 #. module: magentoerpconnect
1004-#: field:magento.store,send_invoice_paid_mail:0
1005-msgid "Send email notification on invoice paid"
1006-msgstr "Sende E-Mail bei bezahlter Rechnung"
1007-
1008-#. module: magentoerpconnect
1009-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_storeview
1010-msgid "Magento Storeviews"
1011-msgstr "Magento Storeviews"
1012-
1013-#. module: magentoerpconnect
1014-#: view:magento.storeview:0
1015-msgid "Import Sale Orders since"
1016-msgstr "Importiere VK-Aufträge seit"
1017-
1018-#. module: magentoerpconnect
1019-#: selection:magento.product.product,backorders:0
1020-msgid "Sell Quantity < 0"
1021-msgstr "Verkaufmenge < 0"
1022-
1023-#. module: magentoerpconnect
1024-#: help:magento.sale.order,magento_order_id:0
1025-msgid "'order_id' field in Magento"
1026-msgstr "'order_id' Feld in Magento"
1027+#: field:magento.product.category,magento_child_ids:0
1028+msgid "Magento Child Categories"
1029+msgstr "Untergeordnete Magento Kategorien"
1030+
1031+#. module: magentoerpconnect
1032+#: view:magento.backend:0
1033+msgid "Magento Configuration"
1034+msgstr "Magento Konfiguration"
1035+
1036+#. module: magentoerpconnect
1037+#: model:ir.model,name:magentoerpconnect.model_magento_stock_picking_out
1038+#: view:magento.stock.picking.out:0
1039+msgid "Magento Delivery Order"
1040+msgstr "Magento Versandauftrag"
1041+
1042+#. module: magentoerpconnect
1043+#: field:magento.res.partner,group_id:0
1044+msgid "Magento Group (Category)"
1045+msgstr "Magento Gruppe (Kategorie)"
1046+
1047+#. module: magentoerpconnect
1048+#: model:ir.model,name:magentoerpconnect.model_magento_account_invoice
1049+#: view:magento.account.invoice:0
1050+msgid "Magento Invoice"
1051+msgstr "Magento Rechnung"
1052+
1053+#. module: magentoerpconnect
1054+#: field:magento.sale.order,magento_order_id:0
1055+msgid "Magento Order ID"
1056+msgstr "Magento Bestell ID"
1057+
1058+#. module: magentoerpconnect
1059+#: field:magento.sale.order,magento_order_line_ids:0
1060+msgid "Magento Order Lines"
1061+msgstr "Magento Auftragszeilen"
1062
1063 #. module: magentoerpconnect
1064 #: field:magento.product.category,magento_parent_id:0
1065@@ -521,132 +631,23 @@
1066 msgstr "Magento Überkategorie"
1067
1068 #. module: magentoerpconnect
1069-#: field:magento.res.partner,emailid:0
1070-msgid "E-mail address"
1071-msgstr "E-Mail Adresse"
1072-
1073-#. module: magentoerpconnect
1074-#: selection:magento.stock.picking.out,picking_method:0
1075-msgid "Partial"
1076-msgstr "Teilweise"
1077-
1078-#. module: magentoerpconnect
1079-#: model:ir.model,name:magentoerpconnect.model_sale_shop
1080-msgid "Sales Shop"
1081-msgstr "Verkaufsshop"
1082-
1083-#. module: magentoerpconnect
1084-#: field:magento.sale.order,total_amount_tax:0
1085-msgid "Total amount w. tax"
1086-msgstr "Gesamtbetrag inkl. Steuern"
1087-
1088-#. module: magentoerpconnect
1089-#: model:ir.model,name:magentoerpconnect.model_magento_storeview
1090-#: view:magento.storeview:0
1091-msgid "Magento Storeview"
1092-msgstr "Magento Storeview"
1093-
1094-#. module: magentoerpconnect
1095-#: field:magento.backend,default_lang_id:0
1096-msgid "Default Language"
1097-msgstr "Standardsprache"
1098-
1099-#. module: magentoerpconnect
1100-#: field:magento.sale.order,magento_parent_id:0
1101-msgid "Parent Magento Order"
1102-msgstr "Übergeordneter Vk-Auftrag"
1103-
1104-#. module: magentoerpconnect
1105-#: model:ir.model,name:magentoerpconnect.model_magento_address
1106-#: view:magento.address:0
1107-msgid "Magento Address"
1108-msgstr "Magento Adresse"
1109-
1110-#. module: magentoerpconnect
1111-#: view:magento.backend:0
1112-msgid "Update"
1113-msgstr "Update"
1114-
1115-#. module: magentoerpconnect
1116-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_storeview
1117-#: view:magento.store:0
1118-#: field:magento.store,storeview_ids:0
1119-msgid "Storeviews"
1120-msgstr "Storeviews"
1121-
1122-#. module: magentoerpconnect
1123-#: selection:magento.product.product,backorders:0
1124-#: selection:magento.product.product,manage_stock:0
1125-msgid "Use Default Config"
1126-msgstr "Verwende Standartkonfiguration"
1127-
1128-#. module: magentoerpconnect
1129-#: field:magento.storeview,store_id:0
1130-msgid "Store"
1131-msgstr "Store"
1132-
1133-#. module: magentoerpconnect
1134-#: field:magento.backend,website_ids:0
1135-msgid "Website"
1136-msgstr "Webseite"
1137-
1138-#. module: magentoerpconnect
1139-#: view:magento.backend:0
1140-msgid "Magento Configuration"
1141-msgstr "Magento Konfiguration"
1142-
1143-#. module: magentoerpconnect
1144-#: view:magento.backend:0
1145-msgid "Update all the products stock quantities"
1146-msgstr "Update alle Lagerstückzahlen"
1147-
1148-#. module: magentoerpconnect
1149-#: view:magento.backend:0
1150-msgid "Import partners from all websites"
1151-msgstr "Importiere Partner von allen Webseiten"
1152-
1153-#. module: magentoerpconnect
1154-#: view:connector.config.settings:0
1155-msgid "Magentoerpconnect"
1156-msgstr "Magentoerpconnect"
1157-
1158-#. module: magentoerpconnect
1159-#: view:magento.store:0
1160-#: view:magento.storeview:0
1161-#: view:magento.website:0
1162-msgid "Options"
1163-msgstr "Optionen"
1164-
1165-#. module: magentoerpconnect
1166-#: field:res.partner,birthday:0
1167-msgid "Birthday"
1168-msgstr "Geburtstag"
1169-
1170-#. module: magentoerpconnect
1171-#: field:magento.backend,default_category_id:0
1172-msgid "Default Product Category"
1173-msgstr "Voreingestellte Produktkategorie"
1174-
1175-#. module: magentoerpconnect
1176-#: field:magento.product.product,magento_qty:0
1177-msgid "Computed Quantity"
1178-msgstr "Errechnete Menge"
1179-
1180-#. module: magentoerpconnect
1181-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_website
1182-msgid "Magento Websites"
1183-msgstr "Magento Webseiten"
1184-
1185-#. module: magentoerpconnect
1186-#: model:ir.model,name:magentoerpconnect.model_magento_sale_order_line
1187-msgid "Magento Sale Order Line"
1188-msgstr "Magento Auftragszeile"
1189-
1190-#. module: magentoerpconnect
1191-#: sql_constraint:magento.product.category:0
1192-msgid "A product category with same ID on Magento already exists."
1193-msgstr ""
1194-"Eine Produktkategorie mit der gleichen ID existiert bereits in Magento."
1195+#: model:ir.model,name:magentoerpconnect.model_magento_res_partner
1196+#: field:magento.address,magento_partner_id:0
1197+#: view:magento.res.partner:0
1198+msgid "Magento Partner"
1199+msgstr "Magento Partner"
1200+
1201+#. module: magentoerpconnect
1202+#: model:ir.model,name:magentoerpconnect.model_magento_product_product
1203+#: view:magento.product.product:0
1204+msgid "Magento Product"
1205+msgstr "Magento Produkt"
1206+
1207+#. module: magentoerpconnect
1208+#: model:ir.model,name:magentoerpconnect.model_magento_product_category
1209+#: view:magento.product.category:0
1210+msgid "Magento Product Category"
1211+msgstr "Magento Produktkategorie"
1212
1213 #. module: magentoerpconnect
1214 #: field:magento.product.product,product_type:0
1215@@ -654,109 +655,51 @@
1216 msgstr "Magento Produkttyp"
1217
1218 #. module: magentoerpconnect
1219-#: field:magento.storeview,lang_id:0
1220-msgid "Language"
1221-msgstr "Sprache"
1222-
1223-#. module: magentoerpconnect
1224-#: field:magento.address,created_at:0
1225-#: field:magento.product.product,created_at:0
1226-#: field:magento.res.partner,created_at:0
1227-msgid "Created At (on Magento)"
1228-msgstr "Erstellt am (in Magento)"
1229-
1230-#. module: magentoerpconnect
1231-#: field:delivery.carrier,magento_export_tracking:0
1232-msgid "Export tracking numbers"
1233-msgstr "Exportiere Sendungsverfolgungsnummern"
1234-
1235-#. module: magentoerpconnect
1236-#: field:magento.storeview,sort_order:0
1237-#: field:magento.website,sort_order:0
1238-msgid "Sort Order"
1239-msgstr "Sortiere VK-Auftrag"
1240-
1241-#. module: magentoerpconnect
1242 #: field:magento.backend,product_binding_ids:0
1243 #: field:magento.website,product_binding_ids:0
1244 msgid "Magento Products"
1245 msgstr "Magento Produkte"
1246
1247 #. module: magentoerpconnect
1248-#: field:magento.storeview,import_orders_from_date:0
1249-msgid "Import sale orders from date"
1250-msgstr "Importiere VK-Aufträge vom Datum"
1251-
1252-#. module: magentoerpconnect
1253-#: model:ir.model,name:magentoerpconnect.model_res_partner_category
1254-msgid "Partner Categories"
1255-msgstr "Partnerkategorien"
1256-
1257-#. module: magentoerpconnect
1258-#: field:magento.address,is_default_billing:0
1259-msgid "Default Invoice"
1260-msgstr "Voreingestellte Rechnung"
1261-
1262-#. module: magentoerpconnect
1263+#: model:ir.model,name:magentoerpconnect.model_magento_sale_order
1264+#: field:magento.account.invoice,magento_order_id:0
1265+#: field:magento.sale.order.line,magento_order_id:0
1266+#: field:magento.stock.picking.out,magento_order_id:0
1267+msgid "Magento Sale Order"
1268+msgstr "Magento VK-Auftrag"
1269+
1270+#. module: magentoerpconnect
1271+#: model:ir.model,name:magentoerpconnect.model_magento_sale_order_line
1272+msgid "Magento Sale Order Line"
1273+msgstr "Magento Auftragszeile"
1274+
1275+#. module: magentoerpconnect
1276+#: model:ir.model,name:magentoerpconnect.model_magento_store
1277 #: view:magento.store:0
1278-#: view:magento.storeview:0
1279-#: view:magento.website:0
1280-msgid "Informations"
1281-msgstr "Informationen"
1282-
1283-#. module: magentoerpconnect
1284-#: field:magento.storeview,code:0
1285-#: field:magento.website,code:0
1286-msgid "Code"
1287-msgstr "Code"
1288-
1289-#. module: magentoerpconnect
1290-#: field:magento.sale.order.line,tax_rate:0
1291-msgid "Tax Rate"
1292-msgstr "Steuersatz"
1293-
1294-#. module: magentoerpconnect
1295-#: view:magento.backend:0
1296-#: view:magento.storeview:0
1297-#: view:magento.website:0
1298-msgid "Imports"
1299-msgstr "Importe"
1300-
1301-#. module: magentoerpconnect
1302-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_backend
1303-msgid "Magento Backends"
1304-msgstr "Magento Backends"
1305-
1306-#. module: magentoerpconnect
1307-#: field:magento.product.category,magento_child_ids:0
1308-msgid "Magento Child Categories"
1309-msgstr "Untergeordnete Magento Kategorien"
1310-
1311-#. module: magentoerpconnect
1312-#: field:connector.config.settings,module_magentoerpconnect_export_partner:0
1313-msgid "Export Partners to Magento (experimental)"
1314-msgstr "Exportiere Partner zu Magento (experimentell)"
1315-
1316-#. module: magentoerpconnect
1317-#: field:magento.backend,version:0
1318-msgid "Version"
1319-msgstr "Version"
1320-
1321-#. module: magentoerpconnect
1322-#: model:ir.model,name:magentoerpconnect.model_account_invoice
1323-#: field:magento.account.invoice,openerp_id:0
1324-msgid "Invoice"
1325-msgstr "Rechnung"
1326-
1327-#. module: magentoerpconnect
1328-#: field:delivery.carrier,magento_code:0
1329-msgid "Magento Carrier Code"
1330-msgstr ""
1331-
1332-#. module: magentoerpconnect
1333-#: sql_constraint:magento.res.partner.category:0
1334-msgid "A partner tag with same ID on Magento already exists."
1335-msgstr "Ein Partner Tag mit der gleichen ID existiert bereits in Magento."
1336+msgid "Magento Store"
1337+msgstr "Magento Store"
1338+
1339+#. module: magentoerpconnect
1340+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_store
1341+msgid "Magento Stores"
1342+msgstr "Magento Stores"
1343+
1344+#. module: magentoerpconnect
1345+#: model:ir.model,name:magentoerpconnect.model_magento_storeview
1346+#: field:magento.sale.order,storeview_id:0
1347+#: view:magento.storeview:0
1348+msgid "Magento Storeview"
1349+msgstr "Magento Storeview"
1350+
1351+#. module: magentoerpconnect
1352+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_storeview
1353+msgid "Magento Storeviews"
1354+msgstr "Magento Storeviews"
1355+
1356+#. module: magentoerpconnect
1357+#: field:delivery.carrier,magento_tracking_title:0
1358+msgid "Magento Tracking Title"
1359+msgstr "Magento Sendungsverfolgungstitel"
1360
1361 #. module: magentoerpconnect
1362 #: field:magento.res.partner,taxvat:0
1363@@ -764,141 +707,6 @@
1364 msgstr "Magento VAT"
1365
1366 #. module: magentoerpconnect
1367-#: field:magento.res.partner.category,tax_class_id:0
1368-msgid "Tax Class ID"
1369-msgstr "Steuersatz ID"
1370-
1371-#. module: magentoerpconnect
1372-#: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount
1373-msgid "Total Amount differs from Magento"
1374-msgstr "Gesamtwert unterscheidet sich zu Magento"
1375-
1376-#. module: magentoerpconnect
1377-#: field:magento.store,send_picking_done_mail:0
1378-msgid "Send email notification on picking done"
1379-msgstr "Sende Versandbestätigung per E-Mail"
1380-
1381-#. module: magentoerpconnect
1382-#: model:ir.model,name:magentoerpconnect.model_magento_binding
1383-#: model:ir.model,name:magentoerpconnect.model_magento_res_partner_category
1384-msgid "Magento Binding (abstract)"
1385-msgstr ""
1386-
1387-#. module: magentoerpconnect
1388-#: model:ir.model,name:magentoerpconnect.model_magento_account_invoice
1389-msgid "Magento Account Invoice"
1390-msgstr ""
1391-
1392-#. module: magentoerpconnect
1393-#: sql_constraint:magento.store:0
1394-msgid "A store with the same ID on Magento already exists."
1395-msgstr "Ein Store mit der ID existiert bereits in Magento."
1396-
1397-#. module: magentoerpconnect
1398-#: model:ir.model,name:magentoerpconnect.model_magento_res_partner
1399-#: field:magento.address,magento_partner_id:0
1400-#: view:magento.res.partner:0
1401-msgid "Magento Partner"
1402-msgstr "Magento Partner"
1403-
1404-#. module: magentoerpconnect
1405-#: sql_constraint:magento.storeview:0
1406-msgid "A storeview with same ID on Magento already exists."
1407-msgstr "Ein Storeview mit der ID existiert bereits in Magento."
1408-
1409-#. module: magentoerpconnect
1410-#: model:ir.model,name:magentoerpconnect.model_magento_stock_picking_out
1411-#: view:magento.stock.picking.out:0
1412-msgid "Magento Delivery Order"
1413-msgstr "Magento Versandauftrag"
1414-
1415-#. module: magentoerpconnect
1416-#: view:magento.backend:0
1417-msgid "Import products since"
1418-msgstr "Importiere/Update Produkte seit"
1419-
1420-#. module: magentoerpconnect
1421-#: field:magento.product.category,description:0
1422-msgid "Description"
1423-msgstr "Beschreibung"
1424-
1425-#. module: magentoerpconnect
1426-#: selection:magento.product.product,backorders:0
1427-msgid "Sell Quantity < 0 and Use Customer Notification"
1428-msgstr "Verkaufsmenge < 0 und benutzte Kundenbenachrichtigungen"
1429-
1430-#. module: magentoerpconnect
1431-#: sql_constraint:magento.account.invoice:0
1432-msgid "An invoice with the same ID on Magento already exists."
1433-msgstr "Eine Rechnung mit der ID existiert bereits in Magento."
1434-
1435-#. module: magentoerpconnect
1436-#: sql_constraint:magento.res.partner:0
1437-msgid "A partner with same ID on Magento already exists for this website."
1438-msgstr ""
1439-"Ein Partner mit der ID existiert in Magento bereits für diese Webseite."
1440-
1441-#. module: magentoerpconnect
1442-#: view:magento.backend:0
1443-msgid "e.g. http://my.magento.com"
1444-msgstr "e.g. http://my.magento.com"
1445-
1446-#. module: magentoerpconnect
1447-#: view:magento.account.invoice:0
1448-msgid "Magento Invoice"
1449-msgstr "Magento Rechnung"
1450-
1451-#. module: magentoerpconnect
1452-#: field:magento.backend,password:0
1453-msgid "Password"
1454-msgstr "Passwort"
1455-
1456-#. module: magentoerpconnect
1457-#: view:magento.backend:0
1458-msgid "Main Configuration"
1459-msgstr "Hauptkonfiguration"
1460-
1461-#. module: magentoerpconnect
1462-#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount
1463-msgid ""
1464-"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
1465-"\n"
1466-"Cause:\n"
1467-"The taxes are probably different between OpenERP and Magento. A fiscal "
1468-"position could have changed the final price.\n"
1469-"\n"
1470-"Resolution:\n"
1471-"Check your taxes and fiscal positions configuration and correct them if "
1472-"necessary."
1473-msgstr ""
1474-"Die in OpenERP errechnete Summe stimmt nicht mit der aus Magento überein.\n"
1475-"\n"
1476-"Grund:\n"
1477-"Die Steuern sind evtl. verschieden zwischen OpenERP und Magento. Eine "
1478-"Finanzposition hat die Endsumme evtl. verändert.\n"
1479-"\n"
1480-"Lösung:\n"
1481-"Überprüfen Sie Steuern und Finanzpositionen und korrigieren Sie diese, falls "
1482-"nötig."
1483-
1484-#. module: magentoerpconnect
1485-#: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount_tax
1486-msgid "Total Tax Amount differs from Magento"
1487-msgstr "Steuersumme unterscheidet sich zu Magento"
1488-
1489-#. module: magentoerpconnect
1490-#: view:magento.backend:0
1491-msgid "Import all customer groups"
1492-msgstr "Importiere alle Kundengruppen"
1493-
1494-#. module: magentoerpconnect
1495-#: field:magento.backend,name:0
1496-#: field:magento.storeview,name:0
1497-#: field:magento.website,name:0
1498-msgid "Name"
1499-msgstr "Name"
1500-
1501-#. module: magentoerpconnect
1502 #: model:ir.model,name:magentoerpconnect.model_magento_website
1503 #: field:magento.address,website_id:0
1504 #: field:magento.res.partner,website_id:0
1505@@ -908,9 +716,19 @@
1506 msgstr "Magento Webseite"
1507
1508 #. module: magentoerpconnect
1509-#: field:magento.storeview,enabled:0
1510-msgid "Enabled"
1511-msgstr "Aktiviert"
1512+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_website
1513+msgid "Magento Websites"
1514+msgstr "Magento Webseiten"
1515+
1516+#. module: magentoerpconnect
1517+#: view:connector.config.settings:0
1518+msgid "Magentoerpconnect"
1519+msgstr "Magentoerpconnect"
1520+
1521+#. module: magentoerpconnect
1522+#: view:magento.backend:0
1523+msgid "Main Configuration"
1524+msgstr "Hauptkonfiguration"
1525
1526 #. module: magentoerpconnect
1527 #: field:magento.product.product,backorders:0
1528@@ -918,46 +736,31 @@
1529 msgstr "Verwalte Inventarrücksendungen"
1530
1531 #. module: magentoerpconnect
1532-#: model:ir.model,name:magentoerpconnect.model_product_product
1533-#: field:magento.product.product,openerp_id:0
1534-msgid "Product"
1535-msgstr "Produkt"
1536-
1537-#. module: magentoerpconnect
1538-#: view:magento.backend:0
1539-msgid "Synchronize Metadata"
1540-msgstr "Synchronisiere Metadaten"
1541-
1542-#. module: magentoerpconnect
1543-#: help:magento.website,pricelist_id:0
1544-msgid ""
1545-"The pricelist used to define the prices of the products in Magento for this "
1546-"website.\n"
1547-"Choose a pricelist only if the prices are different for this website.\n"
1548-"When empty, the default price will be used."
1549-msgstr ""
1550-"Die Preisliste, welche benutzt wird, um die Preise der Produkte der Webseite "
1551-"in Magento zu definieren.\n"
1552-"Wählen Sie eine Preisliste nur, wenn die Preis sich für diese Webseite "
1553-"unterscheiden. \n"
1554-"Wenn leer, wird der Standartpreis benutzt."
1555-
1556-#. module: magentoerpconnect
1557-#: model:ir.model,name:magentoerpconnect.model_delivery_carrier
1558-msgid "Carrier"
1559-msgstr "Frachtführer"
1560-
1561-#. module: magentoerpconnect
1562-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_website
1563-#: view:magento.backend:0
1564-#: field:magento.product.product,website_ids:0
1565-msgid "Websites"
1566-msgstr "Webseiten"
1567-
1568-#. module: magentoerpconnect
1569-#: view:magento.product.product:0
1570-msgid "Inventory Options"
1571-msgstr "Sortimentsoptionen"
1572+#: selection:magento.product.product,manage_stock:0
1573+msgid "Manage Stock"
1574+msgstr ""
1575+
1576+#. module: magentoerpconnect
1577+#: field:magento.product.product,manage_stock:0
1578+msgid "Manage Stock Level"
1579+msgstr "Verwalte Lager Level"
1580+
1581+#. module: magentoerpconnect
1582+#: field:magento.backend,name:0
1583+#: field:magento.storeview,name:0
1584+#: field:magento.website,name:0
1585+msgid "Name"
1586+msgstr "Name"
1587+
1588+#. module: magentoerpconnect
1589+#: field:magento.res.partner,newsletter:0
1590+msgid "Newsletter"
1591+msgstr "Newsletter"
1592+
1593+#. module: magentoerpconnect
1594+#: field:magento.storeview,no_sales_order_sync:0
1595+msgid "No Sales Order Synchronization"
1596+msgstr ""
1597
1598 #. module: magentoerpconnect
1599 #: selection:magento.product.product,backorders:0
1600@@ -965,6 +768,16 @@
1601 msgstr "Kein Verkauf"
1602
1603 #. module: magentoerpconnect
1604+#: field:magento.product.product,no_stock_sync:0
1605+msgid "No Stock Synchronization"
1606+msgstr ""
1607+
1608+#. module: magentoerpconnect
1609+#: field:magento.sale.order.line,notes:0
1610+msgid "Notes"
1611+msgstr "Notizen"
1612+
1613+#. module: magentoerpconnect
1614 #: view:magento.backend:0
1615 msgid ""
1616 "Once imported,\n"
1617@@ -984,14 +797,329 @@
1618 " Menü 'Connectors > Checkpunkte'."
1619
1620 #. module: magentoerpconnect
1621-#: field:delivery.carrier,magento_tracking_title:0
1622-msgid "Magento Tracking Title"
1623-msgstr "Magento Sendungsverfolgungstitel"
1624-
1625-#. module: magentoerpconnect
1626-#: selection:magento.product.product,manage_stock:0
1627-msgid "Manage Stock"
1628-msgstr ""
1629+#: view:magento.store:0
1630+#: view:magento.storeview:0
1631+#: view:magento.website:0
1632+msgid "Options"
1633+msgstr "Optionen"
1634+
1635+#. module: magentoerpconnect
1636+#: selection:magento.store,create_invoice_on:0
1637+#: selection:payment.method,create_invoice_on:0
1638+msgid "Paid"
1639+msgstr ""
1640+
1641+#. module: magentoerpconnect
1642+#: field:magento.sale.order,magento_parent_id:0
1643+msgid "Parent Magento Order"
1644+msgstr "Übergeordneter Vk-Auftrag"
1645+
1646+#. module: magentoerpconnect
1647+#: selection:magento.stock.picking.out,picking_method:0
1648+msgid "Partial"
1649+msgstr "Teilweise"
1650+
1651+#. module: magentoerpconnect
1652+#: model:ir.model,name:magentoerpconnect.model_res_partner
1653+#: field:magento.address,openerp_id:0
1654+#: field:magento.res.partner,openerp_id:0
1655+msgid "Partner"
1656+msgstr "Partner"
1657+
1658+#. module: magentoerpconnect
1659+#: model:ir.model,name:magentoerpconnect.model_res_partner_category
1660+msgid "Partner Categories"
1661+msgstr "Partnerkategorien"
1662+
1663+#. module: magentoerpconnect
1664+#: field:magento.res.partner.category,openerp_id:0
1665+msgid "Partner Category"
1666+msgstr "Partnerkategorie"
1667+
1668+#. module: magentoerpconnect
1669+#: field:magento.backend,password:0
1670+msgid "Password"
1671+msgstr "Passwort"
1672+
1673+#. module: magentoerpconnect
1674+#: model:ir.model,name:magentoerpconnect.model_payment_method
1675+msgid "Payment Method"
1676+msgstr ""
1677+
1678+#. module: magentoerpconnect
1679+#: model:ir.model,name:magentoerpconnect.model_stock_picking
1680+msgid "Picking List"
1681+msgstr "Entnahmeliste"
1682+
1683+#. module: magentoerpconnect
1684+#: field:magento.stock.picking.out,picking_method:0
1685+msgid "Picking Method"
1686+msgstr "Packmethode"
1687+
1688+#. module: magentoerpconnect
1689+#: field:connector.config.settings,module_magentoerpconnect_pricing:0
1690+msgid "Prices are managed in OpenERP with pricelists"
1691+msgstr "Preise sind in OpenERP mit Preislisten verwaltet"
1692+
1693+#. module: magentoerpconnect
1694+#: help:connector.config.settings,module_magentoerpconnect_pricing:0
1695+msgid ""
1696+"Prices are set in OpenERP and exported to Magento.\n"
1697+"\n"
1698+"This installs the module magentoerpconnect_pricing."
1699+msgstr ""
1700+"Preise sind in OpenERP gesetzt und zu Magento exportiert.\n"
1701+"\n"
1702+"Dies installier das Modul magentoerpconnect_pricing."
1703+
1704+#. module: magentoerpconnect
1705+#: field:magento.backend,catalog_price_tax_included:0
1706+msgid "Prices include tax"
1707+msgstr "Preise inkl. Steuer"
1708+
1709+#. module: magentoerpconnect
1710+#: model:ir.model,name:magentoerpconnect.model_product_product
1711+#: field:magento.product.product,openerp_id:0
1712+msgid "Product"
1713+msgstr "Produkt"
1714+
1715+#. module: magentoerpconnect
1716+#: model:ir.model,name:magentoerpconnect.model_product_category
1717+#: field:magento.product.category,openerp_id:0
1718+msgid "Product Category"
1719+msgstr "Produktkategorie"
1720+
1721+#. module: magentoerpconnect
1722+#: field:magento.sale.order,openerp_id:0
1723+msgid "Sale Order"
1724+msgstr "VK-Auftrag"
1725+
1726+#. module: magentoerpconnect
1727+#: field:magento.sale.order.line,openerp_id:0
1728+msgid "Sale Order Line"
1729+msgstr "Verkaufsauftragsposition"
1730+
1731+#. module: magentoerpconnect
1732+#: field:magento.backend,sale_prefix:0
1733+msgid "Sale Prefix"
1734+msgstr ""
1735+
1736+#. module: magentoerpconnect
1737+#: field:magento.store,openerp_id:0
1738+msgid "Sale Shop"
1739+msgstr "Verkaufsshop"
1740+
1741+#. module: magentoerpconnect
1742+#: model:ir.model,name:magentoerpconnect.model_sale_order
1743+msgid "Sales Order"
1744+msgstr "VK-Auftrag"
1745+
1746+#. module: magentoerpconnect
1747+#: model:ir.model,name:magentoerpconnect.model_sale_order_line
1748+msgid "Sales Order Line"
1749+msgstr "Auftragsposition"
1750+
1751+#. module: magentoerpconnect
1752+#: model:ir.model,name:magentoerpconnect.model_sale_shop
1753+msgid "Sales Shop"
1754+msgstr "Verkaufsshop"
1755+
1756+#. module: magentoerpconnect
1757+#: selection:magento.product.product,backorders:0
1758+msgid "Sell Quantity < 0"
1759+msgstr "Verkaufmenge < 0"
1760+
1761+#. module: magentoerpconnect
1762+#: selection:magento.product.product,backorders:0
1763+msgid "Sell Quantity < 0 and Use Customer Notification"
1764+msgstr "Verkaufsmenge < 0 und benutzte Kundenbenachrichtigungen"
1765+
1766+#. module: magentoerpconnect
1767+#: field:magento.store,send_invoice_paid_mail:0
1768+msgid "Send email notification on invoice validated/paid"
1769+msgstr ""
1770+
1771+#. module: magentoerpconnect
1772+#: field:magento.store,send_picking_done_mail:0
1773+msgid "Send email notification on picking done"
1774+msgstr "Sende Versandbestätigung per E-Mail"
1775+
1776+#. module: magentoerpconnect
1777+#: help:payment.method,create_invoice_on:0
1778+msgid ""
1779+"Should the invoice be created in Magento when it is validated or when it is "
1780+"paid in OpenERP?\n"
1781+"If nothing is set, the option falls back to the same option on the Magento "
1782+"store related to the sales order."
1783+msgstr ""
1784+
1785+#. module: magentoerpconnect
1786+#: help:magento.store,create_invoice_on:0
1787+msgid ""
1788+"Should the invoice be created in Magento when it is validated or when it is "
1789+"paid in OpenERP?\n"
1790+"This only takes effect if the sales order's related payment method is not "
1791+"giving an option for this by itself. (See Payment Methods)"
1792+msgstr ""
1793+
1794+#. module: magentoerpconnect
1795+#: field:magento.storeview,sort_order:0
1796+#: field:magento.website,sort_order:0
1797+msgid "Sort Order"
1798+msgstr "Sortiere VK-Auftrag"
1799+
1800+#. module: magentoerpconnect
1801+#: field:magento.backend,product_stock_field_id:0
1802+msgid "Stock Field"
1803+msgstr "Lagerfeld"
1804+
1805+#. module: magentoerpconnect
1806+#: field:magento.stock.picking.out,openerp_id:0
1807+msgid "Stock Picking"
1808+msgstr "Lagerpackauftrag"
1809+
1810+#. module: magentoerpconnect
1811+#: field:magento.storeview,store_id:0
1812+msgid "Store"
1813+msgstr "Store"
1814+
1815+#. module: magentoerpconnect
1816+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_store
1817+#: view:magento.website:0
1818+#: field:magento.website,store_ids:0
1819+msgid "Stores"
1820+msgstr "Stores"
1821+
1822+#. module: magentoerpconnect
1823+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_storeview
1824+#: view:magento.store:0
1825+#: field:magento.store,storeview_ids:0
1826+msgid "Storeviews"
1827+msgstr "Storeviews"
1828+
1829+#. module: magentoerpconnect
1830+#: view:magento.backend:0
1831+msgid "Synchronize Metadata"
1832+msgstr "Synchronisiere Metadaten"
1833+
1834+#. module: magentoerpconnect
1835+#: field:magento.res.partner.category,tax_class_id:0
1836+msgid "Tax Class ID"
1837+msgstr "Steuersatz ID"
1838+
1839+#. module: magentoerpconnect
1840+#: field:magento.sale.order.line,tax_rate:0
1841+msgid "Tax Rate"
1842+msgstr "Steuersatz"
1843+
1844+#. module: magentoerpconnect
1845+#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount
1846+msgid ""
1847+"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
1848+"\n"
1849+"Cause:\n"
1850+"The taxes are probably different between OpenERP and Magento. A fiscal "
1851+"position could have changed the final price.\n"
1852+"\n"
1853+"Resolution:\n"
1854+"Check your taxes and fiscal positions configuration and correct them if "
1855+"necessary."
1856+msgstr ""
1857+"Die in OpenERP errechnete Summe stimmt nicht mit der aus Magento überein.\n"
1858+"\n"
1859+"Grund:\n"
1860+"Die Steuern sind evtl. verschieden zwischen OpenERP und Magento. Eine "
1861+"Finanzposition hat die Endsumme evtl. verändert.\n"
1862+"\n"
1863+"Lösung:\n"
1864+"Überprüfen Sie Steuern und Finanzpositionen und korrigieren Sie diese, falls "
1865+"nötig."
1866+
1867+#. module: magentoerpconnect
1868+#: help:magento.backend,use_custom_api_path:0
1869+msgid ""
1870+"The default API path is '/index.php/api/xmlrpc'. Check this box if you use a "
1871+"custom API path, in that case, the location has to be completed with the "
1872+"custom API path "
1873+msgstr ""
1874+
1875+#. module: magentoerpconnect
1876+#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount_tax
1877+msgid ""
1878+"The tax amount computed in OpenERP doesn't match with the tax amount in "
1879+"Magento.\n"
1880+"\n"
1881+"Cause:\n"
1882+"The taxes are probably different between OpenERP and Magento. A fiscal "
1883+"position could have changed the final price.\n"
1884+"\n"
1885+"Resolution:\n"
1886+"Check your taxes and fiscal positions configuration and correct them if "
1887+"necessary."
1888+msgstr ""
1889+"Die in OpenERP errechnete Steuer stimmt nicht mit der Magento Steuer "
1890+"überein.\n"
1891+"\n"
1892+"Grund:\n"
1893+"Vermutlich sind die Steuersätze in OpenERP und Magento nicht identisch. "
1894+"Durch eine entsprechende Steuerzuordnung wurde möglicherweise der Endpreis "
1895+"verändert.\n"
1896+"\n"
1897+"Lösung: \n"
1898+"Überprüfen Sie die Steuern und auch Zuordnungen und korrigieren Sie diese "
1899+"dann bei Bedarf."
1900+
1901+#. module: magentoerpconnect
1902+#: help:connector.config.settings,module_magentoerpconnect_catalog:0
1903+msgid "This installs the module magentoerpconnect_catalog."
1904+msgstr "Dies installiert das Modul magentoerpconnect_catalog"
1905+
1906+#. module: magentoerpconnect
1907+#: help:connector.config.settings,module_magentoerpconnect_export_partner:0
1908+msgid "This installs the module magentoerpconnect_export_partner."
1909+msgstr "Dies installiert das Modul magentoerpconnect_export_partner."
1910+
1911+#. module: magentoerpconnect
1912+#: view:magento.backend:0
1913+msgid ""
1914+"This option should respect the same\n"
1915+" configuration than Magento. Pay\n"
1916+" attention to the taxes on the "
1917+"products,\n"
1918+" which should surely include prices "
1919+"when\n"
1920+" this option is activated."
1921+msgstr ""
1922+
1923+#. module: magentoerpconnect
1924+#: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount
1925+msgid "Total Amount differs from Magento"
1926+msgstr "Gesamtwert unterscheidet sich zu Magento"
1927+
1928+#. module: magentoerpconnect
1929+#: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount_tax
1930+msgid "Total Tax Amount differs from Magento"
1931+msgstr "Steuersumme unterscheidet sich zu Magento"
1932+
1933+#. module: magentoerpconnect
1934+#: field:magento.sale.order,total_amount:0
1935+msgid "Total amount"
1936+msgstr "Gesamtbetrag"
1937+
1938+#. module: magentoerpconnect
1939+#: field:magento.sale.order,total_amount_tax:0
1940+msgid "Total amount w. tax"
1941+msgstr "Gesamtbetrag inkl. Steuern"
1942+
1943+#. module: magentoerpconnect
1944+#: view:magento.backend:0
1945+msgid "Update"
1946+msgstr "Update"
1947+
1948+#. module: magentoerpconnect
1949+#: view:magento.backend:0
1950+msgid "Update all the products stock quantities"
1951+msgstr "Update alle Lagerstückzahlen"
1952
1953 #. module: magentoerpconnect
1954 #: field:magento.address,updated_at:0
1955@@ -1001,60 +1129,102 @@
1956 msgstr ""
1957
1958 #. module: magentoerpconnect
1959-#: selection:magento.stock.picking.out,picking_method:0
1960-msgid "Complete"
1961-msgstr "Vollständig"
1962-
1963-#. module: magentoerpconnect
1964-#: model:ir.model,name:magentoerpconnect.model_magento_store
1965-#: view:magento.store:0
1966-msgid "Magento Store"
1967-msgstr "Magento Store"
1968-
1969-#. module: magentoerpconnect
1970-#: model:ir.model,name:magentoerpconnect.model_magento_product_product
1971-#: view:magento.product.product:0
1972-msgid "Magento Product"
1973-msgstr "Magento Produkt"
1974-
1975-#. module: magentoerpconnect
1976-#: model:ir.model,name:magentoerpconnect.model_magento_sale_order
1977-#: field:magento.account.invoice,magento_order_id:0
1978-#: field:magento.sale.order.line,magento_order_id:0
1979-#: field:magento.stock.picking.out,magento_order_id:0
1980-msgid "Magento Sale Order"
1981-msgstr "Magento VK-Auftrag"
1982-
1983-#. module: magentoerpconnect
1984-#: field:magento.website,import_partners_from_date:0
1985-msgid "Import partners from date"
1986-msgstr "Importiere Partner seit Datum"
1987-
1988-#. module: magentoerpconnect
1989-#: sql_constraint:magento.sale.order:0
1990-#: sql_constraint:magento.sale.order.line:0
1991-msgid "A sale order line with the same ID on Magento already exists."
1992-msgstr "Eine VK-Auftragszeile mit der ID existiert bereits in Magento."
1993-
1994-#. module: magentoerpconnect
1995-#: field:magento.sale.order,magento_order_line_ids:0
1996-msgid "Magento Order Lines"
1997-msgstr "Magento Auftragszeilen"
1998-
1999-#. module: magentoerpconnect
2000-#: field:magento.res.partner,newsletter:0
2001-msgid "Newsletter"
2002-msgstr "Newsletter"
2003-
2004-#. module: magentoerpconnect
2005-#: help:magento.backend,default_lang_id:0
2006-msgid ""
2007-"If a default language is selected, the records will be imported in the "
2008-"translation of this language.\n"
2009-"Note that a similar configuration exists for each storeview."
2010-msgstr ""
2011-
2012-#. module: magentoerpconnect
2013-#: sql_constraint:magento.address:0
2014-msgid "A partner address with same ID on Magento already exists."
2015+#: help:magento.backend,location:0
2016+msgid "Url to magento application"
2017+msgstr ""
2018+
2019+#. module: magentoerpconnect
2020+#: selection:magento.product.product,backorders:0
2021+#: selection:magento.product.product,manage_stock:0
2022+msgid "Use Default Config"
2023+msgstr "Verwende Standartkonfiguration"
2024+
2025+#. module: magentoerpconnect
2026+#: field:magento.backend,use_auth_basic:0
2027+msgid "Use HTTP Auth Basic"
2028+msgstr ""
2029+
2030+#. module: magentoerpconnect
2031+#: help:magento.backend,use_auth_basic:0
2032+msgid ""
2033+"Use a Basic Access Authentication for the API. The Magento server could be "
2034+"configured to restrict access using a HTTP authentication based on a "
2035+"username and a password."
2036+msgstr ""
2037+
2038+#. module: magentoerpconnect
2039+#: field:magento.backend,username:0
2040+msgid "Username"
2041+msgstr "Benutzername"
2042+
2043+#. module: magentoerpconnect
2044+#: selection:magento.store,create_invoice_on:0
2045+#: selection:payment.method,create_invoice_on:0
2046+msgid "Validate"
2047+msgstr ""
2048+
2049+#. module: magentoerpconnect
2050+#: field:magento.backend,version:0
2051+msgid "Version"
2052+msgstr "Version"
2053+
2054+#. module: magentoerpconnect
2055+#: field:magento.backend,warehouse_id:0
2056+msgid "Warehouse"
2057+msgstr "Lager"
2058+
2059+#. module: magentoerpconnect
2060+#: help:magento.backend,warehouse_id:0
2061+msgid "Warehouse used to compute the stock quantities."
2062+msgstr "Zentrallager zur Bestände Berechnung"
2063+
2064+#. module: magentoerpconnect
2065+#: help:magento.backend,password:0
2066+msgid "Webservice password"
2067+msgstr ""
2068+
2069+#. module: magentoerpconnect
2070+#: help:magento.backend,username:0
2071+msgid "Webservice user"
2072+msgstr ""
2073+
2074+#. module: magentoerpconnect
2075+#: field:magento.backend,website_ids:0
2076+msgid "Website"
2077+msgstr "Webseite"
2078+
2079+#. module: magentoerpconnect
2080+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_website
2081+#: view:magento.backend:0
2082+#: field:magento.product.product,website_ids:0
2083+msgid "Websites"
2084+msgstr "Webseiten"
2085+
2086+#. module: magentoerpconnect
2087+#: help:magento.storeview,import_orders_from_date:0
2088+msgid ""
2089+"do not consider non-imported sale orders before this date. Leave empty to "
2090+"import all sale orders"
2091+msgstr ""
2092+"Vernachlässigen Sie die nicht-importierten Aufträge vor diesem Datum. Bitte "
2093+"tragen Sie nichts ein, um sämtliche Aufträge zu importieren."
2094+
2095+#. module: magentoerpconnect
2096+#: view:magento.backend:0
2097+msgid "e.g. http://my.magento.com"
2098+msgstr "e.g. http://my.magento.com"
2099+
2100+#. module: magentoerpconnect
2101+#: view:magento.backend:0
2102+msgid "e.g. http://my.magento.com/admin"
2103+msgstr ""
2104+
2105+#. module: magentoerpconnect
2106+#: view:magento.backend:0
2107+msgid "mag-"
2108+msgstr ""
2109+
2110+#. module: magentoerpconnect
2111+#: model:ir.model,name:magentoerpconnect.model_magentoerpconnect_installed
2112+msgid "magentoerpconnect.installed"
2113 msgstr ""
2114
2115=== modified file 'magentoerpconnect/i18n/es.po'
2116--- magentoerpconnect/i18n/es.po 2014-04-12 10:07:56 +0000
2117+++ magentoerpconnect/i18n/es.po 2014-06-18 11:34:02 +0000
2118@@ -7,7 +7,7 @@
2119 msgstr ""
2120 "Project-Id-Version: openerp-connector-magento\n"
2121 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2122-"POT-Creation-Date: 2013-05-01 12:45+0000\n"
2123+"POT-Creation-Date: 2014-06-10 14:00+0000\n"
2124 "PO-Revision-Date: 2014-03-25 16:58+0000\n"
2125 "Last-Translator: Alberto Garcia (Factor Libre) "
2126 "<alberto.garcia@factorlibre.com>\n"
2127@@ -15,13 +15,283 @@
2128 "MIME-Version: 1.0\n"
2129 "Content-Type: text/plain; charset=UTF-8\n"
2130 "Content-Transfer-Encoding: 8bit\n"
2131-"X-Launchpad-Export-Date: 2014-04-12 10:07+0000\n"
2132-"X-Generator: Launchpad (build 16976)\n"
2133-
2134-#. module: magentoerpconnect
2135-#: help:magento.backend,pricelist_id:0
2136-msgid "The price list used to define the prices of the products in Magento."
2137-msgstr "La tarifa usada para definir los precios de los productos en Magento"
2138+"X-Launchpad-Export-Date: 2014-06-11 06:38+0000\n"
2139+"X-Generator: Launchpad (build 17031)\n"
2140+
2141+#. module: magentoerpconnect
2142+#: help:magento.sale.order,magento_order_id:0
2143+msgid "'order_id' field in Magento"
2144+msgstr "'order_id' field in Magento"
2145+
2146+#. module: magentoerpconnect
2147+#: view:magento.product.product:0
2148+msgid "(recompute)"
2149+msgstr "(recompitar)"
2150+
2151+#. module: magentoerpconnect
2152+#: sql_constraint:magento.backend:0
2153+msgid "A backend with the same sale prefix already exists"
2154+msgstr ""
2155+
2156+#. module: magentoerpconnect
2157+#: sql_constraint:magento.address:0
2158+msgid "A partner address with same ID on Magento already exists."
2159+msgstr "A partner address with same ID on Magento already exists."
2160+
2161+#. module: magentoerpconnect
2162+#: sql_constraint:magento.res.partner.category:0
2163+msgid "A partner tag with same ID on Magento already exists."
2164+msgstr "A partner tag with same ID on Magento already exists."
2165+
2166+#. module: magentoerpconnect
2167+#: sql_constraint:magento.res.partner:0
2168+msgid "A partner with same ID on Magento already exists for this website."
2169+msgstr "A partner with same ID on Magento already exists for this website."
2170+
2171+#. module: magentoerpconnect
2172+#: help:magento.backend,sale_prefix:0
2173+msgid ""
2174+"A prefix put before the name of imported sales orders.\n"
2175+"For instance, if the prefix is 'mag-', the sales order 100000692 in Magento, "
2176+"will be named 'mag-100000692' in OpenERP."
2177+msgstr ""
2178+
2179+#. module: magentoerpconnect
2180+#: sql_constraint:magento.product.category:0
2181+msgid "A product category with same ID on Magento already exists."
2182+msgstr "A product category with same ID on Magento already exists."
2183+
2184+#. module: magentoerpconnect
2185+#: sql_constraint:magento.product.product:0
2186+msgid "A product with the same ID on Magento already exists"
2187+msgstr "A product with the same ID on Magento already exists"
2188+
2189+#. module: magentoerpconnect
2190+#: sql_constraint:magento.sale.order:0
2191+#: sql_constraint:magento.sale.order.line:0
2192+msgid "A sale order line with the same ID on Magento already exists."
2193+msgstr "A sale order line with the same ID on Magento already exists."
2194+
2195+#. module: magentoerpconnect
2196+#: sql_constraint:magento.stock.picking.out:0
2197+msgid "A stock picking with same ID on Magento already exists."
2198+msgstr "A stock picking with same ID on Magento already exists."
2199+
2200+#. module: magentoerpconnect
2201+#: sql_constraint:magento.store:0
2202+msgid "A store with the same ID on Magento already exists."
2203+msgstr "A store with the same ID on Magento already exists."
2204+
2205+#. module: magentoerpconnect
2206+#: sql_constraint:magento.storeview:0
2207+msgid "A storeview with same ID on Magento already exists."
2208+msgstr "A storeview with same ID on Magento already exists."
2209+
2210+#. module: magentoerpconnect
2211+#: sql_constraint:magento.website:0
2212+msgid "A website with the same ID on Magento already exists."
2213+msgstr "Una web con las misma ID existe en Magento"
2214+
2215+#. module: magentoerpconnect
2216+#: view:magento.backend:0
2217+msgid "API"
2218+msgstr ""
2219+
2220+#. module: magentoerpconnect
2221+#: field:magento.address,is_magento_order_address:0
2222+msgid "Address from a Magento Order"
2223+msgstr "Dirección desde un Pedido Magento"
2224+
2225+#. module: magentoerpconnect
2226+#: field:magento.backend,admin_location:0
2227+msgid "Admin Location"
2228+msgstr ""
2229+
2230+#. module: magentoerpconnect
2231+#: view:magento.backend:0
2232+msgid "Advanced Configuration"
2233+msgstr "Configuración avanzada"
2234+
2235+#. module: magentoerpconnect
2236+#: help:magento.res.partner,consider_as_company:0
2237+msgid ""
2238+"An account imported with a 'company' in the billing address is considered as "
2239+"a company.\n"
2240+" The partner takes the name of the company and is not merged with the "
2241+"billing address."
2242+msgstr ""
2243+
2244+#. module: magentoerpconnect
2245+#: sql_constraint:magento.account.invoice:0
2246+msgid "An invoice with the same ID on Magento already exists."
2247+msgstr "An invoice with the same ID on Magento already exists."
2248+
2249+#. module: magentoerpconnect
2250+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
2251+msgid "Backends"
2252+msgstr "Backends"
2253+
2254+#. module: magentoerpconnect
2255+#: field:magento.backend,auth_basic_password:0
2256+msgid "Basic Auth. Password"
2257+msgstr ""
2258+
2259+#. module: magentoerpconnect
2260+#: field:magento.backend,auth_basic_username:0
2261+msgid "Basic Auth. Username"
2262+msgstr ""
2263+
2264+#. module: magentoerpconnect
2265+#: help:magento.backend,auth_basic_password:0
2266+msgid "Basic access authentication web server side password"
2267+msgstr ""
2268+
2269+#. module: magentoerpconnect
2270+#: help:magento.backend,auth_basic_username:0
2271+msgid "Basic access authentication web server side username"
2272+msgstr ""
2273+
2274+#. module: magentoerpconnect
2275+#: field:res.partner,birthday:0
2276+msgid "Birthday"
2277+msgstr "Cumpleaños"
2278+
2279+#. module: magentoerpconnect
2280+#: view:magento.backend:0
2281+msgid ""
2282+"By clicking on the buttons,\n"
2283+" you will initiate the synchronizations\n"
2284+" with Magento.\n"
2285+" Note that the import or exports\n"
2286+" won't be done directly,\n"
2287+" they will create 'Jobs'\n"
2288+" executed as soon as possible."
2289+msgstr ""
2290+"By clicking on the buttons,\n"
2291+" you will initiate the synchronizations\n"
2292+" with Magento.\n"
2293+" Note that the import or exports\n"
2294+" won't be done directly,\n"
2295+" they will create 'Jobs'\n"
2296+" executed as soon as possible."
2297+
2298+#. module: magentoerpconnect
2299+#: model:ir.model,name:magentoerpconnect.model_delivery_carrier
2300+msgid "Carrier"
2301+msgstr "Transportista"
2302+
2303+#. module: magentoerpconnect
2304+#: help:magento.storeview,no_sales_order_sync:0
2305+msgid ""
2306+"Check if the storeview is active in Magento but its sales orders should not "
2307+"be imported."
2308+msgstr ""
2309+
2310+#. module: magentoerpconnect
2311+#: help:magento.product.product,no_stock_sync:0
2312+msgid "Check this to exclude the product from stock synchronizations."
2313+msgstr ""
2314+
2315+#. module: magentoerpconnect
2316+#: help:magento.backend,product_stock_field_id:0
2317+msgid ""
2318+"Choose the field of the product which will be used for stock inventory "
2319+"updates.\n"
2320+"If empty, Quantity Available is used."
2321+msgstr ""
2322+"Choose the field of the product which will be used for stock inventory "
2323+"updates.\n"
2324+"If empty, Quantity Available is used."
2325+
2326+#. module: magentoerpconnect
2327+#: field:magento.storeview,code:0
2328+#: field:magento.website,code:0
2329+msgid "Code"
2330+msgstr "Código"
2331+
2332+#. module: magentoerpconnect
2333+#: view:res.partner:0
2334+#: field:res.partner,company:0
2335+msgid "Company"
2336+msgstr "Compañía"
2337+
2338+#. module: magentoerpconnect
2339+#: selection:magento.stock.picking.out,picking_method:0
2340+msgid "Complete"
2341+msgstr "Completo"
2342+
2343+#. module: magentoerpconnect
2344+#: field:magento.product.product,magento_qty:0
2345+msgid "Computed Quantity"
2346+msgstr "Computed Quantity"
2347+
2348+#. module: magentoerpconnect
2349+#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
2350+msgid "Connector Configuration"
2351+msgstr ""
2352+
2353+#. module: magentoerpconnect
2354+#: field:magento.res.partner,consider_as_company:0
2355+msgid "Considered as company"
2356+msgstr ""
2357+
2358+#. module: magentoerpconnect
2359+#: view:payment.method:0
2360+msgid "Create invoice on"
2361+msgstr ""
2362+
2363+#. module: magentoerpconnect
2364+#: field:magento.store,create_invoice_on:0
2365+#: field:payment.method,create_invoice_on:0
2366+msgid "Create invoice on action"
2367+msgstr ""
2368+
2369+#. module: magentoerpconnect
2370+#: field:magento.address,created_at:0
2371+#: field:magento.product.product,created_at:0
2372+#: field:magento.res.partner,created_at:0
2373+msgid "Created At (on Magento)"
2374+msgstr "Creado a las (en Magento)"
2375+
2376+#. module: magentoerpconnect
2377+#: field:magento.backend,use_custom_api_path:0
2378+msgid "Custom Api Path"
2379+msgstr ""
2380+
2381+#. module: magentoerpconnect
2382+#: field:magento.address,is_default_billing:0
2383+msgid "Default Invoice"
2384+msgstr "Factura por defecto"
2385+
2386+#. module: magentoerpconnect
2387+#: field:magento.backend,default_lang_id:0
2388+msgid "Default Language"
2389+msgstr "Idioma por defecto"
2390+
2391+#. module: magentoerpconnect
2392+#: field:magento.backend,default_category_id:0
2393+msgid "Default Product Category"
2394+msgstr "Categoría Producto por Defecto"
2395+
2396+#. module: magentoerpconnect
2397+#: field:magento.address,is_default_shipping:0
2398+msgid "Default Shipping"
2399+msgstr "Forma Envio Por Defecto"
2400+
2401+#. module: magentoerpconnect
2402+#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
2403+msgid "Delivery Orders"
2404+msgstr "Albaranes"
2405+
2406+#. module: magentoerpconnect
2407+#: field:magento.product.category,description:0
2408+msgid "Description"
2409+msgstr "Descripción"
2410+
2411+#. module: magentoerpconnect
2412+#: selection:magento.product.product,manage_stock:0
2413+msgid "Do Not Manage Stock"
2414+msgstr "No se controla stock"
2415
2416 #. module: magentoerpconnect
2417 #: help:magento.store,send_invoice_paid_mail:0
2418@@ -33,39 +303,191 @@
2419 "desde Magento?"
2420
2421 #. module: magentoerpconnect
2422+#: help:magento.store,send_picking_done_mail:0
2423+msgid ""
2424+"Does the picking export/creation should send an email notification on "
2425+"Magento side?"
2426+msgstr ""
2427+"Does the picking export/creation should send an email notification on "
2428+"Magento side?"
2429+
2430+#. module: magentoerpconnect
2431+#: field:magento.res.partner,emailid:0
2432+msgid "E-mail address"
2433+msgstr "E-mail"
2434+
2435+#. module: magentoerpconnect
2436+#: field:magento.storeview,enabled:0
2437+msgid "Enabled"
2438+msgstr "Activado"
2439+
2440+#. module: magentoerpconnect
2441+#: field:connector.config.settings,module_magentoerpconnect_export_partner:0
2442+msgid "Export Partners to Magento (experimental)"
2443+msgstr "Exportar Empresas a Magento (experimental)"
2444+
2445+#. module: magentoerpconnect
2446+#: field:delivery.carrier,magento_export_tracking:0
2447+msgid "Export tracking numbers"
2448+msgstr "Exportar Números de Seguimiento"
2449+
2450+#. module: magentoerpconnect
2451+#: view:connector.config.settings:0
2452+msgid "Extensions"
2453+msgstr "Extensiones"
2454+
2455+#. module: magentoerpconnect
2456+#: field:magento.res.partner,guest_customer:0
2457+msgid "Guest Customer"
2458+msgstr "Cliente Anónimo"
2459+
2460+#. module: magentoerpconnect
2461+#: view:magento.backend:0
2462+msgid "HTTP Authentication"
2463+msgstr ""
2464+
2465+#. module: magentoerpconnect
2466+#: field:connector.config.settings,module_magentoerpconnect_catalog:0
2467+msgid "Handle the product's catalog (not implemented)"
2468+msgstr "Handle the product's catalog (not implemented)"
2469+
2470+#. module: magentoerpconnect
2471+#: field:magento.account.invoice,magento_id:0
2472+#: field:magento.address,magento_id:0
2473+#: field:magento.binding,magento_id:0
2474+#: field:magento.product.category,magento_id:0
2475+#: field:magento.product.product,magento_id:0
2476+#: field:magento.res.partner,magento_id:0
2477+#: field:magento.res.partner.category,magento_id:0
2478+#: field:magento.sale.order,magento_id:0
2479+#: field:magento.sale.order.line,magento_id:0
2480+#: field:magento.stock.picking.out,magento_id:0
2481+#: field:magento.store,magento_id:0
2482+#: field:magento.storeview,magento_id:0
2483+#: field:magento.website,magento_id:0
2484+msgid "ID on Magento"
2485+msgstr "ID en Magento"
2486+
2487+#. module: magentoerpconnect
2488+#: help:magento.backend,default_category_id:0
2489+msgid ""
2490+"If a default category is selected, products imported without a category will "
2491+"be linked to it."
2492+msgstr ""
2493+"If a default category is selected, products imported without a category will "
2494+"be linked to it."
2495+
2496+#. module: magentoerpconnect
2497+#: help:magento.backend,default_lang_id:0
2498+msgid ""
2499+"If a default language is selected, the records will be imported in the "
2500+"translation of this language.\n"
2501+"Note that a similar configuration exists for each storeview."
2502+msgstr ""
2503+"If a default language is selected, the records will be imported in the "
2504+"translation of this language.\n"
2505+"Note that a similar configuration exists for each storeview."
2506+
2507+#. module: magentoerpconnect
2508+#: view:magento.storeview:0
2509+msgid "Import Sale Orders"
2510+msgstr "Importar"
2511+
2512+#. module: magentoerpconnect
2513+#: view:magento.storeview:0
2514+msgid "Import Sale Orders since"
2515+msgstr "Importar Pedidos Venta desde"
2516+
2517+#. module: magentoerpconnect
2518+#: view:magento.backend:0
2519+msgid "Import all customer groups"
2520+msgstr "Importar todos los grupos de clientes"
2521+
2522+#. module: magentoerpconnect
2523+#: field:magento.backend,import_categories_from_date:0
2524+msgid "Import categories from date"
2525+msgstr "Importar categorías desde fecha"
2526+
2527+#. module: magentoerpconnect
2528+#: view:magento.backend:0
2529+#: view:magento.website:0
2530+msgid "Import in background"
2531+msgstr "Importar en segundo plano"
2532+
2533+#. module: magentoerpconnect
2534+#: view:magento.backend:0
2535+msgid "Import partners from all websites"
2536+msgstr "Importar empresas de todos los sitios web"
2537+
2538+#. module: magentoerpconnect
2539+#: field:magento.website,import_partners_from_date:0
2540+msgid "Import partners from date"
2541+msgstr "Importar empresas desde fecha"
2542+
2543+#. module: magentoerpconnect
2544+#: view:magento.website:0
2545+msgid "Import partners since"
2546+msgstr "Importar empresas desde"
2547+
2548+#. module: magentoerpconnect
2549+#: view:magento.backend:0
2550+msgid "Import products categories since"
2551+msgstr "Importar categorias productos desde"
2552+
2553+#. module: magentoerpconnect
2554+#: field:magento.backend,import_products_from_date:0
2555+msgid "Import products from date"
2556+msgstr "Importar productos desde fecha"
2557+
2558+#. module: magentoerpconnect
2559+#: view:magento.backend:0
2560+msgid "Import products since"
2561+msgstr "Importar productos desde"
2562+
2563+#. module: magentoerpconnect
2564+#: field:magento.storeview,import_orders_from_date:0
2565+msgid "Import sale orders from date"
2566+msgstr "Importar pedidos venta desde fecha"
2567+
2568+#. module: magentoerpconnect
2569 #: view:magento.backend:0
2570 msgid "Import sales orders from all store views"
2571 msgstr "Importar ordenes de ventas de todas las vistas de tienda"
2572
2573 #. module: magentoerpconnect
2574-#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount_tax
2575-msgid ""
2576-"The tax amount computed in OpenERP doesn't match with the tax amount in "
2577-"Magento.\n"
2578-"\n"
2579-"Cause:\n"
2580-"The taxes are probably different between OpenERP and Magento. A fiscal "
2581-"position could have changed the final price.\n"
2582-"\n"
2583-"Resolution:\n"
2584-"Check your taxes and fiscal positions configuration and correct them if "
2585-"necessary."
2586-msgstr ""
2587-"The tax amount computed in OpenERP doesn't match with the tax amount in "
2588-"Magento.\n"
2589-"\n"
2590-"Cause:\n"
2591-"The taxes are probably different between OpenERP and Magento. A fiscal "
2592-"position could have changed the final price.\n"
2593-"\n"
2594-"Resolution:\n"
2595-"Check your taxes and fiscal positions configuration and correct them if "
2596-"necessary."
2597-
2598-#. module: magentoerpconnect
2599-#: help:magento.backend,warehouse_id:0
2600-msgid "Warehouse used to compute the stock quantities."
2601-msgstr "Almacén utilizado para computar las cantidades de stock"
2602+#: view:magento.backend:0
2603+#: view:magento.storeview:0
2604+#: view:magento.website:0
2605+msgid "Imports"
2606+msgstr "Importaciones"
2607+
2608+#. module: magentoerpconnect
2609+#: view:magento.store:0
2610+#: view:magento.storeview:0
2611+#: view:magento.website:0
2612+msgid "Informations"
2613+msgstr "Informaciones"
2614+
2615+#. module: magentoerpconnect
2616+#: view:magento.product.product:0
2617+msgid "Inventory Options"
2618+msgstr "Opciones Inventario"
2619+
2620+#. module: magentoerpconnect
2621+#: model:ir.model,name:magentoerpconnect.model_account_invoice
2622+#: field:magento.account.invoice,openerp_id:0
2623+msgid "Invoice"
2624+msgstr "Factura"
2625+
2626+#. module: magentoerpconnect
2627+#: field:magento.storeview,lang_id:0
2628+msgid "Language"
2629+msgstr "Idioma"
2630+
2631+#. module: magentoerpconnect
2632+#: help:magento.product.product,magento_qty:0
2633+msgid "Last computed quantity to send on Magento."
2634+msgstr "Ultima cantidad computada enviada a Magento"
2635
2636 #. module: magentoerpconnect
2637 #: field:magento.account.invoice,sync_date:0
2638@@ -85,56 +507,63 @@
2639 msgstr "Fecha última sincronización"
2640
2641 #. module: magentoerpconnect
2642-#: help:magento.backend,default_category_id:0
2643-msgid ""
2644-"If a default category is selected, products imported without a category will "
2645-"be linked to it."
2646-msgstr ""
2647-"If a default category is selected, products imported without a category will "
2648-"be linked to it."
2649-
2650-#. module: magentoerpconnect
2651-#: help:magento.storeview,import_orders_from_date:0
2652-msgid ""
2653-"do not consider non-imported sale orders before this date. Leave empty to "
2654-"import all sale orders"
2655-msgstr ""
2656-"do not consider non-imported sale orders before this date. Leave empty to "
2657-"import all sale orders"
2658-
2659-#. module: magentoerpconnect
2660-#: help:magento.store,send_picking_done_mail:0
2661-msgid ""
2662-"Does the picking export/creation should send an email notification on "
2663-"Magento side?"
2664-msgstr ""
2665-"Does the picking export/creation should send an email notification on "
2666-"Magento side?"
2667-
2668-#. module: magentoerpconnect
2669-#: selection:magento.product.product,manage_stock:0
2670-msgid "Do Not Manage Stock"
2671-msgstr "No se controla stock"
2672-
2673-#. module: magentoerpconnect
2674-#: field:connector.config.settings,module_magentoerpconnect_catalog:0
2675-msgid "Handle the product's catalog (not implemented)"
2676-msgstr "Handle the product's catalog (not implemented)"
2677-
2678-#. module: magentoerpconnect
2679-#: field:res.partner,company:0
2680-msgid "Company"
2681-msgstr "Compañía"
2682-
2683-#. module: magentoerpconnect
2684-#: sql_constraint:magento.website:0
2685-msgid "A website with the same ID on Magento already exists."
2686-msgstr "Una web con las misma ID existe en Magento"
2687-
2688-#. module: magentoerpconnect
2689-#: field:magento.backend,import_categories_from_date:0
2690-msgid "Import categories from date"
2691-msgstr "Importar categorías desde fecha"
2692+#: field:magento.backend,location:0
2693+msgid "Location"
2694+msgstr "Localización"
2695+
2696+#. module: magentoerpconnect
2697+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_root
2698+#: view:payment.method:0
2699+#: view:res.partner.category:0
2700+msgid "Magento"
2701+msgstr "Magento"
2702+
2703+#. module: magentoerpconnect
2704+#: model:ir.model,name:magentoerpconnect.model_magento_address
2705+#: view:magento.address:0
2706+msgid "Magento Address"
2707+msgstr "Dirección Magento"
2708+
2709+#. module: magentoerpconnect
2710+#: view:res.partner:0
2711+#: field:res.partner,magento_address_bind_ids:0
2712+msgid "Magento Address Bindings"
2713+msgstr "Magento Address Bindings"
2714+
2715+#. module: magentoerpconnect
2716+#: model:ir.model,name:magentoerpconnect.model_magento_backend
2717+#: field:magento.account.invoice,backend_id:0
2718+#: field:magento.address,backend_id:0
2719+#: view:magento.backend:0
2720+#: field:magento.binding,backend_id:0
2721+#: field:magento.product.category,backend_id:0
2722+#: field:magento.product.product,backend_id:0
2723+#: field:magento.res.partner,backend_id:0
2724+#: field:magento.res.partner.category,backend_id:0
2725+#: field:magento.sale.order,backend_id:0
2726+#: field:magento.sale.order.line,backend_id:0
2727+#: field:magento.stock.picking.out,backend_id:0
2728+#: field:magento.store,backend_id:0
2729+#: field:magento.storeview,backend_id:0
2730+#: field:magento.website,backend_id:0
2731+msgid "Magento Backend"
2732+msgstr "Magento Backend"
2733+
2734+#. module: magentoerpconnect
2735+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_backend
2736+msgid "Magento Backends"
2737+msgstr "Magento Backends"
2738+
2739+#. module: magentoerpconnect
2740+#: field:delivery.carrier,magento_carrier_code:0
2741+msgid "Magento Base Carrier Code"
2742+msgstr "Magento Base Carrier Code"
2743+
2744+#. module: magentoerpconnect
2745+#: model:ir.model,name:magentoerpconnect.model_magento_binding
2746+#: model:ir.model,name:magentoerpconnect.model_magento_res_partner_category
2747+msgid "Magento Binding (abstract)"
2748+msgstr "Magento Binding (abstract)"
2749
2750 #. module: magentoerpconnect
2751 #: view:account.invoice:0
2752@@ -156,14 +585,36 @@
2753 msgstr "Magento Bindings"
2754
2755 #. module: magentoerpconnect
2756-#: help:connector.config.settings,module_magentoerpconnect_catalog:0
2757-msgid "This installs the module magentoerpconnect_catalog."
2758-msgstr "Esto instala el módulo magentoerpconnect_catalog."
2759-
2760-#. module: magentoerpconnect
2761-#: field:magento.address,is_magento_order_address:0
2762-msgid "Address from a Magento Order"
2763-msgstr "Dirección desde un Pedido Magento"
2764+#: field:delivery.carrier,magento_code:0
2765+msgid "Magento Carrier Code"
2766+msgstr "Modo de Envio Magento"
2767+
2768+#. module: magentoerpconnect
2769+#: field:magento.product.category,magento_child_ids:0
2770+msgid "Magento Child Categories"
2771+msgstr "Subcategorias Magento"
2772+
2773+#. module: magentoerpconnect
2774+#: view:magento.backend:0
2775+msgid "Magento Configuration"
2776+msgstr "Magento Configuration"
2777+
2778+#. module: magentoerpconnect
2779+#: model:ir.model,name:magentoerpconnect.model_magento_stock_picking_out
2780+#: view:magento.stock.picking.out:0
2781+msgid "Magento Delivery Order"
2782+msgstr "Albaran Magento"
2783+
2784+#. module: magentoerpconnect
2785+#: field:magento.res.partner,group_id:0
2786+msgid "Magento Group (Category)"
2787+msgstr "Grupo Magento (Categoría)"
2788+
2789+#. module: magentoerpconnect
2790+#: model:ir.model,name:magentoerpconnect.model_magento_account_invoice
2791+#: view:magento.account.invoice:0
2792+msgid "Magento Invoice"
2793+msgstr "Factura Magento"
2794
2795 #. module: magentoerpconnect
2796 #: field:magento.sale.order,magento_order_id:0
2797@@ -171,14 +622,156 @@
2798 msgstr "Id Pedido Magento"
2799
2800 #. module: magentoerpconnect
2801-#: model:ir.model,name:magentoerpconnect.model_magentoerpconnect_installed
2802-msgid "magentoerpconnect.installed"
2803-msgstr "magentoerpconnect.installed"
2804-
2805-#. module: magentoerpconnect
2806-#: help:connector.config.settings,module_magentoerpconnect_export_partner:0
2807-msgid "This installs the module magentoerpconnect_export_partner."
2808-msgstr "This installs the module magentoerpconnect_export_partner."
2809+#: field:magento.sale.order,magento_order_line_ids:0
2810+msgid "Magento Order Lines"
2811+msgstr "Lineas Pedido Venta Magento"
2812+
2813+#. module: magentoerpconnect
2814+#: field:magento.product.category,magento_parent_id:0
2815+msgid "Magento Parent Category"
2816+msgstr "Categoría Padre Magento"
2817+
2818+#. module: magentoerpconnect
2819+#: model:ir.model,name:magentoerpconnect.model_magento_res_partner
2820+#: field:magento.address,magento_partner_id:0
2821+#: view:magento.res.partner:0
2822+msgid "Magento Partner"
2823+msgstr "Empresa Magento"
2824+
2825+#. module: magentoerpconnect
2826+#: model:ir.model,name:magentoerpconnect.model_magento_product_product
2827+#: view:magento.product.product:0
2828+msgid "Magento Product"
2829+msgstr "Producto Magento"
2830+
2831+#. module: magentoerpconnect
2832+#: model:ir.model,name:magentoerpconnect.model_magento_product_category
2833+#: view:magento.product.category:0
2834+msgid "Magento Product Category"
2835+msgstr "Categoría Producto Magento"
2836+
2837+#. module: magentoerpconnect
2838+#: field:magento.product.product,product_type:0
2839+msgid "Magento Product Type"
2840+msgstr "Tipo Producto Magento"
2841+
2842+#. module: magentoerpconnect
2843+#: field:magento.backend,product_binding_ids:0
2844+#: field:magento.website,product_binding_ids:0
2845+msgid "Magento Products"
2846+msgstr "Productos Magento"
2847+
2848+#. module: magentoerpconnect
2849+#: model:ir.model,name:magentoerpconnect.model_magento_sale_order
2850+#: field:magento.account.invoice,magento_order_id:0
2851+#: field:magento.sale.order.line,magento_order_id:0
2852+#: field:magento.stock.picking.out,magento_order_id:0
2853+msgid "Magento Sale Order"
2854+msgstr "Pedido Venta Magento"
2855+
2856+#. module: magentoerpconnect
2857+#: model:ir.model,name:magentoerpconnect.model_magento_sale_order_line
2858+msgid "Magento Sale Order Line"
2859+msgstr "Línea Pedido Venta Magento"
2860+
2861+#. module: magentoerpconnect
2862+#: model:ir.model,name:magentoerpconnect.model_magento_store
2863+#: view:magento.store:0
2864+msgid "Magento Store"
2865+msgstr "Tienda Magento"
2866+
2867+#. module: magentoerpconnect
2868+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_store
2869+msgid "Magento Stores"
2870+msgstr "Tiendas Magento"
2871+
2872+#. module: magentoerpconnect
2873+#: model:ir.model,name:magentoerpconnect.model_magento_storeview
2874+#: field:magento.sale.order,storeview_id:0
2875+#: view:magento.storeview:0
2876+msgid "Magento Storeview"
2877+msgstr "Vista Tienda Magento"
2878+
2879+#. module: magentoerpconnect
2880+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_storeview
2881+msgid "Magento Storeviews"
2882+msgstr "Vista Tienda Magento"
2883+
2884+#. module: magentoerpconnect
2885+#: field:delivery.carrier,magento_tracking_title:0
2886+msgid "Magento Tracking Title"
2887+msgstr "Magento Tracking Title"
2888+
2889+#. module: magentoerpconnect
2890+#: field:magento.res.partner,taxvat:0
2891+msgid "Magento VAT"
2892+msgstr "Impuesto Magento"
2893+
2894+#. module: magentoerpconnect
2895+#: model:ir.model,name:magentoerpconnect.model_magento_website
2896+#: field:magento.address,website_id:0
2897+#: field:magento.res.partner,website_id:0
2898+#: field:magento.store,website_id:0
2899+#: view:magento.website:0
2900+msgid "Magento Website"
2901+msgstr "Sitio Web Magento"
2902+
2903+#. module: magentoerpconnect
2904+#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_website
2905+msgid "Magento Websites"
2906+msgstr "Sitio Web Magento"
2907+
2908+#. module: magentoerpconnect
2909+#: view:connector.config.settings:0
2910+msgid "Magentoerpconnect"
2911+msgstr "Magentoerpconnect"
2912+
2913+#. module: magentoerpconnect
2914+#: view:magento.backend:0
2915+msgid "Main Configuration"
2916+msgstr "Configuración Principal"
2917+
2918+#. module: magentoerpconnect
2919+#: field:magento.product.product,backorders:0
2920+msgid "Manage Inventory Backorders"
2921+msgstr "Manage Inventory Backorders"
2922+
2923+#. module: magentoerpconnect
2924+#: selection:magento.product.product,manage_stock:0
2925+msgid "Manage Stock"
2926+msgstr "Gestionar Stock"
2927+
2928+#. module: magentoerpconnect
2929+#: field:magento.product.product,manage_stock:0
2930+msgid "Manage Stock Level"
2931+msgstr "Gestión Nivel Stock"
2932+
2933+#. module: magentoerpconnect
2934+#: field:magento.backend,name:0
2935+#: field:magento.storeview,name:0
2936+#: field:magento.website,name:0
2937+msgid "Name"
2938+msgstr "Nombre"
2939+
2940+#. module: magentoerpconnect
2941+#: field:magento.res.partner,newsletter:0
2942+msgid "Newsletter"
2943+msgstr "Boletín"
2944+
2945+#. module: magentoerpconnect
2946+#: field:magento.storeview,no_sales_order_sync:0
2947+msgid "No Sales Order Synchronization"
2948+msgstr ""
2949+
2950+#. module: magentoerpconnect
2951+#: selection:magento.product.product,backorders:0
2952+msgid "No Sell"
2953+msgstr "No Vender"
2954+
2955+#. module: magentoerpconnect
2956+#: field:magento.product.product,no_stock_sync:0
2957+msgid "No Stock Synchronization"
2958+msgstr ""
2959
2960 #. module: magentoerpconnect
2961 #: field:magento.sale.order.line,notes:0
2962@@ -186,67 +779,46 @@
2963 msgstr "Notas"
2964
2965 #. module: magentoerpconnect
2966-#: field:magento.sale.order,openerp_id:0
2967-msgid "Sale Order"
2968-msgstr "Pedido de Venta"
2969-
2970-#. module: magentoerpconnect
2971-#: field:magento.stock.picking.out,openerp_id:0
2972-msgid "Stock Picking"
2973-msgstr "Albaran"
2974-
2975-#. module: magentoerpconnect
2976-#: view:connector.config.settings:0
2977-msgid "Extensions"
2978-msgstr "Extensiones"
2979-
2980-#. module: magentoerpconnect
2981 #: view:magento.backend:0
2982-msgid "Advanced Configuration"
2983-msgstr "Configuración avanzada"
2984-
2985-#. module: magentoerpconnect
2986-#: field:magento.res.partner,group_id:0
2987-msgid "Magento Group (Category)"
2988-msgstr "Grupo Magento (Categoría)"
2989-
2990-#. module: magentoerpconnect
2991-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_store
2992+msgid ""
2993+"Once imported,\n"
2994+" some types of records,\n"
2995+" like the products or categories,\n"
2996+" need a manual review.\n"
2997+" You will find the list\n"
2998+" of the new records to review\n"
2999+" in the menu 'Connectors > Checkpoint'."
3000+msgstr ""
3001+"Once imported,\n"
3002+" some types of records,\n"
3003+" like the products or categories,\n"
3004+" need a manual review.\n"
3005+" You will find the list\n"
3006+" of the new records to review\n"
3007+" in the menu 'Connectors > Checkpoint'."
3008+
3009+#. module: magentoerpconnect
3010+#: view:magento.store:0
3011+#: view:magento.storeview:0
3012 #: view:magento.website:0
3013-#: field:magento.website,store_ids:0
3014-msgid "Stores"
3015-msgstr "Tiendas"
3016-
3017-#. module: magentoerpconnect
3018-#: field:magento.backend,product_stock_field_id:0
3019-msgid "Stock Field"
3020-msgstr "Campo Stock"
3021-
3022-#. module: magentoerpconnect
3023-#: field:magento.res.partner.category,openerp_id:0
3024-msgid "Partner Category"
3025-msgstr "Categoría de empresa"
3026-
3027-#. module: magentoerpconnect
3028-#: help:magento.product.product,magento_qty:0
3029-msgid "Last computed quantity to send on Magento."
3030-msgstr "Ultima cantidad computada enviada a Magento"
3031-
3032-#. module: magentoerpconnect
3033-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_root
3034-#: view:res.partner.category:0
3035-msgid "Magento"
3036-msgstr "Magento"
3037-
3038-#. module: magentoerpconnect
3039-#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
3040-msgid "connector.config.settings"
3041-msgstr "connector.config.settings"
3042-
3043-#. module: magentoerpconnect
3044-#: field:magento.backend,import_products_from_date:0
3045-msgid "Import products from date"
3046-msgstr "Importar productos desde fecha"
3047+msgid "Options"
3048+msgstr "Opciones"
3049+
3050+#. module: magentoerpconnect
3051+#: selection:magento.store,create_invoice_on:0
3052+#: selection:payment.method,create_invoice_on:0
3053+msgid "Paid"
3054+msgstr ""
3055+
3056+#. module: magentoerpconnect
3057+#: field:magento.sale.order,magento_parent_id:0
3058+msgid "Parent Magento Order"
3059+msgstr "Pedido Magento Padre"
3060+
3061+#. module: magentoerpconnect
3062+#: selection:magento.stock.picking.out,picking_method:0
3063+msgid "Partial"
3064+msgstr "Parcial"
3065
3066 #. module: magentoerpconnect
3067 #: model:ir.model,name:magentoerpconnect.model_res_partner
3068@@ -256,19 +828,34 @@
3069 msgstr "Empresa"
3070
3071 #. module: magentoerpconnect
3072-#: model:ir.model,name:magentoerpconnect.model_sale_order
3073-msgid "Sales Order"
3074-msgstr "Pedidos de venta"
3075-
3076-#. module: magentoerpconnect
3077-#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
3078-msgid "Delivery Orders"
3079-msgstr "Albaranes"
3080-
3081-#. module: magentoerpconnect
3082-#: model:ir.model,name:magentoerpconnect.model_sale_order_line
3083-msgid "Sales Order Line"
3084-msgstr "Lineas Pedidos Venta"
3085+#: model:ir.model,name:magentoerpconnect.model_res_partner_category
3086+msgid "Partner Categories"
3087+msgstr "Categorías Empresas"
3088+
3089+#. module: magentoerpconnect
3090+#: field:magento.res.partner.category,openerp_id:0
3091+msgid "Partner Category"
3092+msgstr "Categoría de empresa"
3093+
3094+#. module: magentoerpconnect
3095+#: field:magento.backend,password:0
3096+msgid "Password"
3097+msgstr "Contraseña"
3098+
3099+#. module: magentoerpconnect
3100+#: model:ir.model,name:magentoerpconnect.model_payment_method
3101+msgid "Payment Method"
3102+msgstr ""
3103+
3104+#. module: magentoerpconnect
3105+#: model:ir.model,name:magentoerpconnect.model_stock_picking
3106+msgid "Picking List"
3107+msgstr "Albarán"
3108+
3109+#. module: magentoerpconnect
3110+#: field:magento.stock.picking.out,picking_method:0
3111+msgid "Picking Method"
3112+msgstr "Método Picking"
3113
3114 #. module: magentoerpconnect
3115 #: field:connector.config.settings,module_magentoerpconnect_pricing:0
3116@@ -276,69 +863,15 @@
3117 msgstr "Precios son gestionados en OpenERP con Tarifas"
3118
3119 #. module: magentoerpconnect
3120-#: field:magento.address,is_default_shipping:0
3121-msgid "Default Shipping"
3122-msgstr "Forma Envio Por Defecto"
3123-
3124-#. module: magentoerpconnect
3125-#: sql_constraint:magento.stock.picking.out:0
3126-msgid "A stock picking with same ID on Magento already exists."
3127-msgstr "A stock picking with same ID on Magento already exists."
3128-
3129-#. module: magentoerpconnect
3130-#: view:magento.backend:0
3131-msgid ""
3132-"By clicking on the buttons,\n"
3133-" you will initiate the synchronizations\n"
3134-" with Magento.\n"
3135-" Note that the import or exports\n"
3136-" won't be done directly,\n"
3137-" they will create 'Jobs'\n"
3138-" executed as soon as possible."
3139-msgstr ""
3140-"By clicking on the buttons,\n"
3141-" you will initiate the synchronizations\n"
3142-" with Magento.\n"
3143-" Note that the import or exports\n"
3144-" won't be done directly,\n"
3145-" they will create 'Jobs'\n"
3146-" executed as soon as possible."
3147-
3148-#. module: magentoerpconnect
3149-#: help:magento.backend,product_stock_field_id:0
3150-msgid ""
3151-"Choose the field of the product which will be used for stock inventory "
3152-"updates.\n"
3153-"If empty, Quantity Available is used."
3154-msgstr ""
3155-"Choose the field of the product which will be used for stock inventory "
3156-"updates.\n"
3157-"If empty, Quantity Available is used."
3158-
3159-#. module: magentoerpconnect
3160-#: sql_constraint:magento.product.product:0
3161-msgid "A product with the same ID on Magento already exists"
3162-msgstr "A product with the same ID on Magento already exists"
3163-
3164-#. module: magentoerpconnect
3165-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
3166-msgid "Backends"
3167-msgstr "Backends"
3168-
3169-#. module: magentoerpconnect
3170-#: field:magento.backend,location:0
3171-msgid "Location"
3172-msgstr "Localización"
3173-
3174-#. module: magentoerpconnect
3175-#: model:ir.model,name:magentoerpconnect.model_stock_picking
3176-msgid "Picking List"
3177-msgstr "Albarán"
3178-
3179-#. module: magentoerpconnect
3180-#: field:magento.backend,warehouse_id:0
3181-msgid "Warehouse"
3182-msgstr "Almacen"
3183+#: help:connector.config.settings,module_magentoerpconnect_pricing:0
3184+msgid ""
3185+"Prices are set in OpenERP and exported to Magento.\n"
3186+"\n"
3187+"This installs the module magentoerpconnect_pricing."
3188+msgstr ""
3189+"Prices are set in OpenERP and exported to Magento.\n"
3190+"\n"
3191+"This installs the module magentoerpconnect_pricing."
3192
3193 #. module: magentoerpconnect
3194 #: field:magento.backend,catalog_price_tax_included:0
3195@@ -346,19 +879,10 @@
3196 msgstr "Precios incluyen impuestos"
3197
3198 #. module: magentoerpconnect
3199-#: view:magento.backend:0
3200-msgid "Import products categories since"
3201-msgstr "Importar categorias productos desde"
3202-
3203-#. module: magentoerpconnect
3204-#: field:magento.sale.order.line,openerp_id:0
3205-msgid "Sale Order Line"
3206-msgstr "Línea Pedido Venta"
3207-
3208-#. module: magentoerpconnect
3209-#: field:magento.backend,username:0
3210-msgid "Username"
3211-msgstr "Usuario"
3212+#: model:ir.model,name:magentoerpconnect.model_product_product
3213+#: field:magento.product.product,openerp_id:0
3214+msgid "Product"
3215+msgstr "Producto"
3216
3217 #. module: magentoerpconnect
3218 #: model:ir.model,name:magentoerpconnect.model_product_category
3219@@ -367,80 +891,19 @@
3220 msgstr "Categoría Producto"
3221
3222 #. module: magentoerpconnect
3223-#: field:magento.res.partner,guest_customer:0
3224-msgid "Guest Customer"
3225-msgstr "Cliente Anónimo"
3226-
3227-#. module: magentoerpconnect
3228-#: help:connector.config.settings,module_magentoerpconnect_pricing:0
3229-msgid ""
3230-"Prices are set in OpenERP and exported to Magento.\n"
3231-"\n"
3232-"This installs the module magentoerpconnect_pricing."
3233+#: field:magento.sale.order,openerp_id:0
3234+msgid "Sale Order"
3235+msgstr "Pedido de Venta"
3236+
3237+#. module: magentoerpconnect
3238+#: field:magento.sale.order.line,openerp_id:0
3239+msgid "Sale Order Line"
3240+msgstr "Línea Pedido Venta"
3241+
3242+#. module: magentoerpconnect
3243+#: field:magento.backend,sale_prefix:0
3244+msgid "Sale Prefix"
3245 msgstr ""
3246-"Prices are set in OpenERP and exported to Magento.\n"
3247-"\n"
3248-"This installs the module magentoerpconnect_pricing."
3249-
3250-#. module: magentoerpconnect
3251-#: field:delivery.carrier,magento_carrier_code:0
3252-msgid "Magento Base Carrier Code"
3253-msgstr "Magento Base Carrier Code"
3254-
3255-#. module: magentoerpconnect
3256-#: view:magento.website:0
3257-msgid "Import partners since"
3258-msgstr "Importar empresas desde"
3259-
3260-#. module: magentoerpconnect
3261-#: view:magento.backend:0
3262-#: view:magento.website:0
3263-msgid "Import in background"
3264-msgstr "Importar en segundo plano"
3265-
3266-#. module: magentoerpconnect
3267-#: field:magento.account.invoice,magento_id:0
3268-#: field:magento.address,magento_id:0
3269-#: field:magento.binding,magento_id:0
3270-#: field:magento.product.category,magento_id:0
3271-#: field:magento.product.product,magento_id:0
3272-#: field:magento.res.partner,magento_id:0
3273-#: field:magento.res.partner.category,magento_id:0
3274-#: field:magento.sale.order,magento_id:0
3275-#: field:magento.sale.order.line,magento_id:0
3276-#: field:magento.stock.picking.out,magento_id:0
3277-#: field:magento.store,magento_id:0
3278-#: field:magento.storeview,magento_id:0
3279-#: field:magento.website,magento_id:0
3280-msgid "ID on Magento"
3281-msgstr "ID en Magento"
3282-
3283-#. module: magentoerpconnect
3284-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_store
3285-msgid "Magento Stores"
3286-msgstr "Tiendas Magento"
3287-
3288-#. module: magentoerpconnect
3289-#: field:magento.backend,pricelist_id:0
3290-#: field:magento.website,pricelist_id:0
3291-msgid "Pricelist"
3292-msgstr "Tarifa"
3293-
3294-#. module: magentoerpconnect
3295-#: field:magento.sale.order,total_amount:0
3296-msgid "Total amount"
3297-msgstr "Cantidad Total"
3298-
3299-#. module: magentoerpconnect
3300-#: model:ir.model,name:magentoerpconnect.model_magento_product_category
3301-#: view:magento.product.category:0
3302-msgid "Magento Product Category"
3303-msgstr "Categoría Producto Magento"
3304-
3305-#. module: magentoerpconnect
3306-#: view:magento.product.product:0
3307-msgid "(recompute)"
3308-msgstr "(recompitar)"
3309
3310 #. module: magentoerpconnect
3311 #: field:magento.store,openerp_id:0
3312@@ -448,84 +911,14 @@
3313 msgstr "Tienda Venta"
3314
3315 #. module: magentoerpconnect
3316-#: field:magento.product.product,manage_stock:0
3317-msgid "Manage Stock Level"
3318-msgstr "Gestión Nivel Stock"
3319-
3320-#. module: magentoerpconnect
3321-#: model:ir.model,name:magentoerpconnect.model_magento_backend
3322-#: field:magento.account.invoice,backend_id:0
3323-#: field:magento.address,backend_id:0
3324-#: view:magento.backend:0
3325-#: field:magento.binding,backend_id:0
3326-#: field:magento.product.category,backend_id:0
3327-#: field:magento.product.product,backend_id:0
3328-#: field:magento.res.partner,backend_id:0
3329-#: field:magento.res.partner.category,backend_id:0
3330-#: field:magento.sale.order,backend_id:0
3331-#: field:magento.sale.order.line,backend_id:0
3332-#: field:magento.stock.picking.out,backend_id:0
3333-#: field:magento.store,backend_id:0
3334-#: field:magento.storeview,backend_id:0
3335-#: field:magento.website,backend_id:0
3336-msgid "Magento Backend"
3337-msgstr "Magento Backend"
3338-
3339-#. module: magentoerpconnect
3340-#: view:magento.storeview:0
3341-msgid "Import Sale Orders"
3342-msgstr "Importar"
3343-
3344-#. module: magentoerpconnect
3345-#: field:magento.stock.picking.out,picking_method:0
3346-msgid "Picking Method"
3347-msgstr "Método Picking"
3348-
3349-#. module: magentoerpconnect
3350-#: view:res.partner:0
3351-#: field:res.partner,magento_address_bind_ids:0
3352-msgid "Magento Address Bindings"
3353-msgstr "Magento Address Bindings"
3354-
3355-#. module: magentoerpconnect
3356-#: field:magento.store,send_invoice_paid_mail:0
3357-msgid "Send email notification on invoice paid"
3358-msgstr "Enviar notificación email cuando se pague la factura"
3359-
3360-#. module: magentoerpconnect
3361-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_storeview
3362-msgid "Magento Storeviews"
3363-msgstr "Vista Tienda Magento"
3364-
3365-#. module: magentoerpconnect
3366-#: view:magento.storeview:0
3367-msgid "Import Sale Orders since"
3368-msgstr "Importar Pedidos Venta desde"
3369-
3370-#. module: magentoerpconnect
3371-#: selection:magento.product.product,backorders:0
3372-msgid "Sell Quantity < 0"
3373-msgstr "Vendes Cantidad < 0"
3374-
3375-#. module: magentoerpconnect
3376-#: help:magento.sale.order,magento_order_id:0
3377-msgid "'order_id' field in Magento"
3378-msgstr "'order_id' field in Magento"
3379-
3380-#. module: magentoerpconnect
3381-#: field:magento.product.category,magento_parent_id:0
3382-msgid "Magento Parent Category"
3383-msgstr "Categoría Padre Magento"
3384-
3385-#. module: magentoerpconnect
3386-#: field:magento.res.partner,emailid:0
3387-msgid "E-mail address"
3388-msgstr "E-mail"
3389-
3390-#. module: magentoerpconnect
3391-#: selection:magento.stock.picking.out,picking_method:0
3392-msgid "Partial"
3393-msgstr "Parcial"
3394+#: model:ir.model,name:magentoerpconnect.model_sale_order
3395+msgid "Sales Order"
3396+msgstr "Pedidos de venta"
3397+
3398+#. module: magentoerpconnect
3399+#: model:ir.model,name:magentoerpconnect.model_sale_order_line
3400+msgid "Sales Order Line"
3401+msgstr "Lineas Pedidos Venta"
3402
3403 #. module: magentoerpconnect
3404 #: model:ir.model,name:magentoerpconnect.model_sale_shop
3405@@ -533,36 +926,70 @@
3406 msgstr "Tienda Ventas"
3407
3408 #. module: magentoerpconnect
3409-#: field:magento.sale.order,total_amount_tax:0
3410-msgid "Total amount w. tax"
3411-msgstr "Total w. impuesto"
3412-
3413-#. module: magentoerpconnect
3414-#: model:ir.model,name:magentoerpconnect.model_magento_storeview
3415-#: view:magento.storeview:0
3416-msgid "Magento Storeview"
3417-msgstr "Vista Tienda Magento"
3418-
3419-#. module: magentoerpconnect
3420-#: field:magento.backend,default_lang_id:0
3421-msgid "Default Language"
3422-msgstr "Idioma por defecto"
3423-
3424-#. module: magentoerpconnect
3425-#: field:magento.sale.order,magento_parent_id:0
3426-msgid "Parent Magento Order"
3427-msgstr "Pedido Magento Padre"
3428-
3429-#. module: magentoerpconnect
3430-#: model:ir.model,name:magentoerpconnect.model_magento_address
3431-#: view:magento.address:0
3432-msgid "Magento Address"
3433-msgstr "Dirección Magento"
3434-
3435-#. module: magentoerpconnect
3436-#: view:magento.backend:0
3437-msgid "Update"
3438-msgstr "Actualizar"
3439+#: selection:magento.product.product,backorders:0
3440+msgid "Sell Quantity < 0"
3441+msgstr "Vendes Cantidad < 0"
3442+
3443+#. module: magentoerpconnect
3444+#: selection:magento.product.product,backorders:0
3445+msgid "Sell Quantity < 0 and Use Customer Notification"
3446+msgstr "Vender cantidad z 0 y Usar Notificación Cliente"
3447+
3448+#. module: magentoerpconnect
3449+#: field:magento.store,send_invoice_paid_mail:0
3450+msgid "Send email notification on invoice validated/paid"
3451+msgstr ""
3452+
3453+#. module: magentoerpconnect
3454+#: field:magento.store,send_picking_done_mail:0
3455+msgid "Send email notification on picking done"
3456+msgstr "Enviar email de notificación cuando sea realizado el picking"
3457+
3458+#. module: magentoerpconnect
3459+#: help:payment.method,create_invoice_on:0
3460+msgid ""
3461+"Should the invoice be created in Magento when it is validated or when it is "
3462+"paid in OpenERP?\n"
3463+"If nothing is set, the option falls back to the same option on the Magento "
3464+"store related to the sales order."
3465+msgstr ""
3466+
3467+#. module: magentoerpconnect
3468+#: help:magento.store,create_invoice_on:0
3469+msgid ""
3470+"Should the invoice be created in Magento when it is validated or when it is "
3471+"paid in OpenERP?\n"
3472+"This only takes effect if the sales order's related payment method is not "
3473+"giving an option for this by itself. (See Payment Methods)"
3474+msgstr ""
3475+
3476+#. module: magentoerpconnect
3477+#: field:magento.storeview,sort_order:0
3478+#: field:magento.website,sort_order:0
3479+msgid "Sort Order"
3480+msgstr "Orden de Clasificación"
3481+
3482+#. module: magentoerpconnect
3483+#: field:magento.backend,product_stock_field_id:0
3484+msgid "Stock Field"
3485+msgstr "Campo Stock"
3486+
3487+#. module: magentoerpconnect
3488+#: field:magento.stock.picking.out,openerp_id:0
3489+msgid "Stock Picking"
3490+msgstr "Albaran"
3491+
3492+#. module: magentoerpconnect
3493+#: field:magento.storeview,store_id:0
3494+msgid "Store"
3495+msgstr "Tienda"
3496+
3497+#. module: magentoerpconnect
3498+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_store
3499+#: view:magento.website:0
3500+#: field:magento.website,store_ids:0
3501+msgid "Stores"
3502+msgstr "Tiendas"
3503
3504 #. module: magentoerpconnect
3505 #: model:ir.ui.menu,name:magentoerpconnect.menu_magento_storeview
3506@@ -572,139 +999,14 @@
3507 msgstr "Vistas Tiendas"
3508
3509 #. module: magentoerpconnect
3510-#: selection:magento.product.product,backorders:0
3511-#: selection:magento.product.product,manage_stock:0
3512-msgid "Use Default Config"
3513-msgstr "Usar Configuración por defecto"
3514-
3515-#. module: magentoerpconnect
3516-#: field:magento.storeview,store_id:0
3517-msgid "Store"
3518-msgstr "Tienda"
3519-
3520-#. module: magentoerpconnect
3521-#: field:magento.backend,website_ids:0
3522-msgid "Website"
3523-msgstr "Sitio Web"
3524-
3525-#. module: magentoerpconnect
3526-#: view:magento.backend:0
3527-msgid "Magento Configuration"
3528-msgstr "Magento Configuration"
3529-
3530-#. module: magentoerpconnect
3531-#: view:magento.backend:0
3532-msgid "Update all the products stock quantities"
3533-msgstr "Actualizar el stock de todos los productos"
3534-
3535-#. module: magentoerpconnect
3536-#: view:magento.backend:0
3537-msgid "Import partners from all websites"
3538-msgstr "Importar empresas de todos los sitios web"
3539-
3540-#. module: magentoerpconnect
3541-#: view:connector.config.settings:0
3542-msgid "Magentoerpconnect"
3543-msgstr "Magentoerpconnect"
3544-
3545-#. module: magentoerpconnect
3546-#: view:magento.store:0
3547-#: view:magento.storeview:0
3548-#: view:magento.website:0
3549-msgid "Options"
3550-msgstr "Opciones"
3551-
3552-#. module: magentoerpconnect
3553-#: field:res.partner,birthday:0
3554-msgid "Birthday"
3555-msgstr "Cumpleaños"
3556-
3557-#. module: magentoerpconnect
3558-#: field:magento.backend,default_category_id:0
3559-msgid "Default Product Category"
3560-msgstr "Categoría Producto por Defecto"
3561-
3562-#. module: magentoerpconnect
3563-#: field:magento.product.product,magento_qty:0
3564-msgid "Computed Quantity"
3565-msgstr "Computed Quantity"
3566-
3567-#. module: magentoerpconnect
3568-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_website
3569-msgid "Magento Websites"
3570-msgstr "Sitio Web Magento"
3571-
3572-#. module: magentoerpconnect
3573-#: model:ir.model,name:magentoerpconnect.model_magento_sale_order_line
3574-msgid "Magento Sale Order Line"
3575-msgstr "Línea Pedido Venta Magento"
3576-
3577-#. module: magentoerpconnect
3578-#: sql_constraint:magento.product.category:0
3579-msgid "A product category with same ID on Magento already exists."
3580-msgstr "A product category with same ID on Magento already exists."
3581-
3582-#. module: magentoerpconnect
3583-#: field:magento.product.product,product_type:0
3584-msgid "Magento Product Type"
3585-msgstr "Tipo Producto Magento"
3586-
3587-#. module: magentoerpconnect
3588-#: field:magento.storeview,lang_id:0
3589-msgid "Language"
3590-msgstr "Idioma"
3591-
3592-#. module: magentoerpconnect
3593-#: field:magento.address,created_at:0
3594-#: field:magento.product.product,created_at:0
3595-#: field:magento.res.partner,created_at:0
3596-msgid "Created At (on Magento)"
3597-msgstr "Creado a las (en Magento)"
3598-
3599-#. module: magentoerpconnect
3600-#: field:delivery.carrier,magento_export_tracking:0
3601-msgid "Export tracking numbers"
3602-msgstr "Exportar Números de Seguimiento"
3603-
3604-#. module: magentoerpconnect
3605-#: field:magento.storeview,sort_order:0
3606-#: field:magento.website,sort_order:0
3607-msgid "Sort Order"
3608-msgstr "Orden de Clasificación"
3609-
3610-#. module: magentoerpconnect
3611-#: field:magento.backend,product_binding_ids:0
3612-#: field:magento.website,product_binding_ids:0
3613-msgid "Magento Products"
3614-msgstr "Productos Magento"
3615-
3616-#. module: magentoerpconnect
3617-#: field:magento.storeview,import_orders_from_date:0
3618-msgid "Import sale orders from date"
3619-msgstr "Importar pedidos venta desde fecha"
3620-
3621-#. module: magentoerpconnect
3622-#: model:ir.model,name:magentoerpconnect.model_res_partner_category
3623-msgid "Partner Categories"
3624-msgstr "Categorías Empresas"
3625-
3626-#. module: magentoerpconnect
3627-#: field:magento.address,is_default_billing:0
3628-msgid "Default Invoice"
3629-msgstr "Factura por defecto"
3630-
3631-#. module: magentoerpconnect
3632-#: view:magento.store:0
3633-#: view:magento.storeview:0
3634-#: view:magento.website:0
3635-msgid "Informations"
3636-msgstr "Informaciones"
3637-
3638-#. module: magentoerpconnect
3639-#: field:magento.storeview,code:0
3640-#: field:magento.website,code:0
3641-msgid "Code"
3642-msgstr "Código"
3643+#: view:magento.backend:0
3644+msgid "Synchronize Metadata"
3645+msgstr "Sincronizar Metadata"
3646+
3647+#. module: magentoerpconnect
3648+#: field:magento.res.partner.category,tax_class_id:0
3649+msgid "Tax Class ID"
3650+msgstr "Tax Class ID"
3651
3652 #. module: magentoerpconnect
3653 #: field:magento.sale.order.line,tax_rate:0
3654@@ -712,57 +1014,82 @@
3655 msgstr "Impuesto"
3656
3657 #. module: magentoerpconnect
3658+#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount
3659+msgid ""
3660+"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
3661+"\n"
3662+"Cause:\n"
3663+"The taxes are probably different between OpenERP and Magento. A fiscal "
3664+"position could have changed the final price.\n"
3665+"\n"
3666+"Resolution:\n"
3667+"Check your taxes and fiscal positions configuration and correct them if "
3668+"necessary."
3669+msgstr ""
3670+"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
3671+"\n"
3672+"Cause:\n"
3673+"The taxes are probably different between OpenERP and Magento. A fiscal "
3674+"position could have changed the final price.\n"
3675+"\n"
3676+"Resolution:\n"
3677+"Check your taxes and fiscal positions configuration and correct them if "
3678+"necessary."
3679+
3680+#. module: magentoerpconnect
3681+#: help:magento.backend,use_custom_api_path:0
3682+msgid ""
3683+"The default API path is '/index.php/api/xmlrpc'. Check this box if you use a "
3684+"custom API path, in that case, the location has to be completed with the "
3685+"custom API path "
3686+msgstr ""
3687+
3688+#. module: magentoerpconnect
3689+#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount_tax
3690+msgid ""
3691+"The tax amount computed in OpenERP doesn't match with the tax amount in "
3692+"Magento.\n"
3693+"\n"
3694+"Cause:\n"
3695+"The taxes are probably different between OpenERP and Magento. A fiscal "
3696+"position could have changed the final price.\n"
3697+"\n"
3698+"Resolution:\n"
3699+"Check your taxes and fiscal positions configuration and correct them if "
3700+"necessary."
3701+msgstr ""
3702+"The tax amount computed in OpenERP doesn't match with the tax amount in "
3703+"Magento.\n"
3704+"\n"
3705+"Cause:\n"
3706+"The taxes are probably different between OpenERP and Magento. A fiscal "
3707+"position could have changed the final price.\n"
3708+"\n"
3709+"Resolution:\n"
3710+"Check your taxes and fiscal positions configuration and correct them if "
3711+"necessary."
3712+
3713+#. module: magentoerpconnect
3714+#: help:connector.config.settings,module_magentoerpconnect_catalog:0
3715+msgid "This installs the module magentoerpconnect_catalog."
3716+msgstr "Esto instala el módulo magentoerpconnect_catalog."
3717+
3718+#. module: magentoerpconnect
3719+#: help:connector.config.settings,module_magentoerpconnect_export_partner:0
3720+msgid "This installs the module magentoerpconnect_export_partner."
3721+msgstr "This installs the module magentoerpconnect_export_partner."
3722+
3723+#. module: magentoerpconnect
3724 #: view:magento.backend:0
3725-#: view:magento.storeview:0
3726-#: view:magento.website:0
3727-msgid "Imports"
3728-msgstr "Importaciones"
3729-
3730-#. module: magentoerpconnect
3731-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_backend
3732-msgid "Magento Backends"
3733-msgstr "Magento Backends"
3734-
3735-#. module: magentoerpconnect
3736-#: field:magento.product.category,magento_child_ids:0
3737-msgid "Magento Child Categories"
3738-msgstr "Subcategorias Magento"
3739-
3740-#. module: magentoerpconnect
3741-#: field:connector.config.settings,module_magentoerpconnect_export_partner:0
3742-msgid "Export Partners to Magento (experimental)"
3743-msgstr "Exportar Empresas a Magento (experimental)"
3744-
3745-#. module: magentoerpconnect
3746-#: field:magento.backend,version:0
3747-msgid "Version"
3748-msgstr "Versión"
3749-
3750-#. module: magentoerpconnect
3751-#: model:ir.model,name:magentoerpconnect.model_account_invoice
3752-#: field:magento.account.invoice,openerp_id:0
3753-msgid "Invoice"
3754-msgstr "Factura"
3755-
3756-#. module: magentoerpconnect
3757-#: field:delivery.carrier,magento_code:0
3758-msgid "Magento Carrier Code"
3759-msgstr "Modo de Envio Magento"
3760-
3761-#. module: magentoerpconnect
3762-#: sql_constraint:magento.res.partner.category:0
3763-msgid "A partner tag with same ID on Magento already exists."
3764-msgstr "A partner tag with same ID on Magento already exists."
3765-
3766-#. module: magentoerpconnect
3767-#: field:magento.res.partner,taxvat:0
3768-msgid "Magento VAT"
3769-msgstr "Impuesto Magento"
3770-
3771-#. module: magentoerpconnect
3772-#: field:magento.res.partner.category,tax_class_id:0
3773-msgid "Tax Class ID"
3774-msgstr "Tax Class ID"
3775+msgid ""
3776+"This option should respect the same\n"
3777+" configuration than Magento. Pay\n"
3778+" attention to the taxes on the "
3779+"products,\n"
3780+" which should surely include prices "
3781+"when\n"
3782+" this option is activated."
3783+msgstr ""
3784
3785 #. module: magentoerpconnect
3786 #: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount
3787@@ -770,222 +1097,29 @@
3788 msgstr "Importe Total Difiere de Magento"
3789
3790 #. module: magentoerpconnect
3791-#: field:magento.store,send_picking_done_mail:0
3792-msgid "Send email notification on picking done"
3793-msgstr "Enviar email de notificación cuando sea realizado el picking"
3794-
3795-#. module: magentoerpconnect
3796-#: model:ir.model,name:magentoerpconnect.model_magento_binding
3797-#: model:ir.model,name:magentoerpconnect.model_magento_res_partner_category
3798-msgid "Magento Binding (abstract)"
3799-msgstr "Magento Binding (abstract)"
3800-
3801-#. module: magentoerpconnect
3802-#: model:ir.model,name:magentoerpconnect.model_magento_account_invoice
3803-msgid "Magento Account Invoice"
3804-msgstr "Factura Magento"
3805-
3806-#. module: magentoerpconnect
3807-#: sql_constraint:magento.store:0
3808-msgid "A store with the same ID on Magento already exists."
3809-msgstr "A store with the same ID on Magento already exists."
3810-
3811-#. module: magentoerpconnect
3812-#: model:ir.model,name:magentoerpconnect.model_magento_res_partner
3813-#: field:magento.address,magento_partner_id:0
3814-#: view:magento.res.partner:0
3815-msgid "Magento Partner"
3816-msgstr "Empresa Magento"
3817-
3818-#. module: magentoerpconnect
3819-#: sql_constraint:magento.storeview:0
3820-msgid "A storeview with same ID on Magento already exists."
3821-msgstr "A storeview with same ID on Magento already exists."
3822-
3823-#. module: magentoerpconnect
3824-#: model:ir.model,name:magentoerpconnect.model_magento_stock_picking_out
3825-#: view:magento.stock.picking.out:0
3826-msgid "Magento Delivery Order"
3827-msgstr "Albaran Magento"
3828-
3829-#. module: magentoerpconnect
3830-#: view:magento.backend:0
3831-msgid "Import products since"
3832-msgstr "Importar productos desde"
3833-
3834-#. module: magentoerpconnect
3835-#: field:magento.product.category,description:0
3836-msgid "Description"
3837-msgstr "Descripción"
3838-
3839-#. module: magentoerpconnect
3840-#: selection:magento.product.product,backorders:0
3841-msgid "Sell Quantity < 0 and Use Customer Notification"
3842-msgstr "Vender cantidad z 0 y Usar Notificación Cliente"
3843-
3844-#. module: magentoerpconnect
3845-#: sql_constraint:magento.account.invoice:0
3846-msgid "An invoice with the same ID on Magento already exists."
3847-msgstr "An invoice with the same ID on Magento already exists."
3848-
3849-#. module: magentoerpconnect
3850-#: sql_constraint:magento.res.partner:0
3851-msgid "A partner with same ID on Magento already exists for this website."
3852-msgstr "A partner with same ID on Magento already exists for this website."
3853-
3854-#. module: magentoerpconnect
3855-#: view:magento.backend:0
3856-msgid "e.g. http://my.magento.com"
3857-msgstr "e.g. http://my.magento.com"
3858-
3859-#. module: magentoerpconnect
3860-#: view:magento.account.invoice:0
3861-msgid "Magento Invoice"
3862-msgstr "Factura Magento"
3863-
3864-#. module: magentoerpconnect
3865-#: field:magento.backend,password:0
3866-msgid "Password"
3867-msgstr "Contraseña"
3868-
3869-#. module: magentoerpconnect
3870-#: view:magento.backend:0
3871-msgid "Main Configuration"
3872-msgstr "Configuración Principal"
3873-
3874-#. module: magentoerpconnect
3875-#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount
3876-msgid ""
3877-"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
3878-"\n"
3879-"Cause:\n"
3880-"The taxes are probably different between OpenERP and Magento. A fiscal "
3881-"position could have changed the final price.\n"
3882-"\n"
3883-"Resolution:\n"
3884-"Check your taxes and fiscal positions configuration and correct them if "
3885-"necessary."
3886-msgstr ""
3887-"The amount computed in OpenERP doesn't match with the amount in Magento.\n"
3888-"\n"
3889-"Cause:\n"
3890-"The taxes are probably different between OpenERP and Magento. A fiscal "
3891-"position could have changed the final price.\n"
3892-"\n"
3893-"Resolution:\n"
3894-"Check your taxes and fiscal positions configuration and correct them if "
3895-"necessary."
3896-
3897-#. module: magentoerpconnect
3898 #: model:sale.exception,name:magentoerpconnect.excep_wrong_total_amount_tax
3899 msgid "Total Tax Amount differs from Magento"
3900 msgstr "Total Impuestos difiere de Magento"
3901
3902 #. module: magentoerpconnect
3903-#: view:magento.backend:0
3904-msgid "Import all customer groups"
3905-msgstr "Importar todos los grupos de clientes"
3906-
3907-#. module: magentoerpconnect
3908-#: field:magento.backend,name:0
3909-#: field:magento.storeview,name:0
3910-#: field:magento.website,name:0
3911-msgid "Name"
3912-msgstr "Nombre"
3913-
3914-#. module: magentoerpconnect
3915-#: model:ir.model,name:magentoerpconnect.model_magento_website
3916-#: field:magento.address,website_id:0
3917-#: field:magento.res.partner,website_id:0
3918-#: field:magento.store,website_id:0
3919-#: view:magento.website:0
3920-msgid "Magento Website"
3921-msgstr "Sitio Web Magento"
3922-
3923-#. module: magentoerpconnect
3924-#: field:magento.storeview,enabled:0
3925-msgid "Enabled"
3926-msgstr "Activado"
3927-
3928-#. module: magentoerpconnect
3929-#: field:magento.product.product,backorders:0
3930-msgid "Manage Inventory Backorders"
3931-msgstr "Manage Inventory Backorders"
3932-
3933-#. module: magentoerpconnect
3934-#: model:ir.model,name:magentoerpconnect.model_product_product
3935-#: field:magento.product.product,openerp_id:0
3936-msgid "Product"
3937-msgstr "Producto"
3938-
3939-#. module: magentoerpconnect
3940-#: view:magento.backend:0
3941-msgid "Synchronize Metadata"
3942-msgstr "Sincronizar Metadata"
3943-
3944-#. module: magentoerpconnect
3945-#: help:magento.website,pricelist_id:0
3946-msgid ""
3947-"The pricelist used to define the prices of the products in Magento for this "
3948-"website.\n"
3949-"Choose a pricelist only if the prices are different for this website.\n"
3950-"When empty, the default price will be used."
3951-msgstr ""
3952-"Lista de precios usada para definir los precios de los productos en Magento "
3953-"para esta web.\n"
3954-"Elige una lista solo si los precios son diferentes para esta web.\n"
3955-"Si no seleccionas ninguna, los precios serán por defecto."
3956-
3957-#. module: magentoerpconnect
3958-#: model:ir.model,name:magentoerpconnect.model_delivery_carrier
3959-msgid "Carrier"
3960-msgstr "Transportista"
3961-
3962-#. module: magentoerpconnect
3963-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_website
3964-#: view:magento.backend:0
3965-#: field:magento.product.product,website_ids:0
3966-msgid "Websites"
3967-msgstr "Sitios Web"
3968-
3969-#. module: magentoerpconnect
3970-#: view:magento.product.product:0
3971-msgid "Inventory Options"
3972-msgstr "Opciones Inventario"
3973-
3974-#. module: magentoerpconnect
3975-#: selection:magento.product.product,backorders:0
3976-msgid "No Sell"
3977-msgstr "No Vender"
3978-
3979-#. module: magentoerpconnect
3980-#: view:magento.backend:0
3981-msgid ""
3982-"Once imported,\n"
3983-" some types of records,\n"
3984-" like the products or categories,\n"
3985-" need a manual review.\n"
3986-" You will find the list\n"
3987-" of the new records to review\n"
3988-" in the menu 'Connectors > Checkpoint'."
3989-msgstr ""
3990-"Once imported,\n"
3991-" some types of records,\n"
3992-" like the products or categories,\n"
3993-" need a manual review.\n"
3994-" You will find the list\n"
3995-" of the new records to review\n"
3996-" in the menu 'Connectors > Checkpoint'."
3997-
3998-#. module: magentoerpconnect
3999-#: field:delivery.carrier,magento_tracking_title:0
4000-msgid "Magento Tracking Title"
4001-msgstr "Magento Tracking Title"
4002-
4003-#. module: magentoerpconnect
4004-#: selection:magento.product.product,manage_stock:0
4005-msgid "Manage Stock"
4006-msgstr "Gestionar Stock"
4007+#: field:magento.sale.order,total_amount:0
4008+msgid "Total amount"
4009+msgstr "Cantidad Total"
4010+
4011+#. module: magentoerpconnect
4012+#: field:magento.sale.order,total_amount_tax:0
4013+msgid "Total amount w. tax"
4014+msgstr "Total w. impuesto"
4015+
4016+#. module: magentoerpconnect
4017+#: view:magento.backend:0
4018+msgid "Update"
4019+msgstr "Actualizar"
4020+
4021+#. module: magentoerpconnect
4022+#: view:magento.backend:0
4023+msgid "Update all the products stock quantities"
4024+msgstr "Actualizar el stock de todos los productos"
4025
4026 #. module: magentoerpconnect
4027 #: field:magento.address,updated_at:0
4028@@ -995,63 +1129,102 @@
4029 msgstr "Updated At (on Magento)"
4030
4031 #. module: magentoerpconnect
4032-#: selection:magento.stock.picking.out,picking_method:0
4033-msgid "Complete"
4034-msgstr "Completo"
4035-
4036-#. module: magentoerpconnect
4037-#: model:ir.model,name:magentoerpconnect.model_magento_store
4038-#: view:magento.store:0
4039-msgid "Magento Store"
4040-msgstr "Tienda Magento"
4041-
4042-#. module: magentoerpconnect
4043-#: model:ir.model,name:magentoerpconnect.model_magento_product_product
4044-#: view:magento.product.product:0
4045-msgid "Magento Product"
4046-msgstr "Producto Magento"
4047-
4048-#. module: magentoerpconnect
4049-#: model:ir.model,name:magentoerpconnect.model_magento_sale_order
4050-#: field:magento.account.invoice,magento_order_id:0
4051-#: field:magento.sale.order.line,magento_order_id:0
4052-#: field:magento.stock.picking.out,magento_order_id:0
4053-msgid "Magento Sale Order"
4054-msgstr "Pedido Venta Magento"
4055-
4056-#. module: magentoerpconnect
4057-#: field:magento.website,import_partners_from_date:0
4058-msgid "Import partners from date"
4059-msgstr "Importar empresas desde fecha"
4060-
4061-#. module: magentoerpconnect
4062-#: sql_constraint:magento.sale.order:0
4063-#: sql_constraint:magento.sale.order.line:0
4064-msgid "A sale order line with the same ID on Magento already exists."
4065-msgstr "A sale order line with the same ID on Magento already exists."
4066-
4067-#. module: magentoerpconnect
4068-#: field:magento.sale.order,magento_order_line_ids:0
4069-msgid "Magento Order Lines"
4070-msgstr "Lineas Pedido Venta Magento"
4071-
4072-#. module: magentoerpconnect
4073-#: field:magento.res.partner,newsletter:0
4074-msgid "Newsletter"
4075-msgstr "Boletín"
4076-
4077-#. module: magentoerpconnect
4078-#: help:magento.backend,default_lang_id:0
4079-msgid ""
4080-"If a default language is selected, the records will be imported in the "
4081-"translation of this language.\n"
4082-"Note that a similar configuration exists for each storeview."
4083-msgstr ""
4084-"If a default language is selected, the records will be imported in the "
4085-"translation of this language.\n"
4086-"Note that a similar configuration exists for each storeview."
4087-
4088-#. module: magentoerpconnect
4089-#: sql_constraint:magento.address:0
4090-msgid "A partner address with same ID on Magento already exists."
4091-msgstr "A partner address with same ID on Magento already exists."
4092+#: help:magento.backend,location:0
4093+msgid "Url to magento application"
4094+msgstr ""
4095+
4096+#. module: magentoerpconnect
4097+#: selection:magento.product.product,backorders:0
4098+#: selection:magento.product.product,manage_stock:0
4099+msgid "Use Default Config"
4100+msgstr "Usar Configuración por defecto"
4101+
4102+#. module: magentoerpconnect
4103+#: field:magento.backend,use_auth_basic:0
4104+msgid "Use HTTP Auth Basic"
4105+msgstr ""
4106+
4107+#. module: magentoerpconnect
4108+#: help:magento.backend,use_auth_basic:0
4109+msgid ""
4110+"Use a Basic Access Authentication for the API. The Magento server could be "
4111+"configured to restrict access using a HTTP authentication based on a "
4112+"username and a password."
4113+msgstr ""
4114+
4115+#. module: magentoerpconnect
4116+#: field:magento.backend,username:0
4117+msgid "Username"
4118+msgstr "Usuario"
4119+
4120+#. module: magentoerpconnect
4121+#: selection:magento.store,create_invoice_on:0
4122+#: selection:payment.method,create_invoice_on:0
4123+msgid "Validate"
4124+msgstr ""
4125+
4126+#. module: magentoerpconnect
4127+#: field:magento.backend,version:0
4128+msgid "Version"
4129+msgstr "Versión"
4130+
4131+#. module: magentoerpconnect
4132+#: field:magento.backend,warehouse_id:0
4133+msgid "Warehouse"
4134+msgstr "Almacen"
4135+
4136+#. module: magentoerpconnect
4137+#: help:magento.backend,warehouse_id:0
4138+msgid "Warehouse used to compute the stock quantities."
4139+msgstr "Almacén utilizado para computar las cantidades de stock"
4140+
4141+#. module: magentoerpconnect
4142+#: help:magento.backend,password:0
4143+msgid "Webservice password"
4144+msgstr ""
4145+
4146+#. module: magentoerpconnect
4147+#: help:magento.backend,username:0
4148+msgid "Webservice user"
4149+msgstr ""
4150+
4151+#. module: magentoerpconnect
4152+#: field:magento.backend,website_ids:0
4153+msgid "Website"
4154+msgstr "Sitio Web"
4155+
4156+#. module: magentoerpconnect
4157+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_website
4158+#: view:magento.backend:0
4159+#: field:magento.product.product,website_ids:0
4160+msgid "Websites"
4161+msgstr "Sitios Web"
4162+
4163+#. module: magentoerpconnect
4164+#: help:magento.storeview,import_orders_from_date:0
4165+msgid ""
4166+"do not consider non-imported sale orders before this date. Leave empty to "
4167+"import all sale orders"
4168+msgstr ""
4169+"do not consider non-imported sale orders before this date. Leave empty to "
4170+"import all sale orders"
4171+
4172+#. module: magentoerpconnect
4173+#: view:magento.backend:0
4174+msgid "e.g. http://my.magento.com"
4175+msgstr "e.g. http://my.magento.com"
4176+
4177+#. module: magentoerpconnect
4178+#: view:magento.backend:0
4179+msgid "e.g. http://my.magento.com/admin"
4180+msgstr ""
4181+
4182+#. module: magentoerpconnect
4183+#: view:magento.backend:0
4184+msgid "mag-"
4185+msgstr ""
4186+
4187+#. module: magentoerpconnect
4188+#: model:ir.model,name:magentoerpconnect.model_magentoerpconnect_installed
4189+msgid "magentoerpconnect.installed"
4190+msgstr "magentoerpconnect.installed"
4191
4192=== modified file 'magentoerpconnect/i18n/fr.po'
4193--- magentoerpconnect/i18n/fr.po 2014-04-12 10:07:56 +0000
4194+++ magentoerpconnect/i18n/fr.po 2014-06-18 11:34:02 +0000
4195@@ -6,123 +6,84 @@
4196 msgstr ""
4197 "Project-Id-Version: OpenERP Server 7.0\n"
4198 "Report-Msgid-Bugs-To: \n"
4199-"POT-Creation-Date: 2013-05-01 12:45+0000\n"
4200+"POT-Creation-Date: 2014-06-10 14:00+0000\n"
4201 "PO-Revision-Date: 2014-01-06 13:12+0000\n"
4202 "Last-Translator: Guewen Baconnier @ Camptocamp <Unknown>\n"
4203 "Language-Team: \n"
4204 "MIME-Version: 1.0\n"
4205 "Content-Type: text/plain; charset=UTF-8\n"
4206 "Content-Transfer-Encoding: 8bit\n"
4207-"X-Launchpad-Export-Date: 2014-04-12 10:07+0000\n"
4208-"X-Generator: Launchpad (build 16976)\n"
4209-
4210-#. module: magentoerpconnect
4211-#: help:magento.backend,pricelist_id:0
4212-msgid "The price list used to define the prices of the products in Magento."
4213-msgstr ""
4214-"La liste de prix utilisée pour définir les prix des articles sur Magento."
4215-
4216-#. module: magentoerpconnect
4217-#: help:magento.store,send_invoice_paid_mail:0
4218-msgid ""
4219-"Does the invoice export/creation should send an email notification on "
4220-"Magento side?"
4221-msgstr ""
4222-"Définit si Magento doit envoyer un e-mail lors de l'export des factures."
4223-
4224-#. module: magentoerpconnect
4225-#: view:magento.backend:0
4226-msgid "Import sales orders from all store views"
4227-msgstr "Importer les commandes depuis toutes les vues magasin"
4228-
4229-#. module: magentoerpconnect
4230-#: model:sale.exception,description:magentoerpconnect.excep_wrong_total_amount_tax
4231-msgid ""
4232-"The tax amount computed in OpenERP doesn't match with the tax amount in "
4233-"Magento.\n"
4234-"\n"
4235-"Cause:\n"
4236-"The taxes are probably different between OpenERP and Magento. A fiscal "
4237-"position could have changed the final price.\n"
4238-"\n"
4239-"Resolution:\n"
4240-"Check your taxes and fiscal positions configuration and correct them if "
4241-"necessary."
4242-msgstr ""
4243-"Les taxes calculées par OpenERP ne correspondent pas aux tax calculées par "
4244-"Magento.\n"
4245-"\n"
4246-"Cause:\n"
4247-"La configuration des taxes est probablement différente entre OpenERP et "
4248-"Magento. Une position fiscale peut avoir modifié le prix final.\n"
4249-"\n"
4250-"Résolution:\n"
4251-"Contrôler la configuration des taxes et positions fiscales et les corriger "
4252-"si nécessaire."
4253-
4254-#. module: magentoerpconnect
4255-#: help:magento.backend,warehouse_id:0
4256-msgid "Warehouse used to compute the stock quantities."
4257-msgstr "Entrepôt utilisé pour calculer les quantités en stock."
4258-
4259-#. module: magentoerpconnect
4260-#: field:magento.account.invoice,sync_date:0
4261-#: field:magento.address,sync_date:0
4262-#: field:magento.binding,sync_date:0
4263-#: field:magento.product.category,sync_date:0
4264-#: field:magento.product.product,sync_date:0
4265-#: field:magento.res.partner,sync_date:0
4266-#: field:magento.res.partner.category,sync_date:0
4267-#: field:magento.sale.order,sync_date:0
4268-#: field:magento.sale.order.line,sync_date:0
4269-#: field:magento.stock.picking.out,sync_date:0
4270-#: field:magento.store,sync_date:0
4271-#: field:magento.storeview,sync_date:0
4272-#: field:magento.website,sync_date:0
4273-msgid "Last synchronization date"
4274-msgstr "Dernière date de synchronisation"
4275-
4276-#. module: magentoerpconnect
4277-#: help:magento.backend,default_category_id:0
4278-msgid ""
4279-"If a default category is selected, products imported without a category will "
4280-"be linked to it."
4281-msgstr ""
4282-"Si une catégorie par défaut est sélectionnée, les articles importés sans "
4283-"catégorie y seront liés."
4284-
4285-#. module: magentoerpconnect
4286-#: help:magento.storeview,import_orders_from_date:0
4287-msgid ""
4288-"do not consider non-imported sale orders before this date. Leave empty to "
4289-"import all sale orders"
4290-msgstr ""
4291-"Ignore les commandes non importées avant cette date. Laisser vide pour "
4292-"importer toutes les commandes."
4293-
4294-#. module: magentoerpconnect
4295-#: help:magento.store,send_picking_done_mail:0
4296-msgid ""
4297-"Does the picking export/creation should send an email notification on "
4298-"Magento side?"
4299-msgstr ""
4300-"Définit si Magento doit envoyer un e-mail lors de l'export des bons de "
4301-"livraisons."
4302-
4303-#. module: magentoerpconnect
4304-#: selection:magento.product.product,manage_stock:0
4305-msgid "Do Not Manage Stock"
4306-msgstr "Ne pas gérer les stock"
4307-
4308-#. module: magentoerpconnect
4309-#: field:connector.config.settings,module_magentoerpconnect_catalog:0
4310-msgid "Handle the product's catalog (not implemented)"
4311-msgstr "Gérer le catalogue d'articles depuis OpenERP (non supporté)"
4312-
4313-#. module: magentoerpconnect
4314-#: field:res.partner,company:0
4315-msgid "Company"
4316-msgstr "Société"
4317+"X-Launchpad-Export-Date: 2014-06-11 06:38+0000\n"
4318+"X-Generator: Launchpad (build 17031)\n"
4319+
4320+#. module: magentoerpconnect
4321+#: help:magento.sale.order,magento_order_id:0
4322+msgid "'order_id' field in Magento"
4323+msgstr "Champ 'order_id' dans Magento"
4324+
4325+#. module: magentoerpconnect
4326+#: view:magento.product.product:0
4327+msgid "(recompute)"
4328+msgstr "(recalculer)"
4329+
4330+#. module: magentoerpconnect
4331+#: sql_constraint:magento.backend:0
4332+msgid "A backend with the same sale prefix already exists"
4333+msgstr ""
4334+
4335+#. module: magentoerpconnect
4336+#: sql_constraint:magento.address:0
4337+msgid "A partner address with same ID on Magento already exists."
4338+msgstr "Une adresse avec le même ID Magento existe déjà."
4339+
4340+#. module: magentoerpconnect
4341+#: sql_constraint:magento.res.partner.category:0
4342+msgid "A partner tag with same ID on Magento already exists."
4343+msgstr "Une catégorie de partenaire avec le même ID Magento existe déjà."
4344+
4345+#. module: magentoerpconnect
4346+#: sql_constraint:magento.res.partner:0
4347+msgid "A partner with same ID on Magento already exists for this website."
4348+msgstr "Un client Magento avec le même ID Magento existe déjà."
4349+
4350+#. module: magentoerpconnect
4351+#: help:magento.backend,sale_prefix:0
4352+msgid ""
4353+"A prefix put before the name of imported sales orders.\n"
4354+"For instance, if the prefix is 'mag-', the sales order 100000692 in Magento, "
4355+"will be named 'mag-100000692' in OpenERP."
4356+msgstr ""
4357+
4358+#. module: magentoerpconnect
4359+#: sql_constraint:magento.product.category:0
4360+msgid "A product category with same ID on Magento already exists."
4361+msgstr "Une catégorie d'articles avec le même ID Magento existe déjà."
4362+
4363+#. module: magentoerpconnect
4364+#: sql_constraint:magento.product.product:0
4365+msgid "A product with the same ID on Magento already exists"
4366+msgstr "Un article avec le même ID Magento existe déjà."
4367+
4368+#. module: magentoerpconnect
4369+#: sql_constraint:magento.sale.order:0
4370+#: sql_constraint:magento.sale.order.line:0
4371+msgid "A sale order line with the same ID on Magento already exists."
4372+msgstr "Une ligne de commande avec le même ID Magento existe déjà."
4373+
4374+#. module: magentoerpconnect
4375+#: sql_constraint:magento.stock.picking.out:0
4376+msgid "A stock picking with same ID on Magento already exists."
4377+msgstr "Un bon de livraison avec le même ID Magento existe déjà."
4378+
4379+#. module: magentoerpconnect
4380+#: sql_constraint:magento.store:0
4381+msgid "A store with the same ID on Magento already exists."
4382+msgstr "Une boutique Magento avec le même ID Magento existe déjà."
4383+
4384+#. module: magentoerpconnect
4385+#: sql_constraint:magento.storeview:0
4386+msgid "A storeview with same ID on Magento already exists."
4387+msgstr "Une vue magasin Magento avec le même ID Magento existe déjà."
4388
4389 #. module: magentoerpconnect
4390 #: sql_constraint:magento.website:0
4391@@ -130,33 +91,9 @@
4392 msgstr "Un site web avec le même ID sur Magento existe déjà."
4393
4394 #. module: magentoerpconnect
4395-#: field:magento.backend,import_categories_from_date:0
4396-msgid "Import categories from date"
4397-msgstr "Importer les catégories depuis la date"
4398-
4399-#. module: magentoerpconnect
4400-#: view:account.invoice:0
4401-#: field:account.invoice,magento_bind_ids:0
4402-#: view:product.category:0
4403-#: field:product.category,magento_bind_ids:0
4404-#: view:product.product:0
4405-#: field:product.product,magento_bind_ids:0
4406-#: view:res.partner:0
4407-#: field:res.partner,magento_bind_ids:0
4408-#: field:res.partner.category,magento_bind_ids:0
4409-#: field:sale.order,magento_bind_ids:0
4410-#: field:sale.order.line,magento_bind_ids:0
4411-#: field:sale.shop,magento_bind_ids:0
4412-#: field:stock.picking,magento_bind_ids:0
4413-#: view:stock.picking.out:0
4414-#: field:stock.picking.out,magento_bind_ids:0
4415-msgid "Magento Bindings"
4416-msgstr "Liens Magento"
4417-
4418-#. module: magentoerpconnect
4419-#: help:connector.config.settings,module_magentoerpconnect_catalog:0
4420-msgid "This installs the module magentoerpconnect_catalog."
4421-msgstr "Installe le module magentoerpconnect_catalog"
4422+#: view:magento.backend:0
4423+msgid "API"
4424+msgstr ""
4425
4426 #. module: magentoerpconnect
4427 #: field:magento.address,is_magento_order_address:0
4428@@ -164,39 +101,9 @@
4429 msgstr "Adresse d'une commande Magento"
4430
4431 #. module: magentoerpconnect
4432-#: field:magento.sale.order,magento_order_id:0
4433-msgid "Magento Order ID"
4434-msgstr "ID de commande Magento"
4435-
4436-#. module: magentoerpconnect
4437-#: model:ir.model,name:magentoerpconnect.model_magentoerpconnect_installed
4438-msgid "magentoerpconnect.installed"
4439-msgstr "magentoerpconnect.installed"
4440-
4441-#. module: magentoerpconnect
4442-#: help:connector.config.settings,module_magentoerpconnect_export_partner:0
4443-msgid "This installs the module magentoerpconnect_export_partner."
4444-msgstr "Installe le module magentoerpconnect_export_partner."
4445-
4446-#. module: magentoerpconnect
4447-#: field:magento.sale.order.line,notes:0
4448-msgid "Notes"
4449-msgstr "Notes"
4450-
4451-#. module: magentoerpconnect
4452-#: field:magento.sale.order,openerp_id:0
4453-msgid "Sale Order"
4454-msgstr "Bons de Commande"
4455-
4456-#. module: magentoerpconnect
4457-#: field:magento.stock.picking.out,openerp_id:0
4458-msgid "Stock Picking"
4459-msgstr "Bon de livraison"
4460-
4461-#. module: magentoerpconnect
4462-#: view:connector.config.settings:0
4463-msgid "Extensions"
4464-msgstr "Extensions"
4465+#: field:magento.backend,admin_location:0
4466+msgid "Admin Location"
4467+msgstr ""
4468
4469 #. module: magentoerpconnect
4470 #: view:magento.backend:0
4471@@ -204,84 +111,48 @@
4472 msgstr "Configuration avancée"
4473
4474 #. module: magentoerpconnect
4475-#: field:magento.res.partner,group_id:0
4476-msgid "Magento Group (Category)"
4477-msgstr "Groupe de client Magento (Catégorie)"
4478-
4479-#. module: magentoerpconnect
4480-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_store
4481-#: view:magento.website:0
4482-#: field:magento.website,store_ids:0
4483-msgid "Stores"
4484-msgstr "Magasins"
4485-
4486-#. module: magentoerpconnect
4487-#: field:magento.backend,product_stock_field_id:0
4488-msgid "Stock Field"
4489-msgstr "Champ de stock"
4490-
4491-#. module: magentoerpconnect
4492-#: field:magento.res.partner.category,openerp_id:0
4493-msgid "Partner Category"
4494-msgstr "Catégorie de partenaire"
4495-
4496-#. module: magentoerpconnect
4497-#: help:magento.product.product,magento_qty:0
4498-msgid "Last computed quantity to send on Magento."
4499-msgstr "Dernière quantité calculée à envoyer à Magento"
4500-
4501-#. module: magentoerpconnect
4502-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_root
4503-#: view:res.partner.category:0
4504-msgid "Magento"
4505-msgstr "Magento"
4506-
4507-#. module: magentoerpconnect
4508-#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
4509-msgid "connector.config.settings"
4510-msgstr "connector.config.settings"
4511-
4512-#. module: magentoerpconnect
4513-#: field:magento.backend,import_products_from_date:0
4514-msgid "Import products from date"
4515-msgstr "Importer les articles depuis la date"
4516-
4517-#. module: magentoerpconnect
4518-#: model:ir.model,name:magentoerpconnect.model_res_partner
4519-#: field:magento.address,openerp_id:0
4520-#: field:magento.res.partner,openerp_id:0
4521-msgid "Partner"
4522-msgstr "Partenaire"
4523-
4524-#. module: magentoerpconnect
4525-#: model:ir.model,name:magentoerpconnect.model_sale_order
4526-msgid "Sales Order"
4527-msgstr "Bon de commande"
4528-
4529-#. module: magentoerpconnect
4530-#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
4531-msgid "Delivery Orders"
4532-msgstr "Bons de livraisons"
4533-
4534-#. module: magentoerpconnect
4535-#: model:ir.model,name:magentoerpconnect.model_sale_order_line
4536-msgid "Sales Order Line"
4537-msgstr "Ligne de commande"
4538-
4539-#. module: magentoerpconnect
4540-#: field:connector.config.settings,module_magentoerpconnect_pricing:0
4541-msgid "Prices are managed in OpenERP with pricelists"
4542-msgstr "Les prix de vente sont gérés dans OpenERP avec des listes de prix"
4543-
4544-#. module: magentoerpconnect
4545-#: field:magento.address,is_default_shipping:0
4546-msgid "Default Shipping"
4547-msgstr "Adresse de livraison par défaut"
4548-
4549-#. module: magentoerpconnect
4550-#: sql_constraint:magento.stock.picking.out:0
4551-msgid "A stock picking with same ID on Magento already exists."
4552-msgstr "Un bon de livraison avec le même ID Magento existe déjà."
4553+#: help:magento.res.partner,consider_as_company:0
4554+msgid ""
4555+"An account imported with a 'company' in the billing address is considered as "
4556+"a company.\n"
4557+" The partner takes the name of the company and is not merged with the "
4558+"billing address."
4559+msgstr ""
4560+
4561+#. module: magentoerpconnect
4562+#: sql_constraint:magento.account.invoice:0
4563+msgid "An invoice with the same ID on Magento already exists."
4564+msgstr "Une facture Magento avec le même ID Magento existe déjà."
4565+
4566+#. module: magentoerpconnect
4567+#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
4568+msgid "Backends"
4569+msgstr "Backends"
4570+
4571+#. module: magentoerpconnect
4572+#: field:magento.backend,auth_basic_password:0
4573+msgid "Basic Auth. Password"
4574+msgstr ""
4575+
4576+#. module: magentoerpconnect
4577+#: field:magento.backend,auth_basic_username:0
4578+msgid "Basic Auth. Username"
4579+msgstr ""
4580+
4581+#. module: magentoerpconnect
4582+#: help:magento.backend,auth_basic_password:0
4583+msgid "Basic access authentication web server side password"
4584+msgstr ""
4585+
4586+#. module: magentoerpconnect
4587+#: help:magento.backend,auth_basic_username:0
4588+msgid "Basic access authentication web server side username"
4589+msgstr ""
4590+
4591+#. module: magentoerpconnect
4592+#: field:res.partner,birthday:0
4593+msgid "Birthday"
4594+msgstr "Anniversaire"
4595
4596 #. module: magentoerpconnect
4597 #: view:magento.backend:0
4598@@ -303,6 +174,23 @@
4599 " exécutés aussitôt que possible."
4600
4601 #. module: magentoerpconnect
4602+#: model:ir.model,name:magentoerpconnect.model_delivery_carrier
4603+msgid "Carrier"
4604+msgstr "Transporteur"
4605+
4606+#. module: magentoerpconnect
4607+#: help:magento.storeview,no_sales_order_sync:0
4608+msgid ""
4609+"Check if the storeview is active in Magento but its sales orders should not "
4610+"be imported."
4611+msgstr ""
4612+
4613+#. module: magentoerpconnect
4614+#: help:magento.product.product,no_stock_sync:0
4615+msgid "Check this to exclude the product from stock synchronizations."
4616+msgstr ""
4617+
4618+#. module: magentoerpconnect
4619 #: help:magento.backend,product_stock_field_id:0
4620 msgid ""
4621 "Choose the field of the product which will be used for stock inventory "
4622@@ -313,55 +201,138 @@
4623 "quantité en stock.Quand le champ est vide, la quantité en stock est utilisée."
4624
4625 #. module: magentoerpconnect
4626-#: sql_constraint:magento.product.product:0
4627-msgid "A product with the same ID on Magento already exists"
4628-msgstr "Un article avec le même ID Magento existe déjà."
4629-
4630-#. module: magentoerpconnect
4631-#: model:ir.ui.menu,name:magentoerpconnect.menu_magento_backend
4632-msgid "Backends"
4633-msgstr "Backends"
4634-
4635-#. module: magentoerpconnect
4636-#: field:magento.backend,location:0
4637-msgid "Location"
4638-msgstr "Emplacement"
4639-
4640-#. module: magentoerpconnect
4641-#: model:ir.model,name:magentoerpconnect.model_stock_picking
4642-msgid "Picking List"
4643-msgstr "Liste de colisage"
4644-
4645-#. module: magentoerpconnect
4646-#: field:magento.backend,warehouse_id:0
4647-msgid "Warehouse"
4648-msgstr "Entrepôt"
4649-
4650-#. module: magentoerpconnect
4651-#: field:magento.backend,catalog_price_tax_included:0
4652-msgid "Prices include tax"
4653-msgstr "Prix taxes-incluses"
4654-
4655-#. module: magentoerpconnect
4656-#: view:magento.backend:0
4657-msgid "Import products categories since"
4658-msgstr "Importer les catégories d'articles depuis"
4659-
4660-#. module: magentoerpconnect
4661-#: field:magento.sale.order.line,openerp_id:0
4662-msgid "Sale Order Line"
4663-msgstr "Ligne de commande"
4664-
4665-#. module: magentoerpconnect
4666-#: field:magento.backend,username:0
4667-msgid "Username"
4668-msgstr "Utilisateur"
4669-
4670-#. module: magentoerpconnect
4671-#: model:ir.model,name:magentoerpconnect.model_product_category
4672-#: field:magento.product.category,openerp_id:0
4673-msgid "Product Category"
4674-msgstr "Catégorie d'articles"
4675+#: field:magento.storeview,code:0
4676+#: field:magento.website,code:0
4677+msgid "Code"
4678+msgstr "Code"
4679+
4680+#. module: magentoerpconnect
4681+#: view:res.partner:0
4682+#: field:res.partner,company:0
4683+msgid "Company"
4684+msgstr "Société"
4685+
4686+#. module: magentoerpconnect
4687+#: selection:magento.stock.picking.out,picking_method:0
4688+msgid "Complete"
4689+msgstr "Complet"
4690+
4691+#. module: magentoerpconnect
4692+#: field:magento.product.product,magento_qty:0
4693+msgid "Computed Quantity"
4694+msgstr "Quantité calculée"
4695+
4696+#. module: magentoerpconnect
4697+#: model:ir.model,name:magentoerpconnect.model_connector_config_settings
4698+msgid "Connector Configuration"
4699+msgstr ""
4700+
4701+#. module: magentoerpconnect
4702+#: field:magento.res.partner,consider_as_company:0
4703+msgid "Considered as company"
4704+msgstr ""
4705+
4706+#. module: magentoerpconnect
4707+#: view:payment.method:0
4708+msgid "Create invoice on"
4709+msgstr ""
4710+
4711+#. module: magentoerpconnect
4712+#: field:magento.store,create_invoice_on:0
4713+#: field:payment.method,create_invoice_on:0
4714+msgid "Create invoice on action"
4715+msgstr ""
4716+
4717+#. module: magentoerpconnect
4718+#: field:magento.address,created_at:0
4719+#: field:magento.product.product,created_at:0
4720+#: field:magento.res.partner,created_at:0
4721+msgid "Created At (on Magento)"
4722+msgstr "Créé le (sur Magento)"
4723+
4724+#. module: magentoerpconnect
4725+#: field:magento.backend,use_custom_api_path:0
4726+msgid "Custom Api Path"
4727+msgstr ""
4728+
4729+#. module: magentoerpconnect
4730+#: field:magento.address,is_default_billing:0
4731+msgid "Default Invoice"
4732+msgstr "Adresse de facturation par défaut"
4733+
4734+#. module: magentoerpconnect
4735+#: field:magento.backend,default_lang_id:0
4736+msgid "Default Language"
4737+msgstr "Langue par défaut"
4738+
4739+#. module: magentoerpconnect
4740+#: field:magento.backend,default_category_id:0
4741+msgid "Default Product Category"
4742+msgstr "Catégorie d'articles par défaut"
4743+
4744+#. module: magentoerpconnect
4745+#: field:magento.address,is_default_shipping:0
4746+msgid "Default Shipping"
4747+msgstr "Adresse de livraison par défaut"
4748+
4749+#. module: magentoerpconnect
4750+#: model:ir.model,name:magentoerpconnect.model_stock_picking_out
4751+msgid "Delivery Orders"
4752+msgstr "Bons de livraisons"
4753+
4754+#. module: magentoerpconnect
4755+#: field:magento.product.category,description:0
4756+msgid "Description"
4757+msgstr "Description"
4758+
4759+#. module: magentoerpconnect
4760+#: selection:magento.product.product,manage_stock:0
4761+msgid "Do Not Manage Stock"
4762+msgstr "Ne pas gérer les stock"
4763+
4764+#. module: magentoerpconnect
4765+#: help:magento.store,send_invoice_paid_mail:0
4766+msgid ""
4767+"Does the invoice export/creation should send an email notification on "
4768+"Magento side?"
4769+msgstr ""
4770+"Définit si Magento doit envoyer un e-mail lors de l'export des factures."
4771+
4772+#. module: magentoerpconnect
4773+#: help:magento.store,send_picking_done_mail:0
4774+msgid ""
4775+"Does the picking export/creation should send an email notification on "
4776+"Magento side?"
4777+msgstr ""
4778+"Définit si Magento doit envoyer un e-mail lors de l'export des bons de "
4779+"livraisons."
4780+
4781+#. module: magentoerpconnect
4782+#: field:magento.res.partner,emailid:0
4783+msgid "E-mail address"
4784+msgstr "Adresse e-mail"
4785+
4786+#. module: magentoerpconnect
4787+#: field:magento.storeview,enabled:0
4788+msgid "Enabled"
4789+msgstr "Activé"
4790+
4791+#. module: magentoerpconnect
4792+#: field:connector.config.settings,module_magentoerpconnect_export_partner:0
4793+msgid "Export Partners to Magento (experimental)"
4794+msgstr ""
4795+"Exporter les clients vers Magento (expérimental, ne pas utiliser en "
4796+"production)"
4797+
4798+#. module: magentoerpconnect
4799+#: field:delivery.carrier,magento_export_tracking:0
4800+msgid "Export tracking numbers"
4801+msgstr "Exporter la référence de suivi transporteur"
4802+
4803+#. module: magentoerpconnect
4804+#: view:connector.config.settings:0
4805+msgid "Extensions"
4806+msgstr "Extensions"
4807
4808 #. module: magentoerpconnect
4809 #: field:magento.res.partner,guest_customer:0
4810@@ -369,31 +340,14 @@
4811 msgstr "Client invité"
4812
4813 #. module: magentoerpconnect
4814-#: help:connector.config.settings,module_magentoerpconnect_pricing:0
4815-msgid ""
4816-"Prices are set in OpenERP and exported to Magento.\n"
4817-"\n"
4818-"This installs the module magentoerpconnect_pricing."
4819+#: view:magento.backend:0
4820+msgid "HTTP Authentication"
4821 msgstr ""
4822-"Les prix sont définis dans OpenERP et exportés vers Magento.\n"
4823-"\n"
4824-"Installe le module magentoerpconnect_pricing."
4825-
4826-#. module: magentoerpconnect
4827-#: field:delivery.carrier,magento_carrier_code:0
4828-msgid "Magento Base Carrier Code"
4829-msgstr "Code de base de transporteur sur Magento"
4830-
4831-#. module: magentoerpconnect
4832-#: view:magento.website:0
4833-msgid "Import partners since"
4834-msgstr "Importer les partenaires depuis"
4835-
4836-#. module: magentoerpconnect
4837-#: view:magento.backend:0
4838-#: view:magento.website:0
4839-msgid "Import in background"
4840-msgstr "Importer en arrière-plan"
4841+
4842+#. module: magentoerpconnect
4843+#: field:connector.config.settings,module_magentoerpconnect_catalog:0
4844+msgid "Handle the product's catalog (not implemented)"
4845+msgstr "Gérer le catalogue d'articles depuis OpenERP (non supporté)"
4846
4847 #. module: magentoerpconnect
4848 #: field:magento.account.invoice,magento_id:0
4849@@ -413,41 +367,166 @@
4850 msgstr "ID sur Magento"
4851
4852 #. module: magentoerpconnect
4853-#: model:ir.actions.act_window,name:magentoerpconnect.action_magento_store
4854-msgid "Magento Stores"
4855-msgstr "Magasins Magento"
4856-
4857-#. module: magentoerpconnect
4858-#: field:magento.backend,pricelist_id:0
4859-#: field:magento.website,pricelist_id:0
4860-msgid "Pricelist"
4861-msgstr "Liste de prix"
4862-
4863-#. module: magentoerpconnect
4864-#: field:magento.sale.order,total_amount:0
4865-msgid "Total amount"
4866-msgstr "Montant total"
4867-
4868-#. module: magentoerpconnect
4869-#: model:ir.model,name:magentoerpconnect.model_magento_product_category
4870-#: view:magento.product.category:0
4871-msgid "Magento Product Category"
4872-msgstr "Catégorie d'articles Magento"
4873+#: help:magento.backend,default_category_id:0
4874+msgid ""
4875+"If a default category is selected, products imported without a category will "
4876+"be linked to it."
4877+msgstr ""
4878+"Si une catégorie par défaut est sélectionnée, les articles importés sans "
4879+"catégorie y seront liés."
4880+
4881+#. module: magentoerpconnect
4882+#: help:magento.backend,default_lang_id:0
4883+msgid ""
4884+"If a default language is selected, the records will be imported in the "
4885+"translation of this language.\n"
4886+"Note that a similar configuration exists for each storeview."
4887+msgstr ""
4888+"Si une langue par défaut est sélectionnée, les enregistements seront "
4889+"importés dans la traduction de cette langue.\n"
4890+"Note: une configuration similaire peut être définie sur chaque vue magasin."
4891+
4892+#. module: magentoerpconnect
4893+#: view:magento.storeview:0
4894+msgid "Import Sale Orders"
4895+msgstr "Importer les commandes"
4896+
4897+#. module: magentoerpconnect
4898+#: view:magento.storeview:0
4899+msgid "Import Sale Orders since"
4900+msgstr "Importer les commandes depuis"
4901+
4902+#. module: magentoerpconnect
4903+#: view:magento.backend:0
4904+msgid "Import all customer groups"
4905+msgstr "Importer tous les groupes client"
4906+
4907+#. module: magentoerpconnect
4908+#: field:magento.backend,import_categories_from_date:0
4909+msgid "Import categories from date"
4910+msgstr "Importer les catégories depuis la date"
4911+
4912+#. module: magentoerpconnect
4913+#: view:magento.backend:0
4914+#: view:magento.website:0
4915+msgid "Import in background"
4916+msgstr "Importer en arrière-plan"
4917+
4918+#. module: magentoerpconnect
4919+#: view:magento.backend:0
4920+msgid "Import partners from all websites"
4921+msgstr "Importer les clients de tous les sites web"
4922+
4923+#. module: magentoerpconnect
4924+#: field:magento.website,import_partners_from_date:0
4925+msgid "Import partners from date"
4926+msgstr "Importer les clients depuis la date"
4927+
4928+#. module: magentoerpconnect
4929+#: view:magento.website:0
4930+msgid "Import partners since"
4931+msgstr "Importer les partenaires depuis"
4932+
4933+#. module: magentoerpconnect
4934+#: view:magento.backend:0
4935+msgid "Import products categories since"
4936+msgstr "Importer les catégories d'articles depuis"
4937+
4938+#. module: magentoerpconnect
4939+#: field:magento.backend,import_products_from_date:0
4940+msgid "Import products from date"
4941+msgstr "Importer les articles depuis la date"
4942+
4943+#. module: magentoerpconnect
4944+#: view:magento.backend:0
4945+msgid "Import products since"
4946+msgstr "Importer les articles depuis"
4947+
4948+#. module: magentoerpconnect
4949+#: field:magento.storeview,import_orders_from_date:0
4950+msgid "Import sale orders from date"
4951+msgstr "Importer les commandes depuis une date"
4952+
4953+#. module: magentoerpconnect
4954+#: view:magento.backend:0
4955+msgid "Import sales orders from all store views"
4956+msgstr "Importer les commandes depuis toutes les vues magasin"
4957+
4958+#. module: magentoerpconnect
4959+#: view:magento.backend:0
4960+#: view:magento.storeview:0
4961+#: view:magento.website:0
4962+msgid "Imports"
4963+msgstr "Imports"
4964+
4965+#. module: magentoerpconnect
4966+#: view:magento.store:0
4967+#: view:magento.storeview:0
4968+#: view:magento.website:0
4969+msgid "Informations"
4970+msgstr "Informations"
4971
4972 #. module: magentoerpconnect
4973 #: view:magento.product.product:0
4974-msgid "(recompute)"
4975-msgstr "(recalculer)"
4976-
4977-#. module: magentoerpconnect
4978-#: field:magento.store,openerp_id:0
4979-msgid "Sale Shop"
4980-msgstr "Magasin"
4981-
4982-#. module: magentoerpconnect
4983-#: field:magento.product.product,manage_stock:0
4984-msgid "Manage Stock Level"
4985-msgstr "Gérer les stocks"
4986+msgid "Inventory Options"
4987+msgstr "Options d'inventaire"
4988+
4989+#. module: magentoerpconnect
4990+#: model:ir.model,name:magentoerpconnect.model_account_invoice
4991+#: field:magento.account.invoice,openerp_id:0
4992+msgid "Invoice"
4993+msgstr "Facture"
4994+
4995+#. module: magentoerpconnect
4996+#: field:magento.storeview,lang_id:0
4997+msgid "Language"
4998+msgstr "Langue"
4999+
5000+#. module: magentoerpconnect
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: