diff --git a/debian/control b/debian/control index d4cf0c3f45e..a4c1b050c0a 100644 --- a/debian/control +++ b/debian/control @@ -19,6 +19,7 @@ Depends: python-docutils, python-feedparser, python-gdata, + python-imaging, python-jinja2, python-ldap, python-libxslt1, @@ -46,7 +47,7 @@ Depends: Conflicts: tinyerp-server, openerp-server, openerp-web Replaces: tinyerp-server, openerp-server, openerp-web Recommends: - graphviz, ghostscript, postgresql, python-imaging, python-matplotlib + graphviz, ghostscript, postgresql, python-matplotlib, poppler-utils Description: OpenERP Enterprise Resource Management OpenERP, previously known as TinyERP, is a complete ERP and CRM. The main features are accounting (analytic and financial), stock management, sales and diff --git a/debian/openerp.init b/debian/openerp.init index 6abb6f10ed6..98e653298b2 100644 --- a/debian/openerp.init +++ b/debian/openerp.init @@ -17,55 +17,46 @@ DAEMON=/usr/bin/openerp-server NAME=openerp-server DESC=openerp-server CONFIG=/etc/openerp/openerp-server.conf -LOGFILE=/var/log/openerp-server.log +LOGFILE=/var/log/openerp/openerp-server.log USER=openerp test -x ${DAEMON} || exit 0 set -e +do_start () { + echo -n "Starting ${DESC}: " + start-stop-daemon --start --quiet --pidfile /var/run/${NAME}.pid --chuid ${USER} --background --make-pidfile --exec ${DAEMON} -- --config=${CONFIG} --logfile=${LOGFILE} + echo "${NAME}." +} + +do_stop () { + echo -n "Stopping ${DESC}: " + start-stop-daemon --stop --quiet --pidfile /var/run/${NAME}.pid --oknodo + echo "${NAME}." +} + case "${1}" in - start) - echo -n "Starting ${DESC}: " + start) + do_start + ;; - start-stop-daemon --start --quiet --pidfile /var/run/${NAME}.pid \ - --chuid ${USER} --background --make-pidfile \ - --exec ${DAEMON} -- --config=${CONFIG} \ - --logfile=${LOGFILE} + stop) + do_stop + ;; - echo "${NAME}." - ;; + restart|force-reload) + echo -n "Restarting ${DESC}: " + do_stop + sleep 1 + do_start + ;; - stop) - echo -n "Stopping ${DESC}: " - - start-stop-daemon --stop --quiet --pidfile /var/run/${NAME}.pid \ - --oknodo - - echo "${NAME}." - ;; - - restart|force-reload) - echo -n "Restarting ${DESC}: " - - start-stop-daemon --stop --quiet --pidfile /var/run/${NAME}.pid \ - --oknodo - - sleep 1 - - start-stop-daemon --start --quiet --pidfile /var/run/${NAME}.pid \ - --chuid ${USER} --background --make-pidfile \ - --exec ${DAEMON} -- --config=${CONFIG} \ - --logfile=${LOGFILE} - - echo "${NAME}." - ;; - - *) - N=/etc/init.d/${NAME} - echo "Usage: ${NAME} {start|stop|restart|force-reload}" >&2 - exit 1 - ;; + *) + N=/etc/init.d/${NAME} + echo "Usage: ${NAME} {start|stop|restart|force-reload}" >&2 + exit 1 + ;; esac exit 0 diff --git a/debian/openerp.postinst b/debian/openerp.postinst index 8700a259198..2eccd5111ec 100644 --- a/debian/openerp.postinst +++ b/debian/openerp.postinst @@ -12,9 +12,9 @@ case "${1}" in chown openerp:openerp /etc/openerp/openerp-server.conf chmod 0640 /etc/openerp/openerp-server.conf # Creating log file - touch /var/log/openerp-server.log - chown openerp:openerp /var/log/openerp-server.log - chmod 0640 /var/log/openerp-server.log + mkdir -p /var/log/openerp/ + chown openerp:openerp /var/log/openerp + chmod 0750 /var/log/openerp # Creating local storage directory mkdir -p /var/lib/openerp/filestore chown openerp:openerp -R /var/lib/openerp diff --git a/openerp/__init__.py b/openerp/__init__.py index 960890de0b6..111677cd707 100644 --- a/openerp/__init__.py +++ b/openerp/__init__.py @@ -22,6 +22,17 @@ """ OpenERP core library. """ + +# Make sure the OpenERP server runs in UTC. This is especially necessary +# under Windows as under Linux it seems the real import of time is +# sufficiently deferred so that setting the TZ environment variable +# in openerp.cli.server was working. +import os +os.environ['TZ'] = 'UTC' # Set the timezone... +import time # ... *then* import time. +del os +del time + # The hard-coded super-user id (a.k.a. administrator, or root user). SUPERUSER_ID = 1 diff --git a/openerp/addons/base/i18n/ab.po b/openerp/addons/base/i18n/ab.po index afc6a14e602..7945af211b1 100644 --- a/openerp/addons/base/i18n/ab.po +++ b/openerp/addons/base/i18n/ab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:11+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/af.po b/openerp/addons/base/i18n/af.po index f444fb27c5c..0d0e72e643c 100644 --- a/openerp/addons/base/i18n/af.po +++ b/openerp/addons/base/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/am.po b/openerp/addons/base/i18n/am.po index 6ea79c6f622..f87adf07a89 100644 --- a/openerp/addons/base/i18n/am.po +++ b/openerp/addons/base/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ar.po b/openerp/addons/base/i18n/ar.po index 4b8f504f5f0..f35bb1303de 100644 --- a/openerp/addons/base/i18n/ar.po +++ b/openerp/addons/base/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/bg.po b/openerp/addons/base/i18n/bg.po index 5e4dbfbe853..c0e69c105cd 100644 --- a/openerp/addons/base/i18n/bg.po +++ b/openerp/addons/base/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:01+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/bs.po b/openerp/addons/base/i18n/bs.po index e3a76f0fa9c..8bd25cedaac 100644 --- a/openerp/addons/base/i18n/bs.po +++ b/openerp/addons/base/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:01+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ca.po b/openerp/addons/base/i18n/ca.po index 679d31d4121..419a6be6405 100644 --- a/openerp/addons/base/i18n/ca.po +++ b/openerp/addons/base/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:01+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/cs.po b/openerp/addons/base/i18n/cs.po index 9ed3d62e260..adeb04dd5e9 100644 --- a/openerp/addons/base/i18n/cs.po +++ b/openerp/addons/base/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:01+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" "X-Poedit-Language: Czech\n" #. module: base @@ -59,12 +59,12 @@ msgstr "" #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "Architektura pohledu" +msgstr "Architektura zobrazení" #. module: base #: model:ir.module.module,summary:base.module_sale_stock msgid "Quotation, Sale Orders, Delivery & Invoicing Control" -msgstr "Poptávky, potvrzení objednávek, dodávky a řízení fakturace" +msgstr "Nabídky, zakázky, řízení dopravy a fakturace" #. module: base #: selection:ir.sequence,implementation:0 @@ -88,7 +88,7 @@ msgid "" "plannings, etc..." msgstr "" "Pomůže vám spravovat projekty a úkoly jejich sledováním, generováním plánů, " -"aj." +"apod." #. module: base #: model:ir.module.module,summary:base.module_point_of_sale @@ -104,7 +104,8 @@ msgstr "Indická výplatní páska" #: help:ir.cron,model:0 msgid "" "Model name on which the method to be called is located, e.g. 'res.partner'." -msgstr "Název modelu umístění volané metody, např. 'res.partner'." +msgstr "" +"Název modelu ve kterém je volaná metoda umístěna, např. 'res.partner'." #. module: base #: view:ir.module.module:0 @@ -187,7 +188,7 @@ msgstr "Cílové okno" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "Main Report File Path" -msgstr "Cesta k souboru hlavního výkazu" +msgstr "Cesta k souboru hlavní sestavy" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_analytic_plans @@ -212,8 +213,7 @@ msgstr "" "Vygenerujte své faktury z výdajů a položek výkazu práce.\n" "========================================================\n" "\n" -"Modul pro generování faktur na základě nákladů (lidské zdroje, výdaje, " -"...).\n" +"Modul pro generování faktur na základě nákladů (lidské zdroje, výdaje, …).\n" "\n" "V analytickém účtu můžete definovat seznamy cen a vytvořit teoretické " "zprávy\n" @@ -234,8 +234,8 @@ msgid "" "Properties of base fields cannot be altered in this manner! Please modify " "them through Python code, preferably through a custom addon!" msgstr "" -"Tímto způsobem nemůžou být změněny vlastnosti základních polí! Prosíme " -"upravte je přes kód Pythonu, přednostně přes vlastní doplněk!" +"Tímto způsobem nemohou být změněny vlastnosti základních polí! Upravte je " +"přes kód Pythonu, nejlépe prostřednictvím vlastního doplňku!" #. module: base #: code:addons/osv.py:151 @@ -252,7 +252,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:375 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "Přejmenování řídkého pole \"%s\" není povoleno" +msgstr "Přejmenování 'sparse field' \"%s\" není povoleno" #. module: base #: model:res.country,name:base.sz @@ -268,7 +268,7 @@ msgstr "vytvořeno." #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL Path" -msgstr "Cesta XSL" +msgstr "XSL Path" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr @@ -284,7 +284,7 @@ msgstr "Přírůstek čísla" #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "Struktura společnosti" +msgstr "Struktura firem" #. module: base #: selection:base.language.install,lang:0 @@ -294,7 +294,7 @@ msgstr "Inuktitut / ᐃᓄᒃᑎᑐᑦ" #. module: base #: model:res.groups,name:base.group_multi_currency msgid "Multi Currencies" -msgstr "Různé měny" +msgstr "Více měn" #. module: base #: model:ir.module.module,description:base.module_l10n_cl @@ -330,7 +330,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "Hledat partnera" +msgstr "Hledat kontakt" #. module: base #: field:ir.module.category,module_nr:0 @@ -340,7 +340,7 @@ msgstr "Počet modulů" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "Společnost k uložení aktuálního záznamu" +msgstr "Firma k uložení aktuálního záznamu" #. module: base #: field:res.partner.bank.type.field,size:0 @@ -505,7 +505,7 @@ msgid "" "allowed directives, displayed when you edit a language." msgstr "" "Chybná specifikace formátu data/času. Prosím, projděte si seznam povolených " -"direktiv zobrazený při editaci jazyka." +"formátů zobrazený při editaci jazyka." #. module: base #: code:addons/orm.py:4153 @@ -557,7 +557,7 @@ msgstr "Formát data" #. module: base #: model:ir.module.module,shortdesc:base.module_base_report_designer msgid "OpenOffice Report Designer" -msgstr "Návrhář výkazů OpenOffice" +msgstr "OpenOffice Report Designer" #. module: base #: model:res.country,name:base.an @@ -572,12 +572,12 @@ msgid "" "created by OpenERP (updates, module installation, ...)" msgstr "" "Nemůžete odstranit uživatele správce, protože je vnitřně používán pro zdroje " -"vytvářené OpenERP (aktualizace, instalace modulů, ...)" +"vytvářené OpenERP (aktualizace, instalace modulů, …)" #. module: base #: view:workflow.transition:0 msgid "Workflow Transition" -msgstr "Přechod mezi pracovními postupy" +msgstr "Rozestup mezi pracovními postupy" #. module: base #: model:res.country,name:base.gf @@ -659,8 +659,8 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" -"Pokud toto zaškrtnete, vrátí předchozí výkaz, pokud uživatel podruhé " -"vytiskne stejné jméno přílohy." +"Zaškrtnete-li, vrátí předchozí sestavu, pokud uživatel podruhé tiskne se " +"stejným názvem přílohy." #. module: base #: model:ir.module.module,description:base.module_mrp_byproduct @@ -733,7 +733,7 @@ msgstr "Kolumbie" #. module: base #: model:res.partner.title,name:base.res_partner_title_mister msgid "Mister" -msgstr "Pan" +msgstr "mistr" #. module: base #: help:res.country,code:0 @@ -752,7 +752,7 @@ msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Prodeje & Nákupy" +msgstr "Prodej & Nákup" #. module: base #: view:ir.translation:0 @@ -762,7 +762,7 @@ msgstr "Nepřeložené" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "Odchozí poštovní server" +msgstr "Server odchozí pošty" #. module: base #: help:ir.actions.act_window,context:0 @@ -792,7 +792,7 @@ msgstr "Mexiko - Účetnictví" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "Vyberte ke spuštění Okno akce, Výkaz, Průvodce." +msgstr "Vyberte ke spuštění okno akce, sestavu, průvodce." #. module: base #: sql_constraint:ir.config_parameter:0 @@ -853,7 +853,7 @@ msgstr "" "Modul vytváří dashboard pro účetní, který zahrnuje:\n" "--------------------------------------------------\n" " * Seznam vydaných faktur ke schválení\n" -" * Analýzu společnosti\n" +" * Analýzu firmy\n" " * Graf majetku\n" "\n" "Procesy jako vedení hlavní účetní knihy jsou prováděny prostřednictvím " @@ -905,7 +905,8 @@ msgstr "" #: help:ir.actions.act_window,src_model:0 msgid "" "Optional model name of the objects on which this action should be visible" -msgstr "Volitelný název modelu objektů, u kterých má tato akce být dostupná" +msgstr "" +"Volitelný název modelu pro objekty, u kterých má tato akce být dostupná" #. module: base #: field:workflow.transition,trigger_expr_id:0 @@ -925,7 +926,7 @@ msgstr "Chorvatsko - RRIF 2012 COA" #. module: base #: help:ir.cron,nextcall:0 msgid "Next planned execution date for this job." -msgstr "Další plánované datum vykonání této úlohy." +msgstr "Další plánovaný datum provedení této úlohy." #. module: base #: model:ir.model,name:base.model_ir_ui_view @@ -940,7 +941,7 @@ msgstr "Eritrea" #. module: base #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "Název společnosti musí být jedinečný !" +msgstr "Název firmy musí být jedinečný !" #. module: base #: model:ir.ui.menu,name:base.menu_base_action_rule_admin @@ -964,7 +965,7 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" -"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 se " +"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 bodů se " "zachováním poměru stran. Použijte toto pole kdekoli je požadován malý " "obrázek." @@ -975,14 +976,14 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" -"Poskytuje pole, které jsou použity pro vyčtení mobilního čísla, např. " -"vyberete fakturu, pak `object.invoice_address_id.mobile` je pole, které dává " -"aktuální mobilní číslo" +"Poskytuje pole, která se používají pro získání mobilního čísla, např. " +"vyberete fakturu, pak 'object.invoice_address_id.mobile' je pole se správným " +"mobilním číslem." #. module: base #: view:ir.mail_server:0 msgid "Security and Authentication" -msgstr "Zabezpečení a ověřování" +msgstr "Zabezpečení a ověření" #. module: base #: model:ir.module.module,shortdesc:base.module_web_calendar @@ -1053,13 +1054,13 @@ msgstr "" "Spravuje dovolené a pracovní požadavky\n" "=====================================\n" "\n" -"Tato aplikace řídí plán dovolených vaší společnosti. Umožňuje zaměstancům " +"Tato aplikace řídí plán dovolených vaší firmy. Umožňuje zaměstancům " "požadovat dovolenou. Manažeři si potom mohou požadavky prohlížet a " "schvalovat je nebo je odmítat. Tímto způsobem lze řídit celkový plán " -"dovolených společnosti nebo oddělení.\n" +"dovolených firmy nebo oddělení.\n" "\n" "Můžete nastavit různé druhy dovolených (nemoc, prázdniny, placená dovolená, " -"...) a rychle přiřadit dovolenou zaměstnanci nebo oddělení za pomoci " +"…) a rychle přiřadit dovolenou zaměstnanci nebo oddělení za pomoci " "určujících požadavků. Zaměstnanec si může též vyžádat více dní volna zadáním " "nového požadavku což zvýší celkový počet dostupných dní dovolené (pokud je " "požadavek schválen).\n" @@ -1098,7 +1099,7 @@ msgstr "Papua - Nová Guinea" #: help:ir.actions.report.xml,report_type:0 msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..." msgstr "" -"Typ výkazu, např. pdf, html, raw, sxw, odt, html2html, mako2html, ..." +"Druh sestavy, např. pdf, html, raw, sxw, odt, html2html, mako2html, …" #. module: base #: model:ir.module.module,shortdesc:base.module_document_webdav @@ -1119,7 +1120,7 @@ msgstr "'%s' není platné datum v poli '%%(field)s'" #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "Moji partneři" +msgstr "Moje kontakty" #. module: base #: model:res.country,name:base.zw @@ -1135,7 +1136,7 @@ msgstr "Druh omezení: `f` pro cizí klíč, `u` pro ostatní omezení." #. module: base #: view:ir.actions.report.xml:0 msgid "XML Report" -msgstr "Výkaz XML" +msgstr "Sestava XML" #. module: base #: model:res.country,name:base.es @@ -1146,7 +1147,7 @@ msgstr "Španělsko" #: help:ir.actions.act_window,domain:0 msgid "" "Optional domain filtering of the destination data, as a Python expression" -msgstr "Volitelné filtrování domény cílových dat jako výraz Pythonu" +msgstr "Volitelné filtrování domény cílových dat - jako výraz Pythonu" #. module: base #: model:ir.model,name:base.model_base_module_upgrade @@ -1204,7 +1205,7 @@ msgstr "Správa členství" #. module: base #: selection:ir.module.module,license:0 msgid "Other OSI Approved Licence" -msgstr "Jiné schválené licence OSI" +msgstr "Jiné OSI Approved Licence" #. module: base #: model:ir.module.module,shortdesc:base.module_web_gantt @@ -1260,7 +1261,7 @@ msgstr "Andorra, Knížectví" #. module: base #: field:ir.rule,perm_read:0 msgid "Apply for Read" -msgstr "" +msgstr "Použít pro čtení" #. module: base #: model:res.country,name:base.mn @@ -1339,7 +1340,7 @@ msgstr "Archív TGZ" msgid "" "Users added to this group are automatically added in the following groups." msgstr "" -"Uživatelé přidány do této skupiny jsou automaticky přidány do následujících " +"Uživatelé přidáni do této skupiny jsou automaticky přidáni do následujících " "skupin." #. module: base @@ -1372,7 +1373,7 @@ msgstr "%B - Celý název měsíce." #: view:ir.values:0 #: field:ir.values,key:0 msgid "Type" -msgstr "Typ" +msgstr "Druh" #. module: base #: field:ir.mail_server,smtp_user:0 @@ -1433,8 +1434,8 @@ msgid "" "Language with code \"%s\" is not defined in your system !\n" "Define it through the Administration menu." msgstr "" -"Kód jazyka \"%s\" není v systému určen !\n" -"Určete jej přes Nabídku správy." +"Kód jazyka \"%s\" není v systému nastaven!\n" +"Nastavte jej přes menu Nastavení." #. module: base #: model:res.country,name:base.gu @@ -1507,7 +1508,7 @@ msgstr "Přispěvatelé" #. module: base #: field:ir.rule,perm_unlink:0 msgid "Apply for Delete" -msgstr "" +msgstr "Použít pro smazání" #. module: base #: selection:ir.property,type:0 @@ -1557,7 +1558,7 @@ msgstr "Bosna-Hercegovina" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "Pole průvodců" +msgstr "Pole průvodce" #. module: base #: selection:base.language.install,lang:0 @@ -1572,7 +1573,7 @@ msgstr "Port SMTP" #. module: base #: help:res.users,login:0 msgid "Used to log into the system" -msgstr "Použito k záznamu do systému" +msgstr "Použito k přihlášení do systému" #. module: base #: view:base.language.export:0 @@ -1760,7 +1761,7 @@ msgstr "" #: model:ir.module.category,name:base.module_category_purchase_management #: model:ir.ui.menu,name:base.menu_purchase_root msgid "Purchases" -msgstr "Nákupy" +msgstr "Nákup" #. module: base #: model:res.country,name:base.md @@ -1826,9 +1827,9 @@ msgid "" "use the accounting application of OpenERP, journals and accounts will be " "created automatically based on these data." msgstr "" -"Nastavte bankovní účty vaší společnosti a vyberty ty, které se musí zobrazit " -"v patičce zprávy. V seznamu můžete změnit pořadí účtů. Pokud používáte " -"účetní aplikaci OpenERP, deníky a účty budou na základě těchto dat vytvořeny " +"Nastavte bankovní účty vaší firmy a vyberty ty, které se musí zobrazit v " +"zápatí zprávy. V seznamu můžete změnit pořadí účtů. Pokud používáte účetní " +"aplikaci OpenERP, deníky a účty budou na základě těchto dat vytvořeny " "automaticky." #. module: base @@ -1842,8 +1843,8 @@ msgid "" "If specified, this action will be opened at logon for this user, in addition " "to the standard menu." msgstr "" -"Pokud je zadáno, akce bude otevřena při přihlášení tohoto uživatele, navíc k " -"standardní nabídce." +"Je-li určeno, akce bude otevřena při přihlášení tohoto uživatele, navíc ke " +"standardnímu menu." #. module: base #: model:res.country,name:base.mf @@ -1889,7 +1890,7 @@ msgstr "%Y - Rok se stoletím." #. module: base #: view:res.company:0 msgid "Report Footer Configuration" -msgstr "Nastavení patičky zprávy" +msgstr "Nastavení zápatí sestavy" #. module: base #: field:ir.translation,comments:0 @@ -1924,10 +1925,10 @@ msgstr "" "Zákaladní modul pro správu stravování.\n" "================================\n" "\n" -"Mnoho společností si objednává sendviče, pizzu a jiné pokrmy od obvyklých " +"Mnoho firem si objednává sendviče, pizzu a jiné pokrmy od obvyklých " "dodavatelů aby je mohly nabídnout zaměstnancům. \n" "\n" -"Správa stravování společnosti však vyžaduje pořádné řízení, zejména když je " +"Správa stravování firmy však vyžaduje pořádné řízení, zejména když je " "podstatné množství zaměstnanců nebo dodavatelů. \n" "\n" "Modul \"Objednávka stravování\" byl vyvinut pro usnadnění tohoto úkolu, " @@ -1973,13 +1974,13 @@ msgid "" "Helps you manage your purchase-related processes such as requests for " "quotations, supplier invoices, etc..." msgstr "" -"Pomůže vám spravovat vaše nákupní procesy jako požadavky na ocenění, faktury " -"dodavatelů, aj." +"Pomůže vám spravovat vaše nákupní procesy jako požadavky na nacenění, " +"faktury dodavatelů, apod." #. module: base #: help:res.partner,website:0 msgid "Website of Partner or Company" -msgstr "Webová stránka partnera nebo společnosti" +msgstr "Webová stránka kontaktu" #. module: base #: help:base.language.install,overwrite:0 @@ -1987,7 +1988,7 @@ msgid "" "If you check this box, your customized translations will be overwritten and " "replaced by the official ones." msgstr "" -"Pokud toto zaškrtnete, vaše vlastní překlady budou přepsány a nahrazeny těmi " +"Zaškrtnete-li, vaše vlastní překlady budou přepsány a nahrazeny těmi " "oficiálními." #. module: base @@ -1995,7 +1996,7 @@ msgstr "" #: field:ir.module.module,reports_by_module:0 #: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Reports" -msgstr "Výkazy" +msgstr "Sestavy" #. module: base #: help:ir.actions.act_window.view,multi:0 @@ -2004,8 +2005,8 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view." msgstr "" -"Pokud je nastaveno na pravda, akce nebude zobrazena v pravm nástrojovém " -"panelu formulářového pohledu." +"Je-li nastaveno 'správně', akce nebude zobrazena v pravm nástrojovém panelu " +"zobrazení 'formulář'." #. module: base #: field:workflow,on_create:0 @@ -2039,7 +2040,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project_issue msgid "Portal Issue" -msgstr "Úkol portálu" +msgstr "Portál problémů" #. module: base #: model:ir.ui.menu,name:base.menu_tools @@ -2061,7 +2062,7 @@ msgid "" msgstr "" "Ručně: Spuštěno ručně.\n" "Automaticky: Spustí se při změně nastavení systému.\n" -"Jednou ručně spustit: jakmile je ručně spuštěno, nastaví se automaticky na " +"Spustit jednou ručně: jakmile je ručně spuštěno, nastaví se automaticky na " "Hotovo." #. module: base @@ -2088,7 +2089,7 @@ msgstr "Informace průvodce" #: model:ir.actions.act_window,name:base.action_wizard_lang_export #: model:ir.ui.menu,name:base.menu_wizard_lang_export msgid "Export Translation" -msgstr "Exportovat překlad" +msgstr "Export překladu" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -2163,7 +2164,7 @@ msgid "" msgstr "" "Pomůže získat maximum z vašich prodejních míst díky rychlému zadávání " "prodejů, zjednodušenému zádávání režimu plateb, automatickému generování " -"dodacích listů a další." +"dodacích listů a dalším." #. module: base #: code:addons/base/ir/ir_fields.py:164 @@ -2180,7 +2181,7 @@ msgstr "Nizozemsko" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_event msgid "Portal Event" -msgstr "Událost porátlu" +msgstr "Portál událostí" #. module: base #: selection:ir.translation,state:0 @@ -2278,12 +2279,12 @@ msgstr "7. %H:%M:%S ==> 18:25:20" #: view:res.partner:0 #: field:res.partner.category,partner_ids:0 msgid "Partners" -msgstr "Společníci" +msgstr "Kontakty" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "Levý rodič" +msgstr "?!?Opuštěné nadřazené" #. module: base #: model:ir.module.module,shortdesc:base.module_project_mrp @@ -2333,6 +2334,13 @@ msgid "" " templates to target objects.\n" " " msgstr "" +"\n" +" * ?!?Podpora pro více jazyků účtových osnov, daní, daňových kódů, " +"deníků, šablon účtů, analytickou osnovu účtů a analytické deníky.\n" +" * ?!?Průvodce nastavením změn\n" +" - Zkopírujte překlady účtové osnovy, daně, daňové kódy a účetní " +"pozice ze šablon do cílových objektů.\n" +" " #. module: base #: field:workflow.transition,act_from:0 @@ -2342,7 +2350,7 @@ msgstr "Zdrojové činnosti" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "Vysvětlívky (pro předponu, příponu)" +msgstr "Vysvětlivky (pro předponu, příponu)" #. module: base #: selection:ir.server.object.lines,type:0 @@ -2447,7 +2455,7 @@ msgstr "" #. module: base #: field:ir.ui.menu,complete_name:0 msgid "Full Path" -msgstr "Plná cesta" +msgstr "Úplná cesta" #. module: base #: view:base.language.export:0 @@ -2497,7 +2505,7 @@ msgstr "Sekunda: %(sec)s" #. module: base #: field:ir.actions.act_window,view_mode:0 msgid "View Mode" -msgstr "Režim pohledu" +msgstr "Režim zobrazení" #. module: base #: help:res.partner.bank,footer:0 @@ -2557,7 +2565,7 @@ msgstr "Bahamy" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "" +msgstr "Použít pro vytvoření" #. module: base #: model:ir.module.category,name:base.module_category_tools @@ -2649,13 +2657,14 @@ msgid "" "Views allows you to personalize each view of OpenERP. You can add new " "fields, move fields, rename them or delete the ones that you do not need." msgstr "" -"Pohledy vám umožňují přizpůsobit každý pohled OpenERP. Můžete přidat nové " -"pole, přesunout pole, přejmenovat je nebo smazat ty, které nepotřebujete." +"Zobrazení vám umožňují přizpůsobit každé zobrazení OpenERP. Můžete přidat " +"nové pole, přesunout pole, přejmenovat je nebo smazat ty, které " +"nepotřebujete." #. module: base #: model:ir.module.module,shortdesc:base.module_base_setup msgid "Initial Setup Tools" -msgstr "Nástroje prvotního nastavení" +msgstr "Nástroje výchozího nastavení" #. module: base #: field:ir.actions.act_window,groups_id:0 @@ -2690,7 +2699,7 @@ msgstr "Belize" #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the corporate RML header" -msgstr "Přidat nebo nepřidat RML hlavičku společnosti" +msgstr "Přidat nebo nepřidat RML hlavičku firmy" #. module: base #: model:ir.module.module,description:base.module_portal_anonymous @@ -2816,18 +2825,18 @@ msgid "" "View type: Tree type to use for the tree view, set to 'tree' for a " "hierarchical tree view, or 'form' for a regular list view" msgstr "" -"Druh pohledu: Stromový typ pro zobrazení stromu, pro hierarchický stromový " -"pohled nastavte na 'tree' nebo na 'form' pro klasický seznam" +"Druh zobrazení: Použijte 'strom' pro hierarchické stromové zobrazení nebo " +"'formulář' pro klasický seznam." #. module: base #: sql_constraint:ir.ui.view_sc:0 msgid "Shortcut for this menu already exists!" -msgstr "Zkratka pro tuto nabídku již existuje!" +msgstr "Zkratka pro toto menu již existuje!" #. module: base #: view:ir.rule:0 msgid "Groups (no group = global)" -msgstr "Skupiny (žádné skupiny = celkový)" +msgstr "Skupiny (žádné skupiny = celkové)" #. module: base #: view:ir.module.module:0 @@ -2837,7 +2846,7 @@ msgstr "Dodatečné" #. module: base #: model:res.country,name:base.st msgid "Saint Tome (Sao Tome) and Principe" -msgstr "¨" +msgstr "Saint Tome (Sao Tome) and Principe" #. module: base #: selection:res.partner,type:0 @@ -2908,7 +2917,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth_signup msgid "Signup with OAuth2 Authentication" -msgstr "Přihlášení s autentizací OAuth2" +msgstr "Přihlášení s OAuth2 ověřením" #. module: base #: selection:ir.model,state:0 @@ -2920,7 +2929,7 @@ msgstr "Vlastní objekt" #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "Nabídka" +msgstr "Menu" #. module: base #: field:res.currency,rate:0 @@ -2940,7 +2949,7 @@ msgstr "Vlastní patička" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_crm msgid "Opportunity to Quotation" -msgstr "Možnost nabídky" +msgstr "Příležitost na nabídku" #. module: base #: model:ir.module.module,description:base.module_sale_analytic_plans @@ -2997,7 +3006,7 @@ msgstr "Marže podle výrobků" #. module: base #: model:ir.ui.menu,name:base.menu_invoiced msgid "Invoicing" -msgstr "Fakturování" +msgstr "Fakturace" #. module: base #: field:ir.ui.view_sc,name:0 @@ -3007,7 +3016,7 @@ msgstr "Název zkratky" #. module: base #: field:res.partner,contact_address:0 msgid "Complete Address" -msgstr "" +msgstr "Úplná adresa" #. module: base #: help:ir.actions.act_window,limit:0 @@ -3033,7 +3042,7 @@ msgstr "" #. module: base #: view:ir.actions.report.xml:0 msgid "RML Report" -msgstr "Výkaz RML" +msgstr "Sestava RML" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export @@ -3189,7 +3198,7 @@ msgstr "Argumenty odeslané klientovi spolu se značku pohledu" #. module: base #: model:ir.module.module,summary:base.module_contacts msgid "Contacts, People and Companies" -msgstr "Kontakty, lidé a společnosti" +msgstr "Kontakty, lidé a firmy" #. module: base #: model:res.country,name:base.tt @@ -3204,7 +3213,7 @@ msgstr "Lotyšsko" #. module: base #: view:ir.actions.server:0 msgid "Field Mappings" -msgstr "Mapování polí" +msgstr "Mapování pole" #. module: base #: view:base.language.export:0 @@ -3238,7 +3247,7 @@ msgstr "" #: model:res.groups,name:base.group_sale_manager #: model:res.groups,name:base.group_tool_manager msgid "Manager" -msgstr "Správce" +msgstr "vedoucí" #. module: base #: code:addons/base/ir/ir_model.py:727 @@ -3259,7 +3268,7 @@ msgstr "Fidži" #. module: base #: view:ir.actions.report.xml:0 msgid "Report Xml" -msgstr "XML zprávy" +msgstr "XML sestavy" #. module: base #: model:ir.module.module,description:base.module_purchase @@ -3391,8 +3400,8 @@ msgid "" "Lets you install various tools to simplify and enhance OpenERP's report " "creation." msgstr "" -"Umožní vám instalovat rozličné nástroje ke zjednodušení a vylepšení " -"vytváření výkazů OpenERP." +"Umožní vám instalovat různé nástroje k jednoduššímu a dokonalejšímu " +"vytváření sestav." #. module: base #: view:res.lang:0 @@ -3470,7 +3479,7 @@ msgstr "Chyba!" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr_rib msgid "French RIB Bank Details" -msgstr "" +msgstr "French RIB Bank Details" #. module: base #: view:res.lang:0 @@ -3480,12 +3489,12 @@ msgstr "%p - Odpovídá buď AM nebo PM." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "Akce přírůstku" +msgstr "Akce opakování" #. module: base #: help:multi_company.default,company_id:0 msgid "Company where the user is connected" -msgstr "Společnost, kde je uživatel připojen" +msgstr "Firma, kde je uživatel připojen" #. module: base #: model:res.groups,comment:base.group_sale_manager @@ -3563,7 +3572,7 @@ msgstr "" #. module: base #: field:res.company,rml_header1:0 msgid "Company Tagline" -msgstr "Slogan společnosti" +msgstr "Firemní slogan" #. module: base #: code:addons/base/res/res_users.py:674 @@ -3632,7 +3641,7 @@ msgstr "Kuba" #: code:addons/report_sxw.py:443 #, python-format msgid "Unknown report type: %s" -msgstr "Neznámý typ zprávy: %s" +msgstr "Neznámý druh sestavy: %s" #. module: base #: model:ir.module.module,summary:base.module_hr_expense @@ -3681,7 +3690,7 @@ msgstr "Švédsko" #. module: base #: field:ir.actions.report.xml,report_file:0 msgid "Report File" -msgstr "Soubor výkazu" +msgstr "Soubor sestavy" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -3817,8 +3826,9 @@ msgid "" "separated list of valid field names (optionally followed by asc/desc for the " "direction)" msgstr "" -"Určeno neplatné \"pořadí\". Platné učení \"pořadí\" je čárkou oddělený " -"seznam platných jmen polí (volitelně následovaný asc/desc pro směr)" +"Zadáno nesprávné 'pořadí'. Správné 'pořadí' je čárkou oddělený seznam " +"platných jmen polí. Může být následováno upřesněním směru (asc = vzestupně, " +"desc = sestupně)." #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency @@ -3837,9 +3847,9 @@ msgid "" "way you want to print them in letters and other documents. Some example: " "Mr., Mrs. " msgstr "" -"Spravuje tituly kontaktů, které chcete mít dostupné ve vašem systému a " -"způsob, jakým je tisknout na dopisech a jiných dokumentech. Některé " -"příklady: Pan, Paní " +"Spravuje oslovení osob, které chcete mít dostupné ve vašem systému a způsob, " +"jakým se budou tisknout na dopisech a jiných dokumentech. Například: pan, " +"paní, apod. " #. module: base #: view:ir.model.access:0 @@ -3872,12 +3882,12 @@ msgstr "Závislosti" #. module: base #: field:multi_company.default,company_id:0 msgid "Main Company" -msgstr "Hlavní společnost" +msgstr "Hlavní firma" #. module: base #: field:ir.ui.menu,web_icon_hover:0 msgid "Web Icon File (hover)" -msgstr "Název webové ikony (při najetí myší)" +msgstr "Soubor webové ikony (po přejetí myší)" #. module: base #: help:res.currency,name:0 @@ -3895,13 +3905,12 @@ msgid "" "If you use a formula type, use a python expression using the variable " "'object'." msgstr "" -"Pokud použijete typ vzorce, použijte výraz pythonu s použitím proměnné " -"'object'." +"Používáte-li typ vzorce, použijte výraz pythonu s použitím proměnné 'object'." #. module: base #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Chyba! Nemůžete vytvářet rekurzivní společnosti." +msgstr "Chyba! Nemůžete vytvářet rekurzivní firmy." #. module: base #: field:res.partner,birthdate:0 @@ -3993,7 +4002,7 @@ msgstr "Mapování polí" #: model:res.partner.title,name:base.res_partner_title_sir #: model:res.partner.title,shortcut:base.res_partner_title_sir msgid "Sir" -msgstr "Pan" +msgstr "sir" #. module: base #: model:ir.module.module,description:base.module_l10n_ca @@ -4039,7 +4048,7 @@ msgstr "" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "Mapování polí." +msgstr "Mapování pole." #. module: base #: selection:res.request,priority:0 @@ -4153,7 +4162,7 @@ msgstr "" #. module: base #: help:ir.mail_server,smtp_host:0 msgid "Hostname or IP of SMTP server" -msgstr "Hostitelský název nebo IP adresa SMTP serveru" +msgstr "Název hostitele nebo IP adresa SMTP serveru" #. module: base #: model:res.country,name:base.aq @@ -4173,7 +4182,7 @@ msgstr "_Import" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Hlavní Akce" +msgstr "Hlavní akce" #. module: base #: field:res.lang,grouping:0 @@ -4183,7 +4192,7 @@ msgstr "Formát oddělovače" #. module: base #: model:ir.module.module,shortdesc:base.module_report_webkit msgid "Webkit Report Engine" -msgstr "Vykazovací engine Webkitu" +msgstr "Webkit Report Engine" #. module: base #: model:ir.ui.menu,name:base.next_id_9 @@ -4223,7 +4232,7 @@ msgstr "Vzájemné působení pravidel" #: field:res.company,rml_footer:0 #: field:res.company,rml_footer_readonly:0 msgid "Report Footer" -msgstr "Patička výkazu" +msgstr "Zápatí sestavy" #. module: base #: selection:res.lang,direction:0 @@ -4248,14 +4257,14 @@ msgstr "Filtry" #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "Naplánovat akce" +msgstr "Naplánované akce" #. module: base #: model:ir.module.category,name:base.module_category_reporting #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_reporting msgid "Reporting" -msgstr "Vykazování" +msgstr "Sestavy" #. module: base #: field:res.partner,title:0 @@ -4266,7 +4275,7 @@ msgstr "Oslovení" #. module: base #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" -msgstr "Pokud není nastaveno, chová se jako výchozí hodnota pro nové zdroje" +msgstr "Není-li nastaveno, chová se jako výchozí hodnota pro nové zdroje." #. module: base #: code:addons/orm.py:4246 @@ -4344,7 +4353,7 @@ msgstr "Cílový model" #. module: base #: selection:ir.sequence,implementation:0 msgid "Standard" -msgstr "Běžný" +msgstr "Standardní" #. module: base #: model:res.country,name:base.ru @@ -4368,7 +4377,7 @@ msgstr "Přístup zamítnut" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "Název společnosti" +msgstr "Název firmy" #. module: base #: code:addons/orm.py:2808 @@ -4389,7 +4398,7 @@ msgstr "Země" #. module: base #: selection:ir.translation,type:0 msgid "RML (deprecated - use Report)" -msgstr "RML (zastaralé - použijte Výkaz)" +msgstr "RML (zastaralé - použijte sestavu)" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_hr_payroll @@ -4817,7 +4826,7 @@ msgstr "Austrálie" #. module: base #: report:ir.module.reference:0 msgid "Menu :" -msgstr "Nabídka :" +msgstr "Menu :" #. module: base #: selection:ir.model.fields,state:0 @@ -4876,7 +4885,7 @@ msgstr "Omezení" #: selection:ir.values,key:0 #: selection:res.partner,type:0 msgid "Default" -msgstr "Standartní" +msgstr "Výchozí" #. module: base #: model:ir.module.module,summary:base.module_lunch @@ -4945,18 +4954,18 @@ msgid "" "When no specific mail server is requested for a mail, the highest priority " "one is used. Default priority is 10 (smaller number = higher priority)" msgstr "" -"Pokud není pro mail vyžádán žádný určitý server, použije se ten s nejvyšší " -"prioritou. Výchozí priorita je 10 (nižší číslo = vyšší priorita)" +"Pokud není pro e-mail požadován žádný určitý server, použije se ten s " +"nejvyšší prioritou. Výchozí priorita je 10 (nižší číslo = vyšší priorita)" #. module: base #: model:ir.module.module,summary:base.module_sale msgid "Quotations, Sales Orders, Invoicing" -msgstr "Nabídky, potvrzení objednávek, fakturace" +msgstr "Nabídky, zakázky, fakturace" #. module: base #: field:res.partner,parent_id:0 msgid "Related Company" -msgstr "Související společnost" +msgstr "Související firma" #. module: base #: help:ir.actions.act_url,help:0 @@ -4971,8 +4980,8 @@ msgid "" "Optional help text for the users with a description of the target view, such " "as its usage and purpose." msgstr "" -"Volitelný text nápovědy pro uživatele s popisem cílového pohledu, jako třeba " -"jejich použití a účel." +"Volitelný text nápovědy pro uživatele s popisem cílového zobrazení, jako " +"třeba jejich použití a účel." #. module: base #: model:res.country,name:base.va @@ -4992,7 +5001,7 @@ msgstr "Telekomunikační odvětví" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "Spustit objekt" +msgstr "Objekt spouštěče" #. module: base #: sql_constraint:ir.sequence.type:0 @@ -5008,7 +5017,7 @@ msgstr "Systém správy znalostí" #: view:workflow.activity:0 #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "Příchozí změny" +msgstr "Přechod na začátku" #. module: base #: field:ir.values,value_unpickle:0 @@ -5057,7 +5066,7 @@ msgstr "Účtovaný čas úloh" #: model:ir.ui.menu,name:base.marketing_menu #: model:ir.ui.menu,name:base.menu_report_marketing msgid "Marketing" -msgstr "Marketink" +msgstr "Marketing" #. module: base #: view:res.partner.bank:0 @@ -5085,7 +5094,7 @@ msgstr "Španělština (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Druh posloupnosti" +msgstr "Druh řady" #. module: base #: view:base.language.export:0 @@ -5147,9 +5156,9 @@ msgid "" "groups. If this field is empty, OpenERP will compute visibility based on the " "related object's read access." msgstr "" -"Pokud máte skupiny, viditelnost této nabídky bude založena na těchto " -"skupinách. Pokud je toto pole prázdné, OpenERP spočítá viditelnost na " -"základě přístupu pro čtení vztažených objektů." +"Máte-li skupiny, viditelnost tohoto menu bude založena na těchto skupinách. " +"Pokud je toto pole prázdné, OpenERP spočítá viditelnost na základě přístupu " +"pro čtení vztažených objektů." #. module: base #: model:ir.module.module,description:base.module_event_sale @@ -5225,7 +5234,7 @@ msgstr "" #: selection:ir.translation,type:0 #: view:ir.ui.view:0 msgid "View" -msgstr "Pohled" +msgstr "Zobrazení" #. module: base #: code:addons/base/ir/ir_fields.py:146 @@ -5326,7 +5335,7 @@ msgstr "Švýcarsko - Účetnictví" #: field:res.partner,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "Zip" +msgstr "PSČ" #. module: base #: view:ir.module.module:0 @@ -5354,12 +5363,12 @@ msgid "" msgstr "" "Databáze je nyní plně nastavena.\n" "\n" -"Klikněte na 'Pokračovat' a užívejte si and enjoy your OpenERP experience..." +"Klepněte na 'Pokračovat' a užívejte si OpenERP…" #. module: base #: model:ir.module.category,description:base.module_category_marketing msgid "Helps you manage your marketing campaigns step by step." -msgstr "Pomáhá vám krok za krokem spravovat vaše marketingové kampaně." +msgstr "Pomůže vám krok za krokem spravovat vaše marketingové kampaně." #. module: base #: selection:base.language.install,lang:0 @@ -5394,7 +5403,7 @@ msgstr "Směr" #: view:res.groups:0 #: field:res.groups,view_access:0 msgid "Views" -msgstr "Pohledy" +msgstr "Zobrazení" #. module: base #: view:res.groups:0 @@ -5573,7 +5582,7 @@ msgstr ", nebo váš oblíbený textový editor" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "Geolokace partnerů" +msgstr "Geolokace kontaktů" #. module: base #: model:res.country,name:base.ke @@ -5584,7 +5593,7 @@ msgstr "Keňa" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "Translated Terms" -msgstr "Překládané výrazy" +msgstr "Přeložené výrazy" #. module: base #: selection:base.language.install,lang:0 @@ -5640,7 +5649,7 @@ msgstr "Uložit" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML Path" -msgstr "Cesta XML" +msgstr "XML Path" #. module: base #: model:res.country,name:base.bj @@ -5682,7 +5691,7 @@ msgstr "Klíč" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "Hlavička RML" +msgstr "Záhlaví RML" #. module: base #: help:res.country,address_format:0 @@ -5750,7 +5759,7 @@ msgstr "Změna systému ukládání pole \"%s\" není povolena." #. module: base #: help:res.partner.bank,company_id:0 msgid "Only if this bank account belong to your company" -msgstr "Pouze pokud je toto bankovní účet vaší společnosti" +msgstr "Pouze pokud je tento bankovní účet vaší firmy" #. module: base #: code:addons/base/ir/ir_fields.py:337 @@ -5830,7 +5839,7 @@ msgstr "Další číslo" #. module: base #: help:workflow.transition,condition:0 msgid "Expression to be satisfied if we want the transition done." -msgstr "Podmínky, které je potřeba dodržet pokud chcete provést změny." +msgstr "Podmínky, které je potřeba dodržet pro provedení přechodu." #. module: base #: selection:base.language.install,lang:0 @@ -5950,12 +5959,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_category_form msgid "Partner Tags" -msgstr "Značky partnerů" +msgstr "Značky kontaktů" #. module: base #: view:res.company:0 msgid "Preview Header/Footer" -msgstr "Zobrazit náhled hlavičky/patičky" +msgstr "Zobrazit náhled záhlaví/zápatí" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -6053,7 +6062,7 @@ msgstr "Druh omezení" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "Dceřiné společnosti" +msgstr "Dceřiné firmy" #. module: base #: model:res.country,name:base.ni @@ -6195,7 +6204,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_sale_salesman_all_leads msgid "See all Leads" -msgstr "Zobrazit všechny vedoucí" +msgstr "Zobrazit všechny zájemce" #. module: base #: model:res.country,name:base.ci @@ -6264,8 +6273,8 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view" msgstr "" -"Pokud nastaveno na pravda, akce nebude zobrazena v pravém nástrojovém panelu " -"formulářového pohledu" +"Je-li nastaveno 'správně', akce nebude zobrazena v pravém nástrojovém panelu " +"zobrazení 'formulář'." #. module: base #: model:res.country,name:base.ms @@ -6333,8 +6342,8 @@ msgid "" "Source activity. When this activity is over, the condition is tested to " "determine if we can start the ACT_TO activity." msgstr "" -"Zdrojové činnosti. Když tyto činnosti skonči, je testována podmínka k určení " -"jestli máme nastartovat činnosti ACT_TO." +"Zdrojové činnosti. Když tato činnost skonči, je testována podmínka k určení " +"jestli máme zahájit činnosti ACT_TO." #. module: base #: model:ir.module.category,name:base.module_category_generic_modules_accounting @@ -6404,12 +6413,11 @@ msgstr "" "neexistující\n" " nebo zrušená.\n" " \n" -" *Pokud je zapnuta volba \"Ověření DIČ VIES\" (v nastavení společnosti\n" +" *Pokud je zapnuta volba \"Ověření DIČ VIES\" (v nastavení firmy\n" " uživatele), čísla DIČ jsou místo toho odesílána online do databáze EU\n" " VIES, která skutečně ověří, zda je číslo správné a momentálně " "přiřazené\n" -" ke společnosti v EU. Tento postup je o něco pomalejší než prosté " -"ověření\n" +" k firmě v EU. Tento postup je o něco pomalejší než prosté ověření\n" " offline, vyžaduje připojení k internetu a nemusí být vždy dostupný " "pokud\n" " má služba výpadek nebo nepodporuje cílovou zemi (například v případě\n" @@ -6445,7 +6453,7 @@ msgstr "Angličtina / English (CA)" #. module: base #: model:ir.module.category,name:base.module_category_human_resources msgid "Human Resources" -msgstr "Lidské zdroje" +msgstr "Personalistika" #. module: base #: model:ir.module.module,description:base.module_l10n_syscohada @@ -6515,7 +6523,7 @@ msgstr "název" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "true" -msgstr "pravda" +msgstr "správně" #. module: base #: model:ir.model,name:base.model_base_language_install @@ -6550,7 +6558,7 @@ msgstr "Při smazání vlastnosti pro pole many2one" #. module: base #: model:ir.module.category,name:base.module_category_accounting_and_finance msgid "Accounting & Finance" -msgstr "Účetnictví & peněžnictví" +msgstr "Účetnictví & Finance" #. module: base #: field:ir.actions.server,write_id:0 @@ -6560,7 +6568,7 @@ msgstr "Id zápisu" #. module: base #: model:ir.ui.menu,name:base.menu_product msgid "Products" -msgstr "Výrobky" +msgstr "Produkty" #. module: base #: model:ir.actions.act_window,name:base.act_values_form_defaults @@ -6642,7 +6650,7 @@ msgstr "" #: code:addons/base/ir/workflow/workflow.py:99 #, python-format msgid "Operation forbidden" -msgstr "Operace nepovolena" +msgstr "Operace zakázána" #. module: base #: view:ir.actions.server:0 @@ -6656,9 +6664,9 @@ msgid "" "deleting it (if you delete a native record rule, it may be re-created when " "you reload the module." msgstr "" -"Pokud odšrtnete aktivní pole, vypne se pravidlo záznamu bez jeho smazání " -"(pokud smažete nativní pravidlo záznamu, může být znovuvytvořeno při " -"obnovení modulu)." +"Odškrtnete-li aktivní pole, vypne se pravidlo záznamu bez jeho smazání " +"(pokud smažete nativní pravidlo záznamu, může být znovu vytvořeno při " +"opětovném načtení modulu)." #. module: base #: selection:base.language.install,lang:0 @@ -6699,8 +6707,8 @@ msgid "" "How many times the method is called,\n" "a negative number indicates no limit." msgstr "" -"Kolikrát bude metoda zavolána,\n" -"negativní číslo značí neomezený počet." +"Kolikrát bude metoda volána,\n" +"negativní číslo znamená neomezeně." #. module: base #: field:res.partner.bank.type.field,bank_type_id:0 @@ -6741,7 +6749,7 @@ msgstr "Gujarati / ગુજરાતી" msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" msgstr "" -"Nelze zpracovat modul \"%s\", protože vnější závislost nebyla splněna: %s" +"Nelze zpracovat modul \"%s\", protože nevyhovuje vnější závislost: %s" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll @@ -6752,7 +6760,7 @@ msgstr "Belgie - výplatní páska" #: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "Začátek toku" +msgstr "Začátek postupu" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -6762,7 +6770,7 @@ msgstr "res.partner.title" #. module: base #: view:res.partner.bank:0 msgid "Bank Account Owner" -msgstr "Vlastník bankovního účtu" +msgstr "Majitel bankovního účtu" #. module: base #: model:ir.module.category,name:base.module_category_uncategorized @@ -6777,7 +6785,7 @@ msgstr "Telefon:" #. module: base #: field:res.partner,is_company:0 msgid "Is a Company" -msgstr "Je společnost" +msgstr "Firma" #. module: base #: selection:ir.cron,interval_type:0 @@ -6804,14 +6812,14 @@ msgid "" "form, signal tests the name of the pressed button. If signal is NULL, no " "button is necessary to validate this transition." msgstr "" -"Když je operace přechodu přijde ze stisknutého tlačítka v klientském " -"formuláři, signal otestuje jméno stisknutého tlačítka. Pokud je signál NULL, " -"žádné tlačítko není potřeba ověřovat tímto přechodem." +"Když operace přechodu přijde ze stisknutého tlačítka v klientském formuláři, " +"signal otestuje jméno stisknutého tlačítka. Pokud je signál NULL, žádné " +"tlačítko není potřeba k ověření tohoto přechodu." #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "Původní pohled" +msgstr "Původní zobrazení" #. module: base #: model:ir.module.module,description:base.module_web_kanban @@ -6871,7 +6879,7 @@ msgstr "Adresář" #. module: base #: field:wizard.ir.model.menu.create,name:0 msgid "Menu Name" -msgstr "Název nabídky" +msgstr "Název menu" #. module: base #: field:ir.values,key2:0 @@ -6990,7 +6998,7 @@ msgstr "Malajsie" #: code:addons/base/ir/ir_sequence.py:130 #, python-format msgid "Increment number must not be zero." -msgstr "Inkrement musí být nenulový." +msgstr "Přírůstek čísla nemůže být nulový." #. module: base #: model:ir.module.module,shortdesc:base.module_account_cancel @@ -7046,9 +7054,8 @@ msgid "" "If enabled, the full output of SMTP sessions will be written to the server " "log at DEBUG level(this is very verbose and may include confidential info!)" msgstr "" -"Pokud je tato volba zapnuta, celý výstup SMTP sezení bude zapsán do logu na " -"serveru v úrovni DEBUG (což je velmi podrobné a může obsahovat důvěrné " -"informace!)" +"Je-li povoleno, celý výstup SMTP relace bude zapsán do logu serveru v úrovni " +"DEBUG (což je velmi podrobné a může obsahovat důvěrné informace!)." #. module: base #: model:ir.module.module,description:base.module_sale_margin @@ -7279,6 +7286,9 @@ msgid "" "An arbitrary string, interpreted by the client according to its own needs " "and wishes. There is no central tag repository across clients." msgstr "" +"?!?Libovolný řetězec, interpretovaný klientem v závislosti na jeho " +"požadavcích a přáních. Neexistuje žádná centrální značka skladu napříč " +"klienty." #. module: base #: sql_constraint:ir.rule:0 @@ -7379,12 +7389,12 @@ msgstr "Mikronésie" #: field:ir.module.module,menus_by_module:0 #: view:res.groups:0 msgid "Menus" -msgstr "Nabídky" +msgstr "Menu" #. module: base #: selection:ir.actions.todo,type:0 msgid "Launch Manually Once" -msgstr "Jednou ručně spustit" +msgstr "Spustit jednou ručně" #. module: base #: view:workflow:0 @@ -7435,7 +7445,7 @@ msgstr "Formát času" #. module: base #: field:res.company,rml_header3:0 msgid "RML Internal Header for Landscape Reports" -msgstr "Vnitřní hlavička RML pro výkazy na šířku" +msgstr "Vnitřní záhlaví RML pro sestavy na šířku" #. module: base #: model:res.groups,name:base.group_partner_manager @@ -7455,7 +7465,7 @@ msgstr "Seznam úkolů" #. module: base #: view:ir.actions.report.xml:0 msgid "Report xml" -msgstr "XML výkazu" +msgstr "XML sestavy" #. module: base #: model:ir.actions.act_window,name:base.action_module_open_categ @@ -7528,7 +7538,7 @@ msgstr "Mapování objektů" #: field:ir.module.category,xml_id:0 #: field:ir.ui.view,xml_id:0 msgid "External ID" -msgstr "Vnější ID" +msgstr "Externí ID" #. module: base #: help:res.currency.rate,rate:0 @@ -7563,7 +7573,7 @@ msgstr "Botswana" #. module: base #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "Jména partnerů" +msgstr "?!?Titles kontaktů" #. module: base #: code:addons/base/ir/ir_fields.py:196 @@ -7590,7 +7600,7 @@ msgstr "Pracovní dny" #. module: base #: model:ir.module.module,shortdesc:base.module_multi_company msgid "Multi-Company" -msgstr "Více-společností" +msgstr "Více firem" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_workitem_form @@ -7621,8 +7631,8 @@ msgid "" "You cannot perform this operation. New Record Creation is not allowed for " "this object as this object is for reporting purpose." msgstr "" -"Nemůžete rpovést tuto operaci. Vytváření nových záznamů není pro tento " -"objekt povoleno, protože tento objekt je pro účely výkazů." +"Nemůžete provést tuto operaci. Vytváření nových záznamů není pro tento " +"objekt povoleno, protože tento objekt je pro sestavy." #. module: base #: model:ir.module.module,description:base.module_base_import @@ -7666,7 +7676,7 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" "Poskytuje název pole, kde je uloženo id záznamu po vytvoření. Pokud " -"ponecháte prázdné, nebudete moci sledovat nové záznamy." +"ponecháte prázdné, nebudete moci sledovat nový záznam." #. module: base #: model:res.groups,comment:base.group_hr_user @@ -7694,13 +7704,13 @@ msgid "" "If you enable this option, existing translations (including custom ones) " "will be overwritten and replaced by those in this file" msgstr "" -"Pokud povolíte tuto možnost, existující překlady (včetně vlastních) budou " -"přepsány a nahrazeny těmi v tomto souboru" +"Povolíte-li tuto možnost, budou existující překlady (včetně vlastních) " +"přepsány a nahrazeny překlady z tohoto souboru." #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "Zděděný pohled" +msgstr "Zděděné zobrazení" #. module: base #: view:ir.translation:0 @@ -7718,7 +7728,7 @@ msgstr "Projekt" #. module: base #: field:ir.ui.menu,web_icon_hover_data:0 msgid "Web Icon Image (hover)" -msgstr "Obrázek webové ikona (vznášející se)" +msgstr "Obrázek webové ikony (po přejetí myší)" #. module: base #: view:base.module.import:0 @@ -7737,7 +7747,7 @@ msgstr "Omezení modelu" #: model:ir.ui.menu,name:base.menu_workflow_transition #: view:workflow.activity:0 msgid "Transitions" -msgstr "Překlady" +msgstr "Přechody" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet @@ -7748,8 +7758,7 @@ msgstr "Časové rozvrhy" #. module: base #: help:ir.values,company_id:0 msgid "If set, action binding only applies for this company" -msgstr "" -"Pokud je nastaveno, vazby akcí budou platit pouze pro tuto společnost" +msgstr "Je-li nastaveno, vazby akcí budou platit pouze pro tuto firmu" #. module: base #: model:ir.module.module,description:base.module_l10n_cn @@ -7884,7 +7893,7 @@ msgstr "Okamžitá instalace modulu" #. module: base #: view:ir.actions.server:0 msgid "Field Mapping" -msgstr "Mapování polí" +msgstr "Mapování pole" #. module: base #: field:ir.model.fields,ttype:0 @@ -7899,7 +7908,7 @@ msgstr "Kód státu" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_multilang msgid "Multi Language Chart of Accounts" -msgstr "Více jazyčná účtová osnova" +msgstr "Vícejazyčná účtová osnova" #. module: base #: model:ir.module.module,description:base.module_l10n_gt @@ -7917,7 +7926,7 @@ msgstr "" #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" -msgstr "Zleva do prava" +msgstr "Zleva doprava" #. module: base #: field:ir.model.fields,translate:0 @@ -7929,7 +7938,7 @@ msgstr "Přeložitelný" #. module: base #: help:base.language.import,code:0 msgid "ISO Language and Country code, e.g. en_US" -msgstr "ISO jazyk a kód země, např. en_US" +msgstr "ISO jazyk a kód země, např. cs_CZ" #. module: base #: model:res.country,name:base.vn @@ -7944,7 +7953,7 @@ msgstr "Podpis" #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" -msgstr "Celé jméno" +msgstr "Úplný název" #. module: base #: view:ir.attachment:0 @@ -7967,6 +7976,8 @@ msgid "" "Action bound to this entry - helper field for binding an action, will " "automatically set the correct reference" msgstr "" +"Akce vázaná k tomuto zadání – pomocné pole pro připojení akce, automaticky " +"naství správný odkaz" #. module: base #: model:ir.ui.menu,name:base.menu_project_long_term @@ -8073,7 +8084,7 @@ msgstr "Severní Mariany" #. module: base #: field:change.password.user,user_login:0 msgid "User Login" -msgstr "Příhlášení uživatele" +msgstr "Přihlášení uživatele" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hn @@ -8083,7 +8094,7 @@ msgstr "Honduras - Účetnictví" #. module: base #: model:ir.module.module,shortdesc:base.module_report_intrastat msgid "Intrastat Reporting" -msgstr "Vykazování Intrastat" +msgstr "Sestavy Intrastat" #. module: base #: code:addons/base/res/res_users.py:131 @@ -8092,8 +8103,8 @@ msgid "" "Please use the change password wizard (in User Preferences or User menu) to " "change your own password." msgstr "" -"Ke změně vašeho vlastního hesla prosíme použijte průvodce změny hesla (v " -"uživatelských předvolbách nebo uživatelské nabídce)." +"Ke změně hesla použijte průvodce změny hesla (v uživatelských předvolbách " +"nebo v uživatelském menu)." #. module: base #: model:ir.model,name:base.model_ir_config_parameter @@ -8133,7 +8144,7 @@ msgstr "" #: code:addons/orm.py:2021 #, python-format msgid "Insufficient fields for Calendar View!" -msgstr "Nedostatek polí pro zobraznení kalendáře!" +msgstr "Nedostatek polí pro zobrazení 'kalendář'!" #. module: base #: selection:ir.property,type:0 @@ -8157,7 +8168,7 @@ msgstr "Výrobce" #. module: base #: help:res.users,company_id:0 msgid "The company this user is currently working for." -msgstr "Společnost, pro kterou uživatel aktuálně pracuje." +msgstr "Firma, pro kterou uživatel aktuálně pracuje." #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -8167,7 +8178,7 @@ msgstr "wizard.ir.model.menu.create" #. module: base #: view:workflow.transition:0 msgid "Transition" -msgstr "Změny" +msgstr "Přechod" #. module: base #: field:ir.cron,active:0 @@ -8296,7 +8307,7 @@ msgstr "" #. module: base #: help:ir.sequence,number_next:0 msgid "Next number of this sequence" -msgstr "Další číslo této posloupnosti" +msgstr "Další číslo této řady" #. module: base #: view:res.partner:0 @@ -8351,7 +8362,7 @@ msgid "" "federal states you are working on from here. Each state is attached to one " "country." msgstr "" -"Pokud pracujete na Americkém trhu, můžete odsud spravovat různé federální " +"Pracujete-li na Americkém trhu, můžete odsud spravovat různé federální " "státy, se kterými pracujete. Každý stát je přiřazen k jedné zemi." #. module: base @@ -8373,7 +8384,7 @@ msgstr "Heslo" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_claim msgid "Portal Claim" -msgstr "" +msgstr "Portál reklamací" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pe @@ -8421,17 +8432,17 @@ msgstr "" #. module: base #: field:res.company,rml_header2:0 msgid "RML Internal Header" -msgstr "Vnitřní hlavička RML" +msgstr "Vnitřní záhlaví RML" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "Odkaz hledacího pohledu" +msgstr "Odkaz zobrazení 'hledání'" #. module: base #: help:res.users,partner_id:0 msgid "Partner-related data of the user" -msgstr "" +msgstr "Ke kontaktu vztažená data uživatele" #. module: base #: model:ir.module.module,description:base.module_crm_todo @@ -8459,7 +8470,7 @@ msgstr "Myanmar" #. module: base #: help:ir.model.fields,modules:0 msgid "List of modules in which the field is defined" -msgstr "Seznam modulu, ve kterých je pole definováno" +msgstr "Seznam modulů, ve kterých je pole definováno" #. module: base #: selection:base.language.install,lang:0 @@ -8569,6 +8580,8 @@ msgid "" "Allow you to define your own currency rate types, like 'Average' or 'Year to " "Date'. Leave empty if you simply want to use the normal 'spot' rate type" msgstr "" +"Umožňuje definovat vlastní druhy kurzů měn, jako 'průměr' nebo 'od začátku " +"roku'. Pokud chcete používat běžný kurz (spot rate), ponechejte prázdné" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -8622,7 +8635,7 @@ msgstr "Finanční a analytické účetnictví" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project msgid "Portal Project" -msgstr "" +msgstr "Portál projektů" #. module: base #: model:res.country,name:base.cc @@ -8655,7 +8668,7 @@ msgstr "Pole typu banky" #. module: base #: constraint:ir.rule:0 msgid "Rules can not be applied on Transient models." -msgstr "Pravidla nelze aplikovat na přechodné modely." +msgstr "Pravidla nelze aplikovat na modely přechodů." #. module: base #: selection:base.language.install,lang:0 @@ -8665,7 +8678,7 @@ msgstr "Němčina / Nederlands" #. module: base #: selection:res.company,paper_format:0 msgid "US Letter" -msgstr "Dopis US" +msgstr "US Letter" #. module: base #: model:ir.actions.act_window,help:base.action_partner_customer_form @@ -8680,10 +8693,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klekněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené se zákazníkem, diskusí, historií obchodních " +" spojené se zákazníkem: diskuse, historii obchodních " "příležitostí,\n" " dokumenty, apod.\n" "

\n" @@ -8692,18 +8705,18 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.bank_account_update msgid "Company Bank Accounts" -msgstr "Bankovní účty společnosti" +msgstr "Bankovní účty firmy" #. module: base #: code:addons/base/res/res_users.py:473 #, python-format msgid "Setting empty passwords is not allowed for security reasons!" -msgstr "Nastavení prázdného hesla není povoleno z bezpečnostních důvodů!" +msgstr "Prázdného heslo není z bezpečnostních důvodů povoleno!" #. module: base #: help:ir.mail_server,smtp_pass:0 msgid "Optional password for SMTP authentication" -msgstr "Nepovinné heslo pro SMTP autentizaci" +msgstr "Nepovinné heslo pro ověření SMTP" #. module: base #: code:addons/base/ir/ir_model.py:728 @@ -8731,7 +8744,7 @@ msgstr "Opakovat každých x." #. module: base #: model:res.partner.bank.type,name:base.bank_normal msgid "Normal Bank Account" -msgstr "Obyčejný bankovní účet" +msgstr "Běžný bankovní účet" #. module: base #: field:change.password.user,wizard_id:0 @@ -8748,7 +8761,7 @@ msgstr "id databáze" #. module: base #: model:ir.module.module,shortdesc:base.module_base_import msgid "Base import" -msgstr "" +msgstr "Base import" #. module: base #: report:ir.module.reference:0 @@ -8758,7 +8771,7 @@ msgstr "1cm 28cm 20cm 28cm" #. module: base #: field:ir.module.module,maintainer:0 msgid "Maintainer" -msgstr "Udržovatel" +msgstr "Správce" #. module: base #: field:ir.sequence,suffix:0 @@ -8781,8 +8794,7 @@ msgid "" "Select this if you want to set company's address information for this " "contact" msgstr "" -"Zvolte tuto možnost pokud chcete nastavit kontaktní údaje společnosti pro " -"tento kontakt" +"Zvolte tuto možnost chcete-li pro tento kontakt nastavit firemní adresu" #. module: base #: field:ir.default,field_name:0 @@ -8821,6 +8833,8 @@ msgid "" "This field holds the image used as avatar for this contact, limited to " "1024x1024px" msgstr "" +"Toto pole obsahuje obrázek používaný jako avatar (ikonu) tohoto kontaktu. " +"Velikost je omezena na 1024x1024 bodů." #. module: base #: model:res.country,name:base.to @@ -8838,7 +8852,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "Bank accounts belonging to one of your companies" -msgstr "Bankovní účty patřící k jedné z vašich společností" +msgstr "Bankovní účty patřící k jedné z vašich firem" #. module: base #: model:ir.module.module,description:base.module_account_analytic_plans @@ -8910,7 +8924,7 @@ msgstr "Akce klienta" #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type Fields" -msgstr "Pole druhu" +msgstr "Druh polí" #. module: base #: model:ir.module.module,summary:base.module_hr_recruitment @@ -8937,7 +8951,7 @@ msgstr "Cílové činnosti" msgid "" "Determines where the currency symbol should be placed after or before the " "amount." -msgstr "" +msgstr "Určuje, zda má být symbol měny umístěn před nebo za částkou." #. module: base #: model:ir.module.module,shortdesc:base.module_pad_project @@ -8952,7 +8966,7 @@ msgstr "base.update.translations" #. module: base #: view:ir.rule:0 msgid "Full Access Right" -msgstr "Plná práva přístupu" +msgstr "Právo plného přístupu" #. module: base #: field:res.partner.category,parent_id:0 @@ -9015,12 +9029,12 @@ msgstr "ir.model.constraint" #. module: base #: model:ir.module.module,shortdesc:base.module_web_graph msgid "Graph Views" -msgstr "Pohledy grafu" +msgstr "Zobrazení graf" #. module: base #: help:ir.model.relation,name:0 msgid "PostgreSQL table name implementing a many2many relation." -msgstr "Název tabulky PostgreSQL implementující relaci many2many." +msgstr "Název tabulky PostgreSQL realizující vztah many2many." #. module: base #: model:ir.module.module,description:base.module_base @@ -9056,7 +9070,7 @@ msgstr "Kuvajt" #. module: base #: model:ir.module.module,shortdesc:base.module_account_followup msgid "Payment Follow-up Management" -msgstr "" +msgstr "Řízení sledování plateb" #. module: base #: field:workflow.workitem,inst_id:0 @@ -9100,7 +9114,7 @@ msgstr "Volby výběru musí být dány pro vybraná pole." #. module: base #: model:ir.module.module,shortdesc:base.module_base_iban msgid "IBAN Bank Accounts" -msgstr "Bankovní účty IBAN" +msgstr "IBAN bankovních účtů" #. module: base #: field:res.company,user_ids:0 @@ -9110,7 +9124,7 @@ msgstr "Přijatí uživatelé" #. module: base #: field:ir.ui.menu,web_icon_data:0 msgid "Web Icon Image" -msgstr "Obrázek ikony webu" +msgstr "Obrázek webové ikony" #. module: base #: field:ir.actions.server,wkf_model_id:0 @@ -9135,7 +9149,7 @@ msgstr "Hong Kong" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_sale msgid "Portal Sale" -msgstr "" +msgstr "Portál obchodu" #. module: base #: field:ir.default,ref_id:0 @@ -9226,7 +9240,7 @@ msgstr "" #: help:ir.rule,global:0 msgid "If no group is specified the rule is global and applied to everyone" msgstr "" -"Pravidlo je globální a je použito pro každého, pokud není určena skupina." +"Není-li určena skupima, pravidlo bude globální a bude použito pro každého." #. module: base #: model:res.country,name:base.td @@ -9260,7 +9274,7 @@ msgstr "Podnabídka" #. module: base #: report:ir.module.reference:0 msgid "Introspection report on objects" -msgstr "Výkaz vnitřního náhledu objektů" +msgstr "Sestava vnitřního náhledu objektů" #. module: base #: model:ir.module.module,shortdesc:base.module_web_analytics @@ -9303,7 +9317,7 @@ msgstr "Pokročilé trasy" #. module: base #: model:ir.module.module,shortdesc:base.module_pad msgid "Collaborative Pads" -msgstr "" +msgstr "Collaborative Pads" #. module: base #: model:res.country,name:base.np @@ -9333,7 +9347,7 @@ msgstr "Uživatelé této skupiny automaticky zdědí tyto skupiny" #. module: base #: model:ir.module.module,summary:base.module_note msgid "Sticky notes, Collaborative, Memos" -msgstr "Nalepovací poznámky, spolupráce, záznamy" +msgstr "Nalepovací poznámky, spolupráce, poznámky" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_attendance @@ -9351,7 +9365,7 @@ msgstr "Varovné zprávy a upozornění" #: model:ir.ui.menu,name:base.menu_action_ui_view_custom #: view:ir.ui.view.custom:0 msgid "Customized Views" -msgstr "Vlastní pohledy" +msgstr "Vlastní zobrazení" #. module: base #: view:base.module.import:0 @@ -9416,8 +9430,7 @@ msgstr "Aktualizovat seznam modulů" #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" -msgstr "" -"Modul \"%s\" nelze povýšit, protože vnější závislost nebyla vyhověna: %s" +msgstr "Modul \"%s\" nelze povýšit, protože nevyhovuje vnější závislost: %s" #. module: base #: model:ir.module.module,shortdesc:base.module_account @@ -9433,6 +9446,10 @@ msgid "" "sure to save and close all forms before switching to a different company. " "(You can click on Cancel in the User Preferences now)" msgstr "" +"Mějte prosím na paměti, že zobrazené dokumenty nemusí být aktuální po " +"přepnutí na jinou firmu. Ujistěte se, že nemáte žádné neuložené změny v " +"otevřených oknech. Před přepnutím do jiné firmy uložte a zavřete všechny " +"formuláře. (Nyní můžete klepnout na 'Zrušit' v uživatelských předvolbách)" #. module: base #: code:addons/orm.py:2818 @@ -9474,7 +9491,7 @@ msgstr "Slovinština / slovenščina" #. module: base #: field:res.currency,position:0 msgid "Symbol Position" -msgstr "" +msgstr "Umístění symbolu" #. module: base #: model:ir.module.module,description:base.module_l10n_de @@ -9537,12 +9554,12 @@ msgstr "" #: code:addons/base/ir/ir_mail_server.py:444 #, python-format msgid "Missing SMTP Server" -msgstr "Chybějící server SMTP" +msgstr "Chybí SMTP server" #. module: base #: sql_constraint:ir.translation:0 msgid "Language code of translation item must be among known languages" -msgstr "Kód jazyka překladové položky musí být ze známých jazyků" +msgstr "Kód jazyka překládané položky musí být ze známých jazyků" #. module: base #: field:base.language.export,data:0 @@ -9632,7 +9649,7 @@ msgstr "" #. module: base #: field:multi_company.default,company_dest_id:0 msgid "Default Company" -msgstr "Výchozí společnost" +msgstr "Výchozí firma" #. module: base #: selection:base.language.install,lang:0 @@ -9642,12 +9659,12 @@ msgstr "Španělština (EC) / Español (EC)" #. module: base #: help:ir.ui.view,xml_id:0 msgid "ID of the view defined in xml file" -msgstr "ID pohledu určeného v xml souboru" +msgstr "ID zobrazení definovaného v xml souboru" #. module: base #: model:ir.model,name:base.model_base_module_import msgid "Import Module" -msgstr "Importovat modul" +msgstr "Import modulu" #. module: base #: model:res.country,name:base.as @@ -9662,7 +9679,7 @@ msgstr "Moje dokumenty" #. module: base #: help:ir.actions.act_window,res_model:0 msgid "Model name of the object to open in the view window" -msgstr "Název modelu objektu pro otevření v okně pohledu" +msgstr "Název modelu pro objekt otevřený v okně zobrazení" #. module: base #: field:ir.model.fields,selectable:0 @@ -9695,7 +9712,7 @@ msgstr "Celý název země." #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "Iterace" +msgstr "Opakování" #. module: base #: code:addons/orm.py:4246 @@ -9927,12 +9944,12 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_status msgid "State/Stage Management" -msgstr "Stav/správa stádia" +msgstr "Správa stavů a fází" #. module: base #: model:ir.module.category,name:base.module_category_warehouse_management msgid "Warehouse" -msgstr "Sklad" +msgstr "Sklady" #. module: base #: field:ir.exports,resource:0 @@ -9965,7 +9982,7 @@ msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #. module: base #: view:ir.filters:0 msgid "Filters shared with all users" -msgstr "Filtry sdílené se všemi uživateli" +msgstr "Filtry sdílené všemi uživateli" #. module: base #: view:ir.translation:0 @@ -9976,7 +9993,7 @@ msgstr "Překlady" #. module: base #: view:ir.actions.report.xml:0 msgid "Report" -msgstr "Výkaz" +msgstr "Sestava" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_prof @@ -9992,7 +10009,7 @@ msgid "" "do the trick." msgstr "" "Váš OpenERP server nepodporuje metodu SMTP-over-SSL. Místo toho zkuste " -"použít STARTTLS. Pokud potřebujete SSl, aktualizujt na Python 2.6 na straně " +"použít STARTTLS. Pokud potřebujete SSl, aktualizujte na Python 2.6 na " "serveru, to by mohlo pomoct." #. module: base @@ -10017,7 +10034,7 @@ msgstr "Žádné" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_holidays msgid "Leave Management" -msgstr "Opustit správu" +msgstr "Správa zájemců" #. module: base #: model:res.company,overdue_msg:base.main_company @@ -10066,7 +10083,7 @@ msgstr "Mali" #. module: base #: model:ir.ui.menu,name:base.menu_project_config_project msgid "Stages" -msgstr "Stádia" +msgstr "Fáze" #. module: base #: selection:base.language.install,lang:0 @@ -10110,7 +10127,7 @@ msgstr "Brunei Darussalam" #: field:ir.actions.act_window.view,view_mode:0 #: field:ir.ui.view,type:0 msgid "View Type" -msgstr "Typ pohledu" +msgstr "Typ zobrazení" #. module: base #: model:ir.ui.menu,name:base.next_id_2 @@ -10125,7 +10142,7 @@ msgstr "Polotovary MRP" #. module: base #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "Ref partnera" +msgstr "Ref. kontaktu" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_expense @@ -10269,7 +10286,7 @@ msgstr "Gambie" #: view:res.partner:0 #: field:res.users,company_ids:0 msgid "Companies" -msgstr "Společnosti" +msgstr "Firmy v systému" #. module: base #: help:res.currency,symbol:0 @@ -10446,7 +10463,7 @@ msgstr "Vlastní" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_margin msgid "Margins in Sales Orders" -msgstr "Marže v prodejních objednávkách" +msgstr "Marže u zakázek" #. module: base #: model:ir.module.module,shortdesc:base.module_purchase @@ -10498,7 +10515,7 @@ msgstr "Německo" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth msgid "OAuth2 Authentication" -msgstr "Autentizace OAuth2" +msgstr "OAuth2 ověření" #. module: base #: view:workflow:0 @@ -10509,16 +10526,16 @@ msgid "" "default value. If you don't do that, your customization will be overwrited " "at the next update or upgrade to a future version of OpenERP." msgstr "" -"Když upravujete pracovní postup, neupravujte existující uzel nebo šipku ale " -"přidávejte nové uzly nebo šipky. Pokud opravdu potřebujete upravit uzel nebo " -"šipku, můžete změnit pouze pole, která nejsou prázdná nebo nastavená na " -"výchozí hodnotu. Pokud tohle nedodržíte, vaše úpravy budou přepsány při " +"Když upravujete pracovní postup, neupravujte existující uzel nebo šipku, ale " +"raději přidávejte nové uzly nebo šipky. Pokud opravdu potřebujete upravit " +"uzel nebo šipku, můžete změnit pouze pole, která jsou prázdná nebo nastavená " +"na výchozí hodnotu. Pokud tohle nedodržíte, vaše úpravy budou přepsány při " "další aktualizaci nebo v budoucí verzi OpenERP." #. module: base #: report:ir.module.reference:0 msgid "Reports :" -msgstr "Výkazy:" +msgstr "Sestavy:" #. module: base #: model:ir.module.module,description:base.module_multi_company @@ -10534,7 +10551,7 @@ msgstr "" #. module: base #: sql_constraint:res.currency:0 msgid "The currency code must be unique per company!" -msgstr "Kód měny musí být jedinečný podle společnosti!" +msgstr "Kód měny musí být pro firmu jedinečný!" #. module: base #: code:addons/base/module/wizard/base_export_language.py:39 @@ -10575,13 +10592,13 @@ msgstr "Guyana" #. module: base #: model:ir.module.module,shortdesc:base.module_product_expiry msgid "Products Expiry Date" -msgstr "Datum expirace výrobku" +msgstr "Datum expirace produktu" #. module: base #: code:addons/base/res/res_config.py:387 #, python-format msgid "Click 'Continue' to configure the next addon..." -msgstr "Klikněte na 'Pokračovat' k nastavení dašlího doplňku..." +msgstr "Klepněte na 'Pokračovat' k nastavení dalšího doplňku…" #. module: base #: field:ir.actions.server,record_id:0 @@ -10659,7 +10676,7 @@ msgstr "Správa smluv: propojení s hr_expense" #: view:res.partner:0 #: view:workflow.activity:0 msgid "Group By..." -msgstr "Seskupit podle..." +msgstr "Seskupit podle…" #. module: base #: view:base.module.update:0 @@ -10684,12 +10701,12 @@ msgstr "Uložený název souboru" #. module: base #: field:res.partner,use_parent_address:0 msgid "Use Company Address" -msgstr "Použít adresu společnosti" +msgstr "Použít adresu firmy" #. module: base #: model:ir.module.module,summary:base.module_hr_holidays msgid "Holidays, Allocation and Leave Requests" -msgstr "Dovolené, požadavky na práci a dovolenou" +msgstr "Svátky, přidělení a žádosti o dovolenou" #. module: base #: model:ir.module.module,description:base.module_web_hello @@ -10737,11 +10754,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klepněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené s dodavatelem, diskusí, historií obchodních " -"příležitostí,\n" +" spojené s dodavatelem: diskuse, historii nákupů,\n" " dokumenty, apod.\n" "

\n" " " @@ -10814,18 +10830,18 @@ msgstr "Zobrazit" #. module: base #: model:res.groups,name:base.group_multi_company msgid "Multi Companies" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: help:res.users,menu_id:0 msgid "" "If specified, the action will replace the standard menu for this user." -msgstr "Akce nahradí standardní nabídku tohoto uživatele, pokud je určeno." +msgstr "Je-li určeno, akce nahradí standardní menu tohoto uživatele." #. module: base #: model:ir.actions.report.xml,name:base.preview_report msgid "Preview Report" -msgstr "Náhled výkazu" +msgstr "Náhled sestavy" #. module: base #: model:ir.module.module,shortdesc:base.module_purchase_analytic_plans @@ -10836,7 +10852,7 @@ msgstr "Analytické plány nákupů" #: model:ir.actions.act_window,name:base.ir_sequence_type #: model:ir.ui.menu,name:base.menu_ir_sequence_type msgid "Sequence Codes" -msgstr "Kódy posloupnosti" +msgstr "Kódy řad" #. module: base #: selection:base.language.install,lang:0 @@ -10871,7 +10887,7 @@ msgstr "Francie" #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" -msgstr "Zastavení toku" +msgstr "Konec postupu" #. module: base #: selection:ir.cron,interval_type:0 @@ -10901,6 +10917,7 @@ msgstr "Marketingové kampaně - ukázka" msgid "" "Can not create Many-To-One records indirectly, import the field separately" msgstr "" +"Záznamy Many-To-One nelze vytvořit nepřímo, pole importujte samostatně" #. module: base #: field:ir.cron,interval_type:0 @@ -10910,7 +10927,7 @@ msgstr "Jednotka intervalu" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Portál skladů" #. module: base #: field:workflow.activity,kind:0 @@ -10967,8 +10984,8 @@ msgid "" "Select the action that will be executed. Loop action will not be avaliable " "inside loop." msgstr "" -"Vyberte akci, která bude spuštěna. Smyčkové akce nebudou dostupné uvnitř " -"smyčky." +"Vyberte akci, která bude spuštěna. Cyklické akce nebudou dostupné uvnitř " +"cyklu." #. module: base #: help:ir.model.data,res_id:0 @@ -11037,8 +11054,7 @@ msgstr "" #. module: base #: constraint:res.users:0 msgid "The chosen company is not in the allowed companies for this user" -msgstr "" -"Vybraná společnost není v povolených společnostech pro tohoto uživatele" +msgstr "Vybraná firma není v povolených firmách tohoto uživatele" #. module: base #: model:res.country,name:base.gi @@ -11058,15 +11074,15 @@ msgstr "Ostrov Pitcairn" #. module: base #: field:res.partner,category_id:0 msgid "Tags" -msgstr "Štítky" +msgstr "Značky" #. module: base #: view:base.module.upgrade:0 msgid "" "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." msgstr "" -"Doporučejem znovu načíst záložku nabídky ke zhlédnutí nových nabídek (Ctrl+T " -"pak Ctrl+R)" +"Doporučejem znovu načíst záložku menu ke zhlédnutí nových menu (Ctrl+T pak " +"Ctrl+R)" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -11078,7 +11094,7 @@ msgstr "Pravidla záznamů" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: model:ir.module.category,name:base.module_category_portal @@ -11124,8 +11140,8 @@ msgid "" "OpenERP will automatically adds some '0' on the left of the 'Next Number' to " "get the required padding size." msgstr "" -"OpenERP automaticky přidá nějaké '0' nalevo od 'Dalšího čísla' k získání " -"požadované velikosti odsazení." +"OpenERP pro vytvoření odpovídajícího tvaru čísla automaticky přidá '0' vlevo " +"od 'dalšího čísla'." #. module: base #: help:ir.model.constraint,name:0 @@ -11135,7 +11151,7 @@ msgstr "Omezení PostgreSQL nebo název cizího klíče." #. module: base #: view:res.company:0 msgid "Click to set your company logo." -msgstr "Klikněte sem pro nastavení loga vaší společnosti." +msgstr "Klepněte sem pro nastavení loga vaší firmy." #. module: base #: view:res.lang:0 @@ -11165,7 +11181,7 @@ msgstr "Text patičky zobrazovaný ve spodní části všech výkazů." #. module: base #: field:ir.module.module,icon:0 msgid "Icon URL" -msgstr "Ikona URL" +msgstr "URL ikony" #. module: base #: model:ir.module.module,shortdesc:base.module_note_pad @@ -11201,7 +11217,7 @@ msgstr "Přílohy" #. module: base #: help:res.company,bank_ids:0 msgid "Bank accounts related to this company" -msgstr "Bankovní účty společnosti" +msgstr "Bankovní účty firmy" #. module: base #: model:ir.module.category,name:base.module_category_sales_management @@ -11212,7 +11228,7 @@ msgstr "Bankovní účty společnosti" #: model:ir.ui.menu,name:base.next_id_64 #: view:res.users:0 msgid "Sales" -msgstr "Prodeje" +msgstr "Prodej" #. module: base #: field:ir.actions.server,child_ids:0 @@ -11240,7 +11256,7 @@ msgstr "" #: model:res.partner.title,name:base.res_partner_title_miss #: model:res.partner.title,shortcut:base.res_partner_title_miss msgid "Miss" -msgstr "Slečna" +msgstr "slečna" #. module: base #: view:ir.model.access:0 @@ -11279,7 +11295,7 @@ msgstr "Itálie" #. module: base #: model:res.groups,name:base.group_sale_salesman msgid "See Own Leads" -msgstr "Zobrazit vlastní vedoucí" +msgstr "Zobrazit vlastní zájemce" #. module: base #: view:ir.actions.todo:0 @@ -11290,7 +11306,7 @@ msgstr "Úkoly" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_hr_employees msgid "Portal HR employees" -msgstr "" +msgstr "Portál personalistiky" #. module: base #: selection:base.language.install,lang:0 @@ -11318,7 +11334,7 @@ msgid "" "Insufficient fields to generate a Calendar View for %s, missing a date_stop " "or a date_delay" msgstr "" -"Nedostatek polí pro vygenerování pohledu kalendáře pro %s, chybí date_stop a " +"Nedostatek polí pro vytvoření zobrazení 'kalendář' pro %s, chybí date_stop a " "date_delay" #. module: base @@ -11337,8 +11353,8 @@ msgid "" "Manage the partner titles you want to have available in your system. The " "partner titles is the legal status of the company: Private Limited, SA, etc." msgstr "" -"Spravuje tituly partnerů, které chcete mít dostupné ve vašem systému. Titul " -"partnerů je zákonná forma společnosti: s.r.o., a.s., aj." +"Spravuje právní formy kontaktů, které chcete mít dostupné ve vašem systému. " +"Právní formou je myšleno např. s.r.o., a.s., aj." #. module: base #: view:res.bank:0 @@ -11418,7 +11434,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "" +msgstr "Použít naplánovanou aktualizaci" #. module: base #: view:workflow.activity:0 @@ -11444,7 +11460,7 @@ msgstr "Uživatelé" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "Nadřazená společnost" +msgstr "Nadřazená firma" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_openid @@ -11508,7 +11524,7 @@ msgstr "Stát země" #. module: base #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences & Identifiers" -msgstr "Posloupnosti a identifikátory" +msgstr "Řady & identifikátory" #. module: base #: model:ir.module.module,description:base.module_l10n_th @@ -11534,9 +11550,9 @@ msgid "" "for the currency: %s \n" "at the date: %s" msgstr "" -"Pro měnu %s\n" -"nebyl nalezen kurz\n" -"v datu: %s" +"Kurz nenalezen!\n" +"Měna %s\n" +"Datum: %s" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view_custom @@ -11544,13 +11560,13 @@ msgid "" "Customized views are used when users reorganize the content of their " "dashboard views (via web client)" msgstr "" -"Přizpůsobené pohledy jsou použity, pokud uživatelů přeorganizují obsah " -"jejich pohledů nástěnek (přes webového klienta)" +"Vlastní zobrazení jsou použity, pokud uživatelů přeorganizují obsah jejich " +"pohledů nástěnek (přes webového klienta)" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_stock msgid "Sales and Warehouse Management" -msgstr "Prodeje a správa skladu" +msgstr "Prodej a správa skladu" #. module: base #: model:ir.module.module,description:base.module_hr_recruitment @@ -11597,7 +11613,7 @@ msgstr "Neinstalováno" #: view:workflow.activity:0 #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "Odchozí překlady" +msgstr "Přechod na konci" #. module: base #: field:ir.module.module,icon_image:0 @@ -11611,8 +11627,8 @@ msgid "" "Helps you manage your human resources by encoding your employees structure, " "generating work sheets, tracking attendance and more." msgstr "" -"Pomůže vám spravovat vaše lidské zdroje pomocí nakódování struktury " -"zaměstnanců, generování pracovních listů, sledování docházky a další." +"Pomůže vám spravovat vaši personalistiku pomocí nastavení struktury " +"zaměstnanců, generování pracovních listů, sledování docházky a dalších." #. module: base #: help:res.partner,ean13:0 @@ -11639,12 +11655,12 @@ msgstr "Martinik (Francouzský)" #: help:res.partner,is_company:0 msgid "Check if the contact is a company, otherwise it is a person" msgstr "" -"Zaškrtněte toto pole, pokud je kontakt společnost, jinak je to osoba." +"Zaškrtněte toto pole, pokud je kontakt firmou, jinak je bude jednat o osobu." #. module: base #: view:ir.sequence.type:0 msgid "Sequences Type" -msgstr "Typ posloupnosti" +msgstr "Druhy číselných řad" #. module: base #: view:res.partner:0 @@ -11791,7 +11807,7 @@ msgstr "Kancelářské potřeby" #. module: base #: field:ir.attachment,res_model:0 msgid "Resource Model" -msgstr "" +msgstr "Model zdroje" #. module: base #: code:addons/custom.py:555 @@ -11824,6 +11840,18 @@ msgid "" " - uid: current user id\n" " - context: current context" msgstr "" +"Podmínka, která je testována před provedením akce a zabrání jejímu " +"provedení, není-li podmínka splněna.\n" +"Například: object.list_price > 5000\n" +"Je to výraz v Pythonu, který může používat následující hodnoty:\n" +" - self: ORM model of the record on which the action is triggered\n" +" - object or obj: browse_record of the record on which the action is " +"triggered\n" +" - pool: ORM model pool (i.e. self.pool)\n" +" - time: Python time module\n" +" - cr: database cursor\n" +" - uid: current user id\n" +" - context: current context" #. module: base #: view:ir.rule:0 @@ -11860,13 +11888,13 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_analytic_user_function msgid "Jobs on Contracts" -msgstr "Smluvní zaměstnání" +msgstr "?!?Smluvní zaměstnání" #. module: base #: code:addons/base/res/res_lang.py:187 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" -msgstr "Nemůžete smazat jazyk, který mají uživatelé jako upřednostňovaný !" +msgstr "Nemůžete smazat jazyk, který mají uživatelé jako preferovaný!" #. module: base #: view:ir.model.data:0 @@ -11886,7 +11914,7 @@ msgstr "Kaskáda" #. module: base #: model:ir.module.module,summary:base.module_crm msgid "Leads, Opportunities, Phone Calls" -msgstr "Vedoucí, příležitosti, telefonní hovory" +msgstr "Zájemci, příležitosti, telefonní hovory" #. module: base #: model:ir.module.category,description:base.module_category_knowledge_management @@ -11911,7 +11939,7 @@ msgstr "Přeložené" #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "Výchozí společnost objektu" +msgstr "Výchozí firma pro objekt" #. module: base #: model:ir.module.module,shortdesc:base.module_web_hello @@ -11990,7 +12018,7 @@ msgstr "ir.actions.report.xml" #: view:ir.sequence:0 #: model:ir.ui.menu,name:base.menu_ir_sequence_form msgid "Sequences" -msgstr "Posloupnosti" +msgstr "Číselné řady" #. module: base #: help:res.lang,code:0 @@ -12009,7 +12037,7 @@ msgstr "Sdílený" msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" msgstr "" -"Nelze instalovat modul \"%s\", protože vnější závislost není splněna: %s" +"Nelze instalovat modul \"%s\", protože nevyhovuje vnější závislost: %s" #. module: base #: view:ir.module.module:0 @@ -12037,6 +12065,10 @@ msgid "" "not connect to the system. You can assign them groups in order to give them " "specific access to the applications they need to use in the system." msgstr "" +"Vytváření a správa uživatelů, kteří se budou připojovat do systému. " +"Uživatelé mohou být odpojeni po vypršení určité doby nečinnosti. Uživatelé " +"mohou být seskupováni do skupin, aby jim mohly být přiděleny oprávnění k " +"aplikacím v systému podle jejich potřeb." #. module: base #: selection:res.request,priority:0 @@ -12096,7 +12128,7 @@ msgstr "Portoriko" #. module: base #: model:ir.module.module,shortdesc:base.module_web_tests_demo msgid "Demonstration of web/javascript tests" -msgstr "" +msgstr "Ukázka web/javascript testů" #. module: base #: field:workflow.transition,signal:0 @@ -12228,12 +12260,12 @@ msgstr "Parametry" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" -msgstr "GPL Version 2" +msgstr "GPL verze 2" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 3" -msgstr "GPL Version 3" +msgstr "GPL verze 3" #. module: base #: model:ir.module.module,description:base.module_stock_location @@ -12353,7 +12385,7 @@ msgstr "A4" #. module: base #: view:res.config.installer:0 msgid "Configuration Installer" -msgstr "" +msgstr "Instalátor konfigurace" #. module: base #: field:res.partner,customer:0 @@ -12425,7 +12457,7 @@ msgstr "Měsíc: %(měsíc/e)" #: field:multi_company.default,sequence:0 #: field:res.partner.bank,sequence:0 msgid "Sequence" -msgstr "Posloupnost" +msgstr "Číselná řada" #. module: base #: model:res.country,name:base.tn @@ -12439,8 +12471,8 @@ msgid "" "(if you delete a native ACL, it will be re-created when you reload the " "module." msgstr "" -"Pokud odšrtnete aktivní pole, vypnete ACL bez jeho smazání (Pokud smažete " -"nativní ACL, bude znovuvytvořeno při opětovném načtení modulu)." +"Odšrtnete-li aktivní pole, vypnete ACL bez jeho smazání (Pokud smažete " +"nativní ACL, bude znovu vytvořeno při opětovném načtení modulu)." #. module: base #: model:ir.model,name:base.model_ir_fields_converter @@ -12451,7 +12483,7 @@ msgstr "ir.fields.converter" #: code:addons/base/res/res_partner.py:439 #, python-format msgid "Couldn't create contact without email address !" -msgstr "" +msgstr "Nemůžete vytvořit kontakt bez e-mailové adresy!" #. module: base #: model:ir.module.category,name:base.module_category_manufacturing @@ -12500,7 +12532,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_bo msgid "Bolivia Localization Chart Account" -msgstr "" +msgstr "Bolívie - účtová osnova, daně" #. module: base #: model:ir.module.module,description:base.module_plugin_thunderbird @@ -12520,7 +12552,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "Legends for Date and Time Formats" -msgstr "Vysvětlívky pro formát data a času" +msgstr "Vysvětlivky pro formát data a času" #. module: base #: selection:ir.actions.server,state:0 @@ -12530,7 +12562,7 @@ msgstr "Kopírovat objekt" #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Signal" -msgstr "Spouštěč signálu" +msgstr "Signál spouštěče" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -12703,7 +12735,7 @@ msgstr "UK - Účetnictví" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_madam msgid "Mrs." -msgstr "Paní" +msgstr "paní" #. module: base #: code:addons/base/ir/ir_model.py:433 @@ -12739,7 +12771,7 @@ msgstr "Opakovat výraz" #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Retailer" -msgstr "" +msgstr "Maloobchodník" #. module: base #: view:ir.model.fields:0 @@ -12770,7 +12802,7 @@ msgstr "Referenční příručka" #: selection:res.partner.title,domain:0 #: model:res.request.link,name:base.req_link_partner msgid "Partner" -msgstr "Partner" +msgstr "Kontakt" #. module: base #: code:addons/base/ir/ir_mail_server.py:481 @@ -12788,6 +12820,8 @@ msgstr "" msgid "" "Please make sure no workitems refer to an activity before deleting it!" msgstr "" +"Ujistěte se prosím ještě před odstraněním činnosti, že k ní nevztahují žádné " +"pracovní kroky!" #. module: base #: model:res.country,name:base.tr @@ -12808,7 +12842,7 @@ msgstr "Libanon" #: view:ir.actions.report.xml:0 #: field:ir.actions.report.xml,report_type:0 msgid "Report Type" -msgstr "Typ výkazu" +msgstr "Druh sestavy" #. module: base #: view:res.bank:0 @@ -12893,13 +12927,12 @@ msgstr "" #. module: base #: field:ir.actions.act_window,view_id:0 msgid "View Ref." -msgstr "Ref. náhledu" +msgstr "Ref. zobrazení" #. module: base #: model:ir.module.category,description:base.module_category_sales_management msgid "Helps you handle your quotations, sale orders and invoicing." -msgstr "" -"Pomáhá vám spravovat vaše cenové nabídky, prodejní příkazy a fakturaci." +msgstr "Pomáhá vám spravovat vaše cenové nabídky, zakázky a fakturovat." #. module: base #: field:res.users,login_date:0 @@ -12971,7 +13004,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_import_language #: model:ir.ui.menu,name:base.menu_view_base_import_language msgid "Import Translation" -msgstr "Importovat překlad" +msgstr "Import překladu" #. module: base #: view:ir.module.module:0 @@ -13011,7 +13044,7 @@ msgstr "" #. module: base #: model:res.country,name:base.cd msgid "Congo, Democratic Republic of the" -msgstr "" +msgstr "Kongo" #. module: base #: model:res.country,name:base.cr @@ -13063,7 +13096,7 @@ msgstr "Konzultační služby" #. module: base #: help:ir.values,value:0 msgid "Default value (pickled) or reference to an action" -msgstr "" +msgstr "Výchozí hodnota (pickled) nebo odkaz na akci" #. module: base #: field:ir.actions.report.xml,auto:0 @@ -13093,7 +13126,7 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "Hodina 00->12: %(h12)s" +msgstr "Hodiny 00->12: %(h12)s" #. module: base #: model:res.country,name:base.dk @@ -13147,7 +13180,7 @@ msgstr "Norština / Norsk bokmål" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" -msgstr "Paní" +msgstr "paní" #. module: base #: model:res.country,name:base.ee @@ -13203,7 +13236,7 @@ msgstr "Ukázková data" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_mister msgid "Mr." -msgstr "Pan" +msgstr "pan" #. module: base #: model:res.country,name:base.mv @@ -13213,7 +13246,7 @@ msgstr "Maledivy" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_crm msgid "Portal CRM" -msgstr "" +msgstr "Portál CRM" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -13223,7 +13256,7 @@ msgstr "Nízkoúrovňové objekty" #. module: base #: help:ir.values,model:0 msgid "Model to which this entry applies" -msgstr "Model, pro který je záznam platný" +msgstr "Model, ke kterému se položka vztahuje" #. module: base #: field:res.country,address_format:0 @@ -13287,7 +13320,7 @@ msgid "" "Here is what we got instead:\n" " %s" msgstr "" -"Zde je to, co mám místo toho:\n" +"Zde je to, co jsme obdrželi místo toho:\n" " %s" #. module: base @@ -13295,7 +13328,7 @@ msgstr "" #: view:ir.model.data:0 #: model:ir.ui.menu,name:base.ir_model_data_menu msgid "External Identifiers" -msgstr "Vnější identifikátory" +msgstr "Externí identifikátory" #. module: base #: selection:base.language.install,lang:0 @@ -13398,8 +13431,8 @@ msgid "" "Important when you deal with multiple actions, the execution order will be " "decided based on this, low number is higher priority." msgstr "" -"Důležité, pokud se vypořádáváte s více akcemi, pořadí vykonání bude " -"rozhodnuto na základě tohoto, nízké číslo má vyšší přednost." +"Toto je důležité, pracujete-li s více akcemi. Pořadí vykonávání bude " +"stanoveno podle hodnoty - nižší číslo má vyšší prioritu." #. module: base #: model:res.country,name:base.gr @@ -13414,7 +13447,7 @@ msgstr "Použít" #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" -msgstr "Datum spouštění" +msgstr "Datum spouštěče" #. module: base #: selection:base.language.install,lang:0 @@ -13450,7 +13483,7 @@ msgstr "Neodinstalovatelný" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "Kategorie partnerů" +msgstr "Kategorie kontaktů" #. module: base #: view:ir.actions.server:0 @@ -13464,8 +13497,8 @@ msgid "" "Helps you manage your inventory and main stock operations: delivery orders, " "receptions, etc." msgstr "" -"Pomůže vám spravovat vaše zásoby a hlavní skladové operace: příkazy dodání, " -"příjetí, aj." +"Pomůže vám spravovat vaše zásoby a hlavní skladové operace: objednávky " +"dopravy, příjmy, apod." #. module: base #: model:ir.model,name:base.model_ir_values @@ -13520,7 +13553,7 @@ msgstr "" #. module: base #: field:res.users,menu_id:0 msgid "Menu Action" -msgstr "Akce nabídky" +msgstr "Akce menu" #. module: base #: help:ir.model.fields,selection:0 @@ -13655,7 +13688,7 @@ msgstr "Nová Kaledonie (Francouzská)" #. module: base #: field:ir.model,osv_memory:0 msgid "Transient Model" -msgstr "Přechodný model" +msgstr "Přechodový model" #. module: base #: model:res.country,name:base.cy @@ -13713,7 +13746,7 @@ msgstr "Předvolby" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Buyer" -msgstr "" +msgstr "Nákupčí součástí" #. module: base #: model:ir.module.module,description:base.module_web_tests_demo @@ -13739,7 +13772,7 @@ msgstr "Značka akce klienta" #. module: base #: field:ir.values,model_id:0 msgid "Model (change only)" -msgstr "Mode (pouze změnit)" +msgstr "Model (pouze změna)" #. module: base #: model:ir.module.module,description:base.module_marketing_campaign_crm_demo @@ -13771,7 +13804,7 @@ msgstr "Výraz výběru voleb musí být ve formátu [('key','Label'], ...]!" #. module: base #: field:res.company,company_registry:0 msgid "Company Registry" -msgstr "Rejstřík společnosti" +msgstr "Obchodní rejstřík" #. module: base #: view:ir.actions.report.xml:0 @@ -13822,7 +13855,7 @@ msgstr "Západní Sahara" #. module: base #: model:ir.module.category,name:base.module_category_account_voucher msgid "Invoicing & Payments" -msgstr "Fakturace & platby" +msgstr "Fakturace & Platby" #. module: base #: model:ir.actions.act_window,help:base.action_res_company_form @@ -13830,8 +13863,8 @@ msgid "" "Create and manage the companies that will be managed by OpenERP from here. " "Shops or subsidiaries can be created and maintained from here." msgstr "" -"Vytváří a spravuje společnosti, které budou odsud spravovány OpenERP. " -"Obchody nebo pobočky mohou být vytvořeny a spravovány odsud." +"Vytváří a spravuje firmy, které budou spravovány OpenERP. Prodejny nebo " +"pobočky mohou být vytvářeny a spravovány na tomto místě." #. module: base #: model:res.country,name:base.id @@ -13862,8 +13895,8 @@ msgid "" "Expression, must be True to match\n" "use context.get or user (browse)" msgstr "" -"Výraz musí být Pravda, aby odpovídal\n" -"použitému kontextu.get nebo user (procházet)" +"Výraz musí být pravdivý, aby odpovídal\n" +"použití context.get nebo uživatele (procházet)" #. module: base #: model:res.country,name:base.bg @@ -13878,7 +13911,7 @@ msgstr "Angola" #. module: base #: model:res.country,name:base.tf msgid "French Southern Territories" -msgstr "Francouzské jížní teritoria" +msgstr "Francouzská jížní teritoria" #. module: base #: model:ir.model,name:base.model_res_currency @@ -13919,7 +13952,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_account_test msgid "Accounting Consistency Tests" -msgstr "" +msgstr "?!?Kontroly účetní celistvosti" #. module: base #: model:ir.module.module,description:base.module_purchase_double_validation @@ -13942,7 +13975,7 @@ msgstr "Správa" #. module: base #: view:base.module.update:0 msgid "Click on Update below to start the process..." -msgstr "Klikněte na Aktualizovat níže k započetí procesu..." +msgstr "Klepněte na 'Aktualizovat' k zahájení procesu…" #. module: base #: model:res.country,name:base.ir @@ -13974,9 +14007,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" -"Střední obrázek tohoto kontaktu. Je automaticky škálován na 128x128px se " -"zachováním poměru stran. Použijte toto pole v zobrazeních formuláře nebo " -"některých pohledech kanban." +"Střední obrázek tohoto kontaktu. Je automaticky přepočítán na 128x128 bodů " +"se zachováním poměru stran. Použijte toto pole v zobrazeních 'formulář' nebo " +"'kanban'." #. module: base #: view:base.update.translations:0 @@ -14094,7 +14127,7 @@ msgstr "Rozšíření pro podporu elektronického bankovnictví" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" -msgstr "Popisek pole" +msgstr "Označení pole" #. module: base #: model:res.country,name:base.dj @@ -14138,7 +14171,7 @@ msgstr "Informace" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "false" -msgstr "nepravda" +msgstr "chybně" #. module: base #: model:ir.module.module,description:base.module_account_analytic_analysis @@ -14200,7 +14233,7 @@ msgstr "Činnosti" #. module: base #: model:ir.module.module,shortdesc:base.module_product msgid "Products & Pricelists" -msgstr "Výrobky & Ceníky" +msgstr "Produkty & Ceníky" #. module: base #: help:ir.filters,user_id:0 @@ -14251,6 +14284,7 @@ msgid "" "Automatically set to let administators find new terms that might need to be " "translated" msgstr "" +"Nastavit automatické poskytování nových termínů k překladu administrátorům" #. module: base #: code:addons/base/ir/ir_model.py:85 @@ -14276,7 +14310,7 @@ msgstr "Španělsko - Účetnictví (PGCE 2008)" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_no_autopicking msgid "Picking Before Manufacturing" -msgstr "Vyzvednutí před vyrobením" +msgstr "?!?Vyzvednutí před vyrobením" #. module: base #: model:ir.module.module,summary:base.module_note_pad @@ -14291,7 +14325,7 @@ msgstr "Ostrovy Wallis a Futuna" #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" -msgstr "Pojmenujte to pro snadnější nalzení záznamu" +msgstr "Název použijte pro snadnější nalezení záznamu" #. module: base #: model:ir.module.module,description:base.module_hr @@ -14333,7 +14367,7 @@ msgstr "" #: view:ir.model.data:0 #: field:ir.model.data,name:0 msgid "External Identifier" -msgstr "Vnější identifikátor" +msgstr "Externí identifikátor" #. module: base #: model:ir.module.module,description:base.module_audittrail @@ -14354,7 +14388,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Menu Items" -msgstr "Položky nabídky" +msgstr "Položky menu" #. module: base #: model:res.groups,comment:base.group_sale_salesman_all_leads @@ -14417,6 +14451,9 @@ msgid "" " the rightmost column (value) contains the " "translations" msgstr "" +"CSV formát: můžete jej upravovat přímo ve svém oblíbeném tabulkovém " +"editoru,\n" +"pravý sloupec obsahuje překlady" #. module: base #: model:ir.module.module,description:base.module_account_chart @@ -14441,7 +14478,7 @@ msgstr "Cílová aktivita." #. module: base #: model:ir.module.module,shortdesc:base.module_project_issue msgid "Issue Tracker" -msgstr "Sledování úkolů" +msgstr "Sledování problémů" #. module: base #: view:base.module.update:0 @@ -14540,7 +14577,7 @@ msgstr "Instalovat moduly" #. module: base #: model:ir.ui.menu,name:base.menu_import_crm msgid "Import & Synchronize" -msgstr "Import a synchronizace" +msgstr "Import & Synchronizace" #. module: base #: view:res.partner:0 @@ -14560,7 +14597,7 @@ msgstr "res.request.history" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "Default multi company" -msgstr "Výchozí více společností" +msgstr "Výchozí více firem" #. module: base #: field:ir.translation,src:0 @@ -14659,7 +14696,7 @@ msgstr "TLS (STARTTLS)" #: help:ir.actions.act_window,usage:0 msgid "Used to filter menu and home actions from the user form." msgstr "" -"Používán pro filtraci akcí v menu a na domácí obrazovce ve formuláři " +"Používá se pro filtraci akcí menu a na domácí obrazovce z formuláře " "uživatele." #. module: base @@ -14698,7 +14735,7 @@ msgstr "" #: field:ir.actions.server,trigger_obj_id:0 #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "Pole odkaz" +msgstr "?!?Související pole" #. module: base #: model:ir.module.module,description:base.module_portal_project @@ -14773,9 +14810,9 @@ msgid "" "later is slower than the former but forbids any gap in the sequence (while " "they are possible in the former)." msgstr "" -"Jsou k dispozici dvě objektové implementace: Standardní a 'Bez mezer'. První " -"je rychlejší než druhá, neumožňuje však žádné mezery v posloupnosti (což je " -"v první umožněno)." +"Jsou k dispozici dvě objektové implementace: 'Standardní' a 'Bez mezer'. " +"První je rychlejší než druhá, neumožňuje však žádné mezery v číselné řadě " +"(což je v první umožněno)." #. module: base #: model:res.country,name:base.gn @@ -14785,7 +14822,7 @@ msgstr "Guinea" #. module: base #: model:ir.module.module,shortdesc:base.module_web_diagram msgid "OpenERP Web Diagram" -msgstr "Diagram OpenERP Web" +msgstr "OpenERP Web Diagram" #. module: base #: model:res.country,name:base.lu @@ -14800,7 +14837,7 @@ msgstr "Osobní a sdílený kalendář" #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "Nízká" +msgstr "Nízké" #. module: base #: code:addons/base/ir/ir_ui_menu.py:354 @@ -14872,7 +14909,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_gengo msgid "Automated Translations through Gengo API" -msgstr "" +msgstr "Automatický překlad prostřednictvím Genco API" #. module: base #: model:ir.module.module,shortdesc:base.module_account_payment @@ -14911,7 +14948,7 @@ msgstr "Průvodce změnou hesla" #. module: base #: model:ir.module.module,summary:base.module_account_voucher msgid "Send Invoices and Track Payments" -msgstr "Odelsat faktury a sledovat platby" +msgstr "Odeslat faktury a sledovat platby" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead @@ -15039,7 +15076,7 @@ msgstr "Moduly k aktualizaci" #. module: base #: model:ir.ui.menu,name:base.menu_custom_multicompany msgid "Multi-Companies" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: field:workflow,osv:0 @@ -15051,12 +15088,12 @@ msgstr "Objekt zdroje" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_helpdesk msgid "Helpdesk" -msgstr "Helpdesk" +msgstr "Poradna" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply for Write" -msgstr "" +msgstr "Použít pro zápis" #. module: base #: field:ir.ui.menu,parent_left:0 @@ -15089,11 +15126,10 @@ msgid "" "be assigned to specific groups in order to make them accessible to some " "users within the system." msgstr "" -"Spravuje a přizpůsobuje položky dostupné a zobrazované ve vaší nabídce " -"systému OpenERP. Můžete mazat položky kliknutím na políčko na začátku " -"každého řádku a pak jej smazat přes zjevené tlačítko. Položky mohou být " -"přiřazeny k určitým skupinám za účelem nechání je přistupnými některým " -"uživatelům v systému." +"Spravuje a přizpůsobuje položky dostupné a zobrazované ve vašem menu v " +"OpenERP. Položky můžete mazat klepnutím na čtverec na začátku každého řádku " +"a pak je smazat tlačítkem, které se objeví. Položky mohou být přiřazeny k " +"určitým skupinám pro zpřistupnění některým uživatelům systému." #. module: base #: field:ir.ui.view,field_parent:0 @@ -15149,12 +15185,12 @@ msgstr "ISO kód je název .po souborů použitých pro překlady" #. module: base #: report:ir.module.reference:0 msgid "View :" -msgstr "Pohled :" +msgstr "Zobrazení:" #. module: base #: field:ir.model.fields,view_load:0 msgid "View Auto-Load" -msgstr "Zobrazit automatické načtení" +msgstr "Automatické načtení zobrazení" #. module: base #: model:ir.module.module,description:base.module_l10n_et @@ -15174,7 +15210,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Allowed Companies" -msgstr "Povolené společnosti" +msgstr "Povolené firmy" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_de @@ -15189,12 +15225,12 @@ msgstr "Den v roce: %(doy)s" #. module: base #: field:ir.ui.menu,web_icon:0 msgid "Web Icon File" -msgstr "Soubor ikony webu" +msgstr "Soubor webové ikony" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" -msgstr "Použít plánované povýšení" +msgstr "Plánované aktualizace" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_journal @@ -15207,8 +15243,8 @@ msgid "" "If this field is empty, the view applies to all users. Otherwise, the view " "applies to the users of those groups only." msgstr "" -"Pokud je toto pole ponecháno prázdné, vztahuje se tento pohled na všechny " -"uživatele. Jinak se vztahuje jen na uživatele zadaných skupin." +"Je-li toto pole ponecháno prázdné, bude se toto zobrazení vztahovat na " +"všechny uživatele. Jinak se bude vztahovat jen na uživatele zadaných skupin." #. module: base #: selection:base.language.install,lang:0 @@ -15288,6 +15324,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Požadovanou operaci nelze dokončit z důvodu bezpečnostního omezení. Obraťte " +"se prosím na správce systému.\n" +"\n" +"(Typ dokumentu: %s, Operace: %s)" #. module: base #: model:ir.module.module,description:base.module_idea @@ -15408,17 +15448,17 @@ msgstr "Fax" #: view:res.users:0 #: field:res.users,company_id:0 msgid "Company" -msgstr "Společnost" +msgstr "Firma" #. module: base #: model:ir.module.category,name:base.module_category_report_designer msgid "Advanced Reporting" -msgstr "Pokročilé vykazování" +msgstr "Pokročilé sestavy" #. module: base #: model:ir.module.module,summary:base.module_purchase msgid "Purchase Orders, Receptions, Supplier Invoices" -msgstr "" +msgstr "Vystavené objednávky, příjemky, faktury přijaté" #. module: base #: model:ir.module.module,description:base.module_hr_payroll @@ -15515,13 +15555,13 @@ msgstr "Omezení" #. module: base #: model:res.groups,name:base.group_hr_user msgid "Officer" -msgstr "Strážník" +msgstr "úředník" #. module: base #: code:addons/orm.py:787 #, python-format msgid "Serialization field `%s` not found for sparse field `%s`!" -msgstr "Serializační pole `%s` nebylo nalezeno pro řídké pole `%s`!" +msgstr "Serializační pole `%s` nebylo nalezeno pro 'sparse field' `%s`!" #. module: base #: model:res.country,name:base.jm @@ -15541,10 +15581,10 @@ msgid "" "categories have a hierarchy structure: a partner belonging to a category " "also belong to his parent category." msgstr "" -"Spravuje kategorie partnerů v pořadí pro jejich lepší třídění pro účely " -"sledování a analýzy. Partner může patřit do několika kategorií a kategorie " -"mají hierarchickou strukturu: partner patřící do kategorie také může patřit " -"do jeho nadřazené kategorie." +"Spravuje kategorie kontaktů pro jejich lepší třídění z hlediska sledování a " +"analýzy. Kontakt může patřit do několika kategorií. Kategorie mají " +"hierarchickou strukturu, což znamená, že kontakt patřící do kategorie patří " +"také do kategorie nadřazené." #. module: base #: model:ir.module.module,description:base.module_survey @@ -15725,8 +15765,8 @@ msgid "" "If set to true, the wizard will not be displayed on the right toolbar of a " "form view." msgstr "" -"Pokud je nastaveno na pravda, průvodce nebude zobrazen v pravém nástrojovém " -"panelu formulářového pohledu." +"Je-li nastaveno 'správně', průvodce nebude zobrazen v pravém nástrojovém " +"panelu zobrazení 'formulář'." #. module: base #: view:ir.values:0 @@ -15739,8 +15779,8 @@ msgid "" "file encoding, please be sure to view and edit\n" " using the same encoding." msgstr "" -"kódování souboru, prosím zobrazujte a upravujte\n" -" jej za použití stejného kódování." +"kódování souboru, prohlížejte jej a a upravujte\n" +" za použití stejného kódování." #. module: base #: view:ir.rule:0 @@ -15759,7 +15799,7 @@ msgstr "Nizozemí - Účetnictví" #. module: base #: model:res.country,name:base.gs msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy" #. module: base #: view:res.lang:0 @@ -15779,6 +15819,11 @@ msgid "" "1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " "106,500. Provided ',' as the thousand separator in each case." msgstr "" +"Oddělovací schéma má tvar [,n] kde 0 < n počínaje jednotkami. Číslice -1 " +"bude schéma ukončovat. Například schéma [3,2,-1] bude číslo 106500 " +"zobrazovat jako 1,06,500 nebo [1,2,-1] zobrazí stejné číslo jako 106,50,0 a " +"schéma [3] stejné číslo zobrazí jako 106,500. Za předpokladu, že jako " +"desetinný oddělovač použijete ve všech případech ',' (čárku)." #. module: base #: field:ir.module.module,auto_install:0 @@ -15813,7 +15858,7 @@ msgstr "Lze přejmenovat pouze jeden sloupec najednou!" #. module: base #: selection:ir.translation,type:0 msgid "Report/Template" -msgstr "Výkaz/šablona" +msgstr "Sestava/šablona" #. module: base #: model:ir.module.module,description:base.module_account_budget @@ -15918,7 +15963,7 @@ msgstr "Rozdělený režim" #. module: base #: view:base.module.upgrade:0 msgid "Note that this operation might take a few minutes." -msgstr "Vemte na vědomí, že tato operace může trvat několik minut." +msgstr "Pozor, tato operace může trvat několik minut." #. module: base #: code:addons/base/ir/ir_fields.py:363 @@ -15927,6 +15972,8 @@ msgid "" "Ambiguous specification for field '%(field)s', only provide one of name, " "external id or database id" msgstr "" +"Nejasná specifikace pole '%(field)s', poskytuje pouze jedno z: name, " +"external id or database id" #. module: base #: field:ir.sequence,implementation:0 @@ -15946,7 +15993,7 @@ msgstr "Chile" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "Editor pohledu" +msgstr "Editor zobrazení" #. module: base #: view:ir.cron:0 @@ -15974,7 +16021,7 @@ msgstr "Směnný kurz měny k měně o velikosti 1." #. module: base #: field:ir.ui.view,name:0 msgid "View Name" -msgstr "Název náhledu" +msgstr "Název zobrazení" #. module: base #: model:ir.model,name:base.model_res_groups @@ -15992,8 +16039,8 @@ msgid "" "Only one client action will be executed, last client action will be " "considered in case of multiple client actions." msgstr "" -"Bude vykonána pouze akce klienta. Poslední akce klienta bude brána v úvahu v " -"případě vícenásobných akcí klienta." +"Bude provedena pouze akce klienta, v případě vícenásobných akcí klienta bude " +"brána v úvahu poslední akce." #. module: base #: model:ir.module.module,description:base.module_mrp_jit @@ -16040,7 +16087,7 @@ msgstr "Mobilní č." #: model:ir.model,name:base.model_res_partner_category #: view:res.partner.category:0 msgid "Partner Categories" -msgstr "Kategorie partnerů" +msgstr "Kategorie kontaktů" #. module: base #: view:base.module.upgrade:0 @@ -16061,7 +16108,7 @@ msgstr "Velikost souboru" #. module: base #: help:ir.sequence,prefix:0 msgid "Prefix value of the record for the sequence" -msgstr "Předpona hodnoty záznamu posloupnosti" +msgstr "Hodnota předpony číselné řady" #. module: base #: model:res.country,name:base.sc @@ -16103,7 +16150,7 @@ msgstr "Portugalsko - účtová osnova" #. module: base #: field:ir.model.data,complete_name:0 msgid "Complete ID" -msgstr "" +msgstr "Complete ID" #. module: base #: model:ir.module.module,description:base.module_stock @@ -16187,7 +16234,7 @@ msgstr "Nainstalované moduly" #: code:addons/base/res/res_users.py:170 #, python-format msgid "Company Switch Warning" -msgstr "Varování přepnutí společnosti" +msgstr "Upozornění při přepnutí firmy" #. module: base #: model:ir.module.category,description:base.module_category_manufacturing @@ -16219,8 +16266,8 @@ msgid "" "Manage relations with prospects and customers using leads, opportunities, " "requests or issues." msgstr "" -"Řízení vztahů mezi prospekty a zákazníky s použitím zájemců, příležitostí " -"nebo úkolů." +"Řízení vztahů s potenciálními i současnými zákazníky prostřednictvím " +"zájemců, příležitostí, požadavků nebo problémů." #. module: base #: model:ir.module.module,description:base.module_project @@ -16297,12 +16344,12 @@ msgstr "Instance pracovních postupů" #: code:addons/base/res/res_partner.py:531 #, python-format msgid "Partners: " -msgstr "Partneři: " +msgstr "Kontakty: " #. module: base #: view:res.partner:0 msgid "Is a Company?" -msgstr "Je společnost?" +msgstr "Firma" #. module: base #: code:addons/base/res/res_company.py:173 @@ -16349,10 +16396,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klepněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené se zákazníkem, diskusí, historií obchodních " +" spojené se zákazníkem: diskuse, historii obchodních " "příležitostí,\n" " dokumenty, apod.\n" "

\n" @@ -16361,7 +16408,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "Prospect" -msgstr "Prospekt" +msgstr "Zájemce" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_invoice_directly @@ -16385,7 +16432,7 @@ msgid "" "sales and purchases documents." msgstr "" "Použito pro automatický výběr správné adresy podle obsahu dokumentů v " -"prodejích a nákupech." +"prodeji a nákupu." #. module: base #: model:ir.module.module,description:base.module_purchase_analytic_plans @@ -16408,7 +16455,7 @@ msgstr "Srí Lanka" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "Pohled hledání" +msgstr "Zobrazení 'hledání'" #. module: base #: selection:base.language.install,lang:0 diff --git a/openerp/addons/base/i18n/da.po b/openerp/addons/base/i18n/da.po index c3231d7447e..9cb48d90601 100644 --- a/openerp/addons/base/i18n/da.po +++ b/openerp/addons/base/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:01+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/de.po b/openerp/addons/base/i18n/de.po index 29ba7cd9499..691dc9aa72e 100644 --- a/openerp/addons/base/i18n/de.po +++ b/openerp/addons/base/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -5427,7 +5427,7 @@ msgid "" msgstr "" "\n" "Ergänzen Sie zusätzliche Datum Informationen zum Auftrag.\n" -"=================================================\n" +"=========================================================\n" "\n" "Sie können die folgenden zusätzlichen Daten zu einem Kundenauftrag " "hinzufügen:\n" diff --git a/openerp/addons/base/i18n/el.po b/openerp/addons/base/i18n/el.po index c97ab07eccd..9d5e08ab37b 100644 --- a/openerp/addons/base/i18n/el.po +++ b/openerp/addons/base/i18n/el.po @@ -12,8 +12,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/openerp/addons/base/i18n/en_GB.po b/openerp/addons/base/i18n/en_GB.po index 5c8a4c4eb10..07a72040756 100644 --- a/openerp/addons/base/i18n/en_GB.po +++ b/openerp/addons/base/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es.po b/openerp/addons/base/i18n/es.po index 0d8f2d23352..87ddcc27531 100644 --- a/openerp/addons/base/i18n/es.po +++ b/openerp/addons/base/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_AR.po b/openerp/addons/base/i18n/es_AR.po index e679fcc51f3..25f36681e86 100644 --- a/openerp/addons/base/i18n/es_AR.po +++ b/openerp/addons/base/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_CL.po b/openerp/addons/base/i18n/es_CL.po index f5a3133b713..47bb1dfe89d 100644 --- a/openerp/addons/base/i18n/es_CL.po +++ b/openerp/addons/base/i18n/es_CL.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_CR.po b/openerp/addons/base/i18n/es_CR.po index 56f2dc48521..199ba293aa3 100644 --- a/openerp/addons/base/i18n/es_CR.po +++ b/openerp/addons/base/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" "Language: \n" #. module: base diff --git a/openerp/addons/base/i18n/es_DO.po b/openerp/addons/base/i18n/es_DO.po index 1dc7d31e92a..402262c0586 100644 --- a/openerp/addons/base/i18n/es_DO.po +++ b/openerp/addons/base/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_EC.po b/openerp/addons/base/i18n/es_EC.po index 88602af44fd..e2a8f80861b 100644 --- a/openerp/addons/base/i18n/es_EC.po +++ b/openerp/addons/base/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:10+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:21+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_MX.po b/openerp/addons/base/i18n/es_MX.po index ea8d6a9f92c..72f0f4e9357 100644 --- a/openerp/addons/base/i18n/es_MX.po +++ b/openerp/addons/base/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:21+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_VE.po b/openerp/addons/base/i18n/es_VE.po index ae3f8eb6ea5..3e06be053f7 100644 --- a/openerp/addons/base/i18n/es_VE.po +++ b/openerp/addons/base/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/et.po b/openerp/addons/base/i18n/et.po index d0df5aff544..7cda5c5e505 100644 --- a/openerp/addons/base/i18n/et.po +++ b/openerp/addons/base/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/eu.po b/openerp/addons/base/i18n/eu.po index 3619b429f47..686c559235f 100644 --- a/openerp/addons/base/i18n/eu.po +++ b/openerp/addons/base/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fa.po b/openerp/addons/base/i18n/fa.po index 1fda3f21e58..a81d030e80e 100644 --- a/openerp/addons/base/i18n/fa.po +++ b/openerp/addons/base/i18n/fa.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" "X-Poedit-Language: Persian\n" diff --git a/openerp/addons/base/i18n/fa_AF.po b/openerp/addons/base/i18n/fa_AF.po index 24dbbe8cbd1..1a679915d26 100644 --- a/openerp/addons/base/i18n/fa_AF.po +++ b/openerp/addons/base/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:10+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:21+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fi.po b/openerp/addons/base/i18n/fi.po index 136e70ff8bd..735993733a4 100644 --- a/openerp/addons/base/i18n/fi.po +++ b/openerp/addons/base/i18n/fi.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fr.po b/openerp/addons/base/i18n/fr.po index 46ad09cb9e5..a3308f8c4a5 100644 --- a/openerp/addons/base/i18n/fr.po +++ b/openerp/addons/base/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -938,7 +938,7 @@ msgstr "Jordanie" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hr msgid "Croatia - RRIF 2012 COA" -msgstr "" +msgstr "Croatie - charte de compte (RRIF version 2012)" #. module: base #: help:ir.cron,nextcall:0 @@ -1328,6 +1328,36 @@ msgid "" "* Planned Revenue by Stage and User (graph)\n" "* Opportunities by Stage (graph)\n" msgstr "" +"\n" +"Le module OpenERP de gestion de la relation client (CRM)\n" +"=============================================\n" +"\n" +"Cette application permet aux utilisateurs de gérer efficacement et " +"intelligemment leurs pistes, opportunités, réunions et appels " +"téléphoniques.\n" +"\n" +"Elle gère les tâches clés comme la communication, l'identification, les " +"assignations, les résolutions et les notifications.\n" +"\n" +"OpenERP assure que toutes les demandes sont suivis par les utilisateurs, les " +"clients et les fournisseurs. Il permet d'envoyer automatiquement des " +"rappels, d'escalader des requêtes, de lancer des actions spécifiques et de " +"nombreuses autres selon les règles de l'entreprise.\n" +"\n" +"Le grand avantage de ce système est que les utilisateurs n'ont rien à faire " +"de spécial. Le module CRM dispose d'une passerelle de courriel permettant de " +"synchroniser les courriels reçus et OpenERP. De cette façon, les " +"utilisateurs peuvent simplement envoyer des courriels au système de suivi " +"des demandes.\n" +"\n" +"OpenERP s'occupera de remercier les utilisateurs de leur message, de diriger " +"cette demande à l'équipe appropriée et de s'assurer que toute les " +"communications futures seront rangées à la bonne place.\n" +"\n" +"\n" +"Le tableau bord de cette application inclut:\n" +"* les revenus prévus par étape de vente et par utilisateur (graphique);\n" +"* les opportunités par étape de vente (graphique).\n" #. module: base #: selection:base.language.export,format:0 @@ -1425,6 +1455,50 @@ msgid "" "come with any additional paid permission for online use of 'private " "modules'.\n" msgstr "" +"\n" +"Module de base pour la localisation Brésilienne\n" +"=====================================\n" +"\n" +"Ce module fournit :\n" +"* a charte de compte générique brésilienne ;\n" +"* les taxes brésiliennes telles que :\n" +" * IPI,\n" +" * ICMS,\n" +" * PIS,\n" +" * COFINS,\n" +" * ISS,\n" +" * IR,\n" +" * IRPJ,\n" +" * CSLL.\n" +"\n" +"Le champs tax_discount a aussi été ajouté dans les objets " +"account.tax.template et account.tax\n" +"pour permettre le calcul correct de certaines TVA brésiliennes telle que " +"l'ICMS. L'assistant de création\n" +"de la charte de compte a été étendu afin de prendre en compte correctement " +"ces nouvelles données.\n" +"\n" +"Il est important de noter cependant que plusieurs fonctionnalités sont " +"manquant dans ce module\n" +"pour permettre d'utiliser OpenERP correctement au Brésil. Ces " +"fonctionnalités (tel que la facturation \n" +"fiscale électronique, qui est déjà opérationnelle) sont apportées par plus " +"de 15 modules du projet\n" +"Launchpad de localisation brésilienne https://launchpad.net/openerp.pt-br-" +"localiz et leurs dépendances \n" +"dans la branche extra-addons. Ces modules visent à ne pas briser la " +"remarquable modularité d'OpenERP; \n" +"c'est pour cela qu'ils sont petits mais nombreux. Une des raisons de " +"maintenir ces modules à part est que\n" +"les responsables de la localisation ont besoin des droits de commit afin de " +"rester agile et pouvoir terminer\n" +"cette localisation; en effet, des compagnies financent les requis légaux " +"restants (comme les livres fiscaux, \n" +"la comptabilité SPED, la fiscalité SPED et le PAF ECF encore manquants en " +"date de Septembre 2011).\n" +"Ces modules sont strictement distribués sous licence AGPL v3 et aujourd'hui " +"ne permettent pas des droits\n" +"payants pour une utilisation en ligne de \"modules privés\".\n" #. module: base #: code:addons/orm.py:406 @@ -1491,7 +1565,7 @@ msgstr "Corée du Sud" #. module: base #: model:ir.module.module,description:base.module_l10n_si msgid "Kontni načrt za gospodarske družbe" -msgstr "" +msgstr "Le plan comptable pour les entreprises" #. module: base #: code:addons/orm.py:4918 @@ -1871,6 +1945,16 @@ msgid "" " * the main taxes used in Luxembourg\n" " * default fiscal position for local, intracom, extracom " msgstr "" +"\n" +"Ceci est le module de base pour gérer la charte de comptes pour le " +"Luxembourg.\n" +"===============================================================\n" +"\n" +" * La charte de compte officielle du Luxembourg (loi de Juin 2009 et " +"charte & taxes de 2011).\n" +" * La charte des codes de taxe pour le Luxembourg.\n" +" * Les taxes principales utilisées au Luxembourg.\n" +" * Les positions fiscales par défaut : local, intracom et extracom " #. module: base #: code:addons/base/module/wizard/base_update_translations.py:39 @@ -2733,7 +2817,7 @@ msgstr "" #. module: base #: field:change.password.user,new_passwd:0 msgid "New Password" -msgstr "" +msgstr "Nouveau mot de passe" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view @@ -2835,6 +2919,35 @@ msgid "" "\n" " " msgstr "" +"\n" +" \n" +"Localisation belge pour les factures clients et fournisseurs (pré-requis : " +"account_coda) :\n" +"=============================================================================" +"=============\n" +" - Renomme la description du champ 'reference' par 'Communication'\n" +" - Ajoute le support pour la Communication Belge Structurée\n" +"\n" +"Une Communication Structurée peut être gérénée automatiquement sur les " +"factures clients en fonction des algorithmes suivants :\n" +"-----------------------------------------------------------------------------" +"-------------------------------------------------\n" +" 1) Aléatoire : +++RRR/RRRR/RRRDD+++\n" +" **R..R =** Nombre aléatoir, **DD =** Vérification du nombre\n" +" 2) Date : +++DOY/YEAR/SSSDD+++\n" +" **DOY =** Jour de l'année, **SSS =** Séquence, **DD =** Vérification " +"du nombre\n" +" 3) Référence du client +++RRR/RRRR/SSSDDD+++\n" +" **R..R =** Référence du client sans caractère numérique, **SSS =** " +"Séquence, **DD =** Vérification du nombre \n" +" \n" +"Le type de Communication Structurée préféré et l'Algorithme associé peuvent " +"être\n" +"spécifiés dans les fiches des partenaires. Une Communication Structurée " +"'aléatoire' sera\n" +"générée si aucun algorithme n'est spécifié sur la fiche du partenaire. \n" +"\n" +" " #. module: base #: model:res.country,name:base.pl @@ -2975,6 +3088,30 @@ msgid "" "Print product labels with barcode.\n" " " msgstr "" +"\n" +"Ceci est le module pour gérer les produits et les listes de prix dans " +"OpenERP.\n" +"============================================================\n" +"\n" +"Les produits peuvent avoir des variantes, différentes méthodes de calcul du " +"prix, les informations des fournisseurs, différentes méthode de lancement de " +"la fabrication (sur stock ou sur commande), différentes unités de mesures, " +"définir le conditionnement et les propriétés.\n" +"\n" +"Les listes de prix permettent :\n" +"-----------------------------------------\n" +" * niveaux multiples de réductions (par produit, catégories ou " +"quantités);\n" +" * calculer le prix en fonction de différents critères :\n" +" * une autre liste de prix,\n" +" * un prix de revient,\n" +" * un prix de liste,\n" +" * un prix fournisseur.\n" +"\n" +"Les listes de prix sont définies par produit et/ou partenaires.\n" +"\n" +"Impression des étiquettes de produits avec les code-barres.\n" +" " #. module: base #: model:ir.module.module,description:base.module_account_analytic_default @@ -3150,6 +3287,17 @@ msgid "" " * Files by Partner (graph)\n" " * Files Size by Month (graph)\n" msgstr "" +"\n" +"Ceci est un système complet de gestion de documents.\n" +"===========================================\n" +" * Authentification utilisateur\n" +" * Indexation de documents :- Les fichiers .pptx et .docx ne sont pas " +"pris en charge pour la plate-fome Windows.\n" +" * Sont inclus dans le tableau de bord des documents : \n" +" * Nouveaux fichiers (liste)\n" +" * Fichiers par type de ressource (graphique)\n" +" * Fichiers par partenaire (graphique)\n" +" * Taille des fichiers par mois (graphique)\n" #. module: base #: view:ir.actions.report.xml:0 @@ -3199,6 +3347,40 @@ msgid "" "* Monthly Turnover (Graph)\n" " " msgstr "" +"\n" +"Demandes de prix de vente et bon de commandes\n" +"=======================================\n" +"\n" +"Cette application permet de gérer les objectifs de ventes d'une façon " +"efficace et efficiente en gardant trace de tous les bons de commande y " +"compris leur historique.\n" +"\n" +"Elle permet de gérer le processus de vente au complet :\n" +" Devis -> bon de commande -> facture\n" +"\n" +"Paramètres (seulement si la gestion d'entrepôt est installée)\n" +"-----------------------------------------------------------------------------" +"------\n" +"\n" +"Si vous avez aussi installé l'application de gestion d'entrepôt, vous " +"pourrez gérer les paramètres suivants :\n" +"* expédition : choix de livrer en une fois ou de façon partielle;\n" +"* facturation : choix des méthodes de facturation;\n" +"* Incoterms : termes des échanges commerciaux à l'internationnal.\n" +"\n" +"Vous pouvez choisir des méthodes flexibles de facturation :\n" +"* à la demande : les factures sont crées manuellement à partir des bons de " +"commandes lorsque désiré;\n" +"* sur bon de livraison : les factures sont générées automatiquement à la " +"collecte (livraison);\n" +"* avant livraison : une facture brouillon est créée et doit être payée avant " +"livraison.\n" +"\n" +"Le tableau de bord des gestionnaires de vente inclut :\n" +"-------------------------------------------------------------------------\n" +"* mes devis ;\n" +"* le taux de roulement mensuel (graphique).\n" +" " #. module: base #: field:ir.actions.act_window,res_id:0 @@ -3253,6 +3435,15 @@ msgid "" "\n" " " msgstr "" +"\n" +"Perou - Charte de compte et localisation des taxes (selon PCGE 2010).\n" +"=======================================================\n" +"\n" +"Comptabilité péruvienne et taxes conformément aux dispositions applicables " +"de la\n" +"SUNAT 2011 (PCGE 2010).\n" +"\n" +" " #. module: base #: view:ir.actions.server:0 @@ -3302,6 +3493,15 @@ msgid "" "This module is currently not compatible with the ``user_ldap`` module and\n" "will disable LDAP authentication completely if installed at the same time.\n" msgstr "" +"\n" +"Mots de passe chiffrés\n" +"==================\n" +"\n" +"Interaction avec l'authentification LDAP :\n" +"--------------------------------------------------------\n" +"Ce module est actuellement incompatible avec le module user_ldap et " +"désactivera complètement\n" +"l'authentification LDAP si il est installé en même temps.\n" #. module: base #: model:res.groups,name:base.group_hr_manager @@ -3358,6 +3558,30 @@ msgid "" "* Purchase Analysis\n" " " msgstr "" +"\n" +"Gérer facilement l'approvisionnement par les bons d'achats\n" +"===============================================\n" +"\n" +"La gestion des achats vous permet de suivre les devis fournisseurs et les " +"convertir en bons d'achat si nécessaire.\n" +"OpenERP a plusieurs méthodes de suivis des factures et garder trace des " +"biens commandés. OpenERP permet de gérer les livraisons partielle, vous " +"permettant de garder traces des biens qui sont encore à livrer et vous " +"permettre d'envoyer des rappels automatiquement.\n" +"\n" +"Les règles de gestion des approvisionnement d'OpenERP permettent au système " +"de générer automatiquement les brouillons des bons d'achat; vous pouvez " +"aussi le configurer afin d'exécuter un processus simple entièrement dirigé " +"par les besoins de production.\n" +"\n" +"Le tableau de bord et rapports de ce module incluent :\n" +"---------------------------------------------------------------------------\n" +"* les demandes de cotations ;\n" +"* les bons d'achat en attente d'approbation ;\n" +"* les achats mensuels par catégories ;\n" +"* l'analyse des réceptions ;\n" +"* l'analyse des achats.\n" +" " #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -3390,6 +3614,19 @@ msgid "" " * Unlimited \"Group By\" levels (not stacked), two cross level analysis " "(stacked)\n" msgstr "" +"\n" +"Vues graphiques pour le client Web\n" +"============================\n" +"\n" +" * Analyse une vue mais permet le changement dynamique de la " +"représentation.\n" +" * Types de graphiques : tarte, lignes, surfaces, barres, radars.\n" +" * Empilage ou non pour les graphiques en surfaces et en barres.\n" +" * Légendes : au dessus, à l'intérieur (en haut/à gauche), cachées.\n" +" * Fonctionnalités : download au format PNG ou CSV, parcourir la grille " +"de données, changer l'orientation.\n" +" * Niveaux regroupement (non-empilés) illimités, 2 niveaux croisés " +"d'analyse (empilés).\n" #. module: base #: view:res.groups:0 @@ -3425,6 +3662,20 @@ msgid "" " * Salary Maj, ONSS, Withholding Tax, Child Allowance, ...\n" " " msgstr "" +"\n" +"Règles de paie belges.\n" +"=================\n" +"\n" +" * Détails des employés.\n" +" * Contrats des employés.\n" +" * Contrats basés sur les passeports.\n" +" * Indemnités et retenues.\n" +" * Permet de configurer le salaire de base, brut ou net.\n" +" * Fiche de paie des employés.\n" +" * Enregistrement de la paie mensuellement.\n" +" * Intégré avec la gestion des congés.\n" +" * Salaire MAJ, ONSS, retenue d'impôt, allocation enfant...\n" +" " #. module: base #: code:addons/base/ir/ir_fields.py:174 @@ -3468,6 +3719,24 @@ msgid "" "purchase price and fixed product standard price are booked on a separate \n" "account." msgstr "" +"\n" +"Support de la méthodologie comptable anglo-saxonne en changeant la logique " +"comptable des mouvements de stock.\n" +"=============================================================================" +"===============\n" +"\n" +"La différence entre la comptabilité anglo-saxonne et la comptabilité " +"continentale est la gestion du coût des biens vendus versus le coût de " +"vente. La comptabilité anglo-saxonne prend le coût lorsque la facture est " +"créée alors que la comptabilité continentale le prendra lorsque les biens " +"sont expédiés.\n" +"\n" +"Ce module ajoute cette fonctionnalité en utilisant un compte intermédiaire " +"afin d'enregistrer la valeur des biens expédiés et fera la contrepartie de " +"compte intermédiaire lorsque la facture sera créée afin de transférer ce " +"montant dans le compte client ou le compte fournisseur. Deuxièmement, les " +"différences entre le prix réel d'achat et le prix standard fixe des produits " +"sont enregistrés dans un autre compte." #. module: base #: model:res.country,name:base.si @@ -3487,6 +3756,14 @@ msgid "" " * ``base_stage``: stage management\n" " " msgstr "" +"\n" +"Ce module gére les statuts et les étapes. Il est dérivé des modules " +"crm_base et crm_case.\n" +"======================================================================\n" +"\n" +" * base_state : gestion des statuts\n" +" * base_stage : gestion des étapes\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_web_linkedin @@ -3606,6 +3883,22 @@ msgid "" " above. Specify the interval information and partner to be invoice.\n" " " msgstr "" +"\n" +"Création de documents récurrents.\n" +"============================\n" +"\n" +"Ce module permet de créer de nouveaux documents et ajouter des abonnements à " +"ces documents.\n" +"\n" +"Par exemple, avoir une facture générée automatiquement périodiquement:\n" +"-----------------------------------------------------------------------------" +"---------------------------\n" +"\n" +" * définir un type de document basé sur l'objet Facture;\n" +" * définir un abonnement dont la source est le document définit " +"précédemment et spécifier\n" +" l'intervalle d'information et le partenaire à facturer.\n" +" " #. module: base #: field:res.company,rml_header1:0 @@ -3756,6 +4049,23 @@ msgid "" " - Yearly Salary by Head and Yearly Salary by Employee Report\n" " " msgstr "" +"\n" +"Inde - Règle de gestion de la paie.\n" +"===========================\n" +"\n" +" * Localisation indienne du module hr_payroll.\n" +" * Toutes les contributions pour les règles des fiches de paie indienne " +":\n" +" * nouveau rapport de fiche de paie ;\n" +" * contrat des employés ;\n" +" * permet de configurer les salaire de base, brut et net ;\n" +" * fiche de paie des employés ;\n" +" * indemnités et retenues ;\n" +" * intégration avec la gestion des congés ;\n" +" * allocations médicale, allocation de voyage, allocation enfant...\n" +" * Conseils et rapport.\n" +" * Rapport annuel par compagnie et rapport annuel par employé.\n" +" " #. module: base #: code:addons/orm.py:3871 @@ -3797,6 +4107,30 @@ msgid "" "customers' expenses if your work by project.\n" " " msgstr "" +"\n" +"Gestion des dépenses par employés\n" +"============================\n" +"\n" +"Cette application vous permet de gérer les dépenses quotidiennes de vos " +"employés. Il vous donne accès aux notes de frais de vos employés et vous " +"donne le droit de terminer et valider ou refuser les notes. Après " +"validation, il créé une facture pour les employés.\n" +"Les employés peuvent saisir leurs propres dépenses et le processus les mets " +"automatiquement dans le système comptable après validation par les " +"managers.\n" +"\n" +"Le processus est implémenté de la façon suivante :\n" +"---------------------------------------------------------------------\n" +" * note de frais brouillon ;\n" +" * confirmation de la feuille par l'employé ;\n" +" * validation par son supérieur ;\n" +" * validation par le comptable et création du reçu.\n" +"\n" +"Ce module utilise aussi la comptabilité analytique et est compatible avec le " +"module de facturation à partir des feuilles de temps; vous êtes donc capable " +"de re-facturer automatiquement les dépenses de vos client si vous travaillez " +"par projets.\n" +" " #. module: base #: view:base.language.export:0 @@ -4119,6 +4453,39 @@ msgid "" "* Work Order Analysis\n" " " msgstr "" +"\n" +"Module de gestion de production dans OpenERP\n" +"======================================\n" +"\n" +"Ce module vous permet de couvrir la planification, les ordres, les stocks, " +"la fabrication et l'assemblage de produits à partir de matières premières et " +"de composants. Il gère la consommation et la production de produit selon " +"leur nomenclature et les opérations nécessaires en machines, outils et " +"ressources humaines en accord avec les gammes opératoires.\n" +"\n" +"Il supporte l'intégration complète et la planification des biens stockables, " +"consommables ou des services. Les services sont complètement intégrés avec " +"le reste du logiciel. Par exemple, vous pouvez définir un service sous-" +"contracté dans une nomenclature afin d'automatiquement acheter sur commande " +"l’assemblage de votre production.\n" +"\n" +"Fonctionnalités clés\n" +"---------------------------\n" +"* Fabrication sur stock ou sur commande.\n" +"* Plusieurs niveaux de nomenclature, sans limite.\n" +"* Plusieurs niveaux de gammes opératoires, sans limite.\n" +"* Gamme opératoire et poste de charge intégrés avec la comptabilité " +"analytique.\n" +"* Calcul périodique des besoins.\n" +"* Permet de naviguer les nomenclatures dans une structure complète qui " +"inclut les nomenclature enfants et fantômes.\n" +"\n" +"Tableau de bord et rapport du module incluent :\n" +"------------------------------------------------------------------\n" +"* les approvisionnements en exception (graphique) ;\n" +"* variation des stocks (graphique) ;\n" +"* analyse des ordres de travail ;\n" +" " #. module: base #: view:ir.attachment:0 @@ -4148,6 +4515,14 @@ msgid "" "easily\n" "keep track and order all your purchase orders.\n" msgstr "" +"\n" +"Ce module permet la gestion des demandes d'achats.\n" +"=========================================\n" +"\n" +"Lorsque un ordre d'achat est créé, vous avez maintenant la possibilité de " +"sauver la demande associée.\n" +"Le nouvel objet regroupera et vous permettra de facilement garder trace et " +"commander vos ordres d'achat.\n" #. module: base #: help:ir.mail_server,smtp_host:0 @@ -4277,7 +4652,7 @@ msgstr "Récursivité détectée" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_et msgid "Ethiopia - Accounting" -msgstr "" +msgstr "Ethiopie - Comptabilité" #. module: base #: code:addons/base/module/module.py:366 @@ -4307,6 +4682,24 @@ msgid "" "\n" " " msgstr "" +"\n" +"Ce module permet de définir la fonction par défaut d'un utilisateur " +"spécifique sur un compte donné.\n" +"=============================================================================" +"==\n" +"\n" +"Il est le plus souvent utilisé lorsque un utilisateur saisi sa feuille de " +"temps : les données sont extraites\n" +"et les champs remplis automatiquement. Mais, il est encore possible de " +"modifier ces valeurs.\n" +"\n" +"Évidemment, si aucune donnée n'a été enregistré sur ce compte, la valeur par " +"défaut est donnée par \n" +"défaut, comme d'habitude, par les données de l'employé; ainsi, ce module est " +"parfaitement compatible\n" +"avec les anciennes configurations.\n" +"\n" +" " #. module: base #: view:ir.model:0 @@ -4322,7 +4715,7 @@ msgstr "Togo" #: field:ir.actions.act_window,res_model:0 #: field:ir.actions.client,res_model:0 msgid "Destination Model" -msgstr "" +msgstr "Modèle de destination" #. module: base #: selection:ir.sequence,implementation:0 @@ -4401,6 +4794,27 @@ msgid "" " payslip interface, but not in the payslip report\n" " " msgstr "" +"\n" +"Règle de gestion de la paie française.\n" +"=============================\n" +"\n" +" * Configuration du module hr_payroll pour la localisation française.\n" +" * Toutes les règles de contributions principales pour les fiches de paie " +"française, pour le personnel cadre et non-cadre.\n" +" * Nouveau rapport de fiche de paie.\n" +"\n" +"Reste à faire :\n" +"-------------------\n" +" * intégration avec le module de gestion des congés pour les indemnités " +"et retenues ;\n" +" * intégration avec le module hr_payroll_account pour l'automatisation " +"des écritures comptables de la fiche de paie ;\n" +" * continuer l'intégration des contributions : seules les contributions " +"principales sont aujourd'hui implémentées ;\n" +" * refaire le rapport avec Webkit ;\n" +" * les \"payslip.line\" avec l'attribut \"appears_in_payslip\" avec une " +"valeur False devrait apparaître dans l'interface mais pas dans le rapport.\n" +" " #. module: base #: model:res.country,name:base.pm @@ -4443,7 +4857,7 @@ msgstr "" #. module: base #: model:res.country,name:base.je msgid "Jersey" -msgstr "" +msgstr "Maillot" #. module: base #: model:ir.model,name:base.model_ir_translation @@ -4625,6 +5039,41 @@ msgid "" ".. _link: http://puc.com.co/normatividad/\n" " " msgstr "" +"\n" +"Charte de comptes pour la Colombie\n" +"============================\n" +"\n" +"Le code source de cette charte de compte est ici_.\n" +"\n" +"Toute la documentation disponible sur ce site web est dans ce module afin " +"d'être sûr qu'à l'ouverture\n" +"qu'à l'ouverture d'OpenERP toute l'information nécessaire à la gestion de la " +"comptabilité en Colombie\n" +"soit présente.\n" +"\n" +"La loi sur laquelle s'appuie ce module est dans cet autre lien_.\n" +"\n" +"La comptabilité colombienne est immédiatement utilisable dans OpenERP après " +"l'installation de ce module.\n" +"\n" +"Nous recommandons d'installer le module account_anglo_saxon afin d'avoir la " +"comptabilisation des coûts\n" +"correctement configurés dans les factures sortantes.\n" +"\n" +"Après installation de ce module, l'assistant de configuration pour la " +"comptabilité est démarré :\n" +" * nous avons un modèle de compte qui peut aider à générer la charte " +"comptable ;\n" +" * dans cet assistant, il vous sera demandé d'entrer le nom de la " +"compagnie,\n" +" le modèle de charte à suivre, le nombre de chiffres à générer, le " +"code de votre compte\n" +" et le compte en banque, la devise utilisée pour créer les journaux.\n" +"\n" +"\n" +".. _ici : http://puc.com.co/\n" +".. _lien : http://puc.com.co/normatividad/\n" +" " #. module: base #: model:ir.module.module,description:base.module_account_bank_statement_extensions @@ -4648,6 +5097,27 @@ msgid "" " and iban account numbers\n" " " msgstr "" +"\n" +"Module qui étend l'objet standard account_bank_statement_line pour le " +"support avancé des services bancaires en ligne.\n" +"=============================================================================" +"=================\n" +"\n" +"Ce module ajoute :\n" +"-------------------------\n" +"\n" +" * date de valeur ;\n" +" * paiements en lots ;\n" +" * traçabilité des changements sur les lignes des relevés de banque ;\n" +" * vues des lignes des relevés de banque ;\n" +" * rapport des soldes des relevés de banque ;\n" +" * amélioration de la performance lors de l'import électronique des " +"relevés de banques\n" +" (par l'attribut de contexte 'ebanking_import') ;\n" +" * name_search sur la table res.partner.bank amélioré pour permettre la " +"recherche sur\n" +" la banque et le numéro de compte IBAN.\n" +" " #. module: base #: selection:ir.module.module,state:0 @@ -4683,7 +5153,7 @@ msgstr "SARL" #. module: base #: model:ir.actions.server,name:base.action_run_ir_action_todo msgid "Run Remaining Action Todo" -msgstr "" +msgstr "Exécuter les actions restantes à faire" #. module: base #: field:res.partner,ean13:0 @@ -4879,7 +5349,7 @@ msgstr "Par défaut" #. module: base #: model:ir.module.module,summary:base.module_lunch msgid "Lunch Order, Meal, Food" -msgstr "" +msgstr "Commande de déjeuner, repas, nourriture" #. module: base #: view:ir.model.fields:0 @@ -4926,6 +5396,26 @@ msgid "" "very handy when used in combination with the module 'share'.\n" " " msgstr "" +"\n" +"Personnalise l'accès à votre base de données OpenERP aux utilisateurs " +"externes par la création de portails.\n" +"=============================================================================" +"=======\n" +"Un portail définit un menu utilisateur spécifique et des droits d'accès pour " +"ses membres.\n" +"Ce menu peut être vu par les membres du portail, les utilisateurs anonymes " +"et n'importe\n" +"quel autre utilisateur qui a accès aux caractéristiques techniques " +"(l'administrateur par exemple).\n" +"Aussi, chaque membre du portail est lié à un partenaire spécifique.\n" +"\n" +"Le module associe aussi les groupes d'utilisateurs aux utilisateurs du " +"portail (ajouter un groupe\n" +"dans un portail l'ajoute automatiquement aux utilisateurs du portail, etc). " +"Cette fonctionnalité\n" +"est très pratique lorsqu'elle est utilisée conjointement avec le module " +"'share'.\n" +" " #. module: base #: field:multi_company.default,expression:0 @@ -5096,6 +5586,9 @@ msgid "" "==========================\n" "\n" msgstr "" +"\n" +"Vue agenda d'OpenERP Web\n" +"\n" #. module: base #: selection:base.language.install,lang:0 @@ -5110,7 +5603,7 @@ msgstr "Type de Séquence" #. module: base #: view:base.language.export:0 msgid "Unicode/UTF-8" -msgstr "" +msgstr "Unicode/UTF-8" #. module: base #: selection:base.language.install,lang:0 @@ -5144,6 +5637,18 @@ msgid "" "then select the test \n" "and print the report from Print button in header area.\n" msgstr "" +"\n" +"Validations sur la comptabilité.\n" +"========================\n" +"Avec ce module vous pouvez vérifier manuellement les consistances et les " +"inconsistances du module comptable à partir du menu\n" +"Suivi d'activité/Comptabilité/Tests comptables.\n" +"\n" +"Vous pouvez écrire une requête afin de créer des tests de consistances et " +"vous obtiendrez le résultat de ce test\n" +"au format PDF lequel sera accessible par le menu Suivi d'activité -> Tests " +"comptables, puis sélectionner le test et\n" +"imprimer le rapport depuis le bouton Imprimer dans la section d'en-tête.\n" #. module: base #: field:ir.module.module,license:0 @@ -5193,6 +5698,23 @@ msgid "" "for\n" "this event.\n" msgstr "" +"\n" +"Créer des inscriptions avec les bons de commande.\n" +"========================================\n" +"\n" +"Ce module vous permet d'automatiser et de lier les créations d'inscription " +"avec\n" +"votre processus de vente et donc, de permettre la facturation de ces " +"inscriptions.\n" +"\n" +"Il définit un nouveau type de produit de type service qui vous permet de " +"choisir\n" +"une catégorie d’événement associée. Lorsque vous créez un bon de commande\n" +"pour ce produit, vous avez la possibilité de choisir un événement de cette " +"catégorie\n" +"et lorsque ce bon de commande est confirmé, l'inscription à cet événement " +"est\n" +"automatiquement créée.\n" #. module: base #: model:ir.module.module,description:base.module_sale_order_dates @@ -5207,6 +5729,14 @@ msgid "" " * Commitment Date\n" " * Effective Date\n" msgstr "" +"\n" +"Ajouter des dates supplémentaires aux bons de commande.\n" +"==============================================\n" +"\n" +"Vous pouvez ajouter les dates suivantes aux bons de commande:\n" +" * date requise ;\n" +" * date d'engagement ;\n" +" * date effective.\n" #. module: base #: field:ir.actions.server,srcmodel_id:0 @@ -5243,7 +5773,7 @@ msgstr "Vue" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "no" -msgstr "" +msgstr "non" #. module: base #: model:ir.module.module,description:base.module_crm_partner_assign @@ -5263,6 +5793,21 @@ msgid "" "You can also use the geolocalization without using the GPS coordinates.\n" " " msgstr "" +"\n" +"Ceci est le module utilisé par OpenERP SA pour rediriger les clients vers " +"ses partenaires, en fonction de la géolocalisation.\n" +"=============================================================================" +"==================\n" +"\n" +"Vous pouvez géolocaliser vos opportunités en utilisant ce module.\n" +"\n" +"Utilise la géolocalisation pour assigner des opportunités à des " +"partenaires.\n" +"Détermine les coordonnées GPS en fonction de l'adresse du partenaire.\n" +"\n" +"Le partenaire le plus approprié peut être assigné.\n" +"La géolocalisation peut être utilisée aussi sans les coordonnées GPS.\n" +" " #. module: base #: view:ir.actions.act_window:0 @@ -5277,7 +5822,7 @@ msgstr "Guinée Équatoriale" #. module: base #: model:ir.module.module,shortdesc:base.module_web_api msgid "OpenERP Web API" -msgstr "" +msgstr "API Web OpenERP" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_rib @@ -5321,6 +5866,49 @@ msgid "" "Accounts in OpenERP: the first with the type 'RIB', the second with the type " "'IBAN'. \n" msgstr "" +"\n" +"Ce module permet aux utilisateurs de spécifier les coordonnées bancaires des " +"partenaires au format RIB (standard français pour les informations des " +"comptes bancaires).\n" +"=============================================================================" +"=======================================================\n" +"\n" +"Le RIB des comptes bancaires peut être entré dans l'onglet \"Comptabilité\" " +"du formulaire Partenaire en spécifiant le type de compte \"RIB\".\n" +"\n" +"Les 4 champs standards du RIB deviennent alors obligatoires :\n" +"-----------------------------------------------------------------------------" +"-------\n" +" * code de banque ;\n" +" * code de succursale ;\n" +" * numéro de compte ;\n" +" * clé RIB.\n" +"\n" +"Par mesure de sécurité, OpenERP vérifiera la clé RIB lorsque celle-ci est " +"sauvée \n" +"et refusera d'enregistrer ces données si la clé est incorrecte. Gardez à " +"l'esprit\n" +"que cette vérification n'est effectuée que lorsque l'utilisateur presse le " +"bouton\n" +"\"Enregistrer\", sur le formulaire du partenaire par exemple. Puisque les " +"comptes\n" +"de banques sont associés à chaque banque, les utilisateurs peuvent saisir " +"les codes RIB\n" +"dans le formulaire des banques - ce qui initialisera automatiquement le code " +"de banque\n" +"du RIB. Pour rendre cela plus facile, ce module permettra aussi de trouver " +"une banque\n" +"à partir de leur code RIB.\n" +"\n" +"Le module base_iban peut être un module additionnel utile à ce module parce " +"que les \n" +"banques française adoptent progressivement le format international IBAN à la " +"place du\n" +"format RIB. Les codes RIB et IBAN pour un compte peuvent être saisis en " +"enregistrant \n" +"deux comptes en banque dans OpenERP : le premier avec le type \"RIB\", le " +"second avec \n" +"le type \"IBAN\". \n" #. module: base #: model:res.country,name:base.ps @@ -5457,6 +6045,24 @@ msgid "" "since it's the same which has been renamed.\n" " " msgstr "" +"\n" +"Ce module permet aux utilisateurs de faire une segmentation parmi les " +"partenaires.\n" +"==================================================================\n" +"\n" +"Il utilise les critères de profils de l'ancien module de segmentation et " +"l'améliore\n" +"grâce au nouveau concept de questionnaire. Vous pouvez maintenant regrouper " +"les\n" +"questions dans un questionnaire et l'utiliser directement sur le " +"partenaire.\n" +"\n" +"Il a aussi été fusionné avec l'ancien outil de segmentation CRM & SRM parce " +"qu'ils se chevauchaient.\n" +"\n" +" ** Note : ** ce module n'est pas compatible avec le module segmentation " +"puisque c'est le même qui a été renommé.\n" +" " #. module: base #: model:res.country,name:base.gt @@ -5489,22 +6095,22 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Portuguese (BR) / Português (BR)" -msgstr "" +msgstr "Portuguais (BR) / Português (BR)" #. module: base #: model:ir.model,name:base.model_ir_needaction_mixin msgid "ir.needaction_mixin" -msgstr "" +msgstr "ir.needaction_mixin" #. module: base #: view:base.language.export:0 msgid "This file was generated using the universal" -msgstr "" +msgstr "Ce fichier a été généré en utilisant le format universel" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "IT Services" -msgstr "" +msgstr "Services TI" #. module: base #: model:ir.module.category,name:base.module_category_specific_industry_applications @@ -5514,12 +6120,12 @@ msgstr "Applications spécifiques à l'industrie" #. module: base #: model:ir.module.module,shortdesc:base.module_google_docs msgid "Google Docs integration" -msgstr "" +msgstr "Integration Google Docs" #. module: base #: help:ir.attachment,res_model:0 msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "L'objet de la base de données auquel cet attachement sera attaché" #. module: base #: code:addons/base/ir/ir_fields.py:327 @@ -5562,6 +6168,35 @@ msgid "" "So, that we can compare the theoretic delay and real delay. \n" " " msgstr "" +"\n" +"Ce module ajoute les champs état, date de début et date de fin sur les " +"lignes d'opération des ordres de fabrication (dans l'onglet \"Ordres de " +"travaux\").\n" +"=============================================================================" +"============================================\n" +"\n" +"États : brouillon, confirmé, terminé, annulé\n" +"Lorsque un ordre de fabrication est confirmé, terminé ou annulé, toutes les " +"lignes sont mises dans l'état correspondant.\n" +"\n" +"Création du menu \"Fabrication > Fabrication > Ordres de travaux\", lequel " +"est une vue sur les lignes \"Ordres de travaux\" des ordres de fabrication.\n" +"\n" +"Ajoute des boutons dans la vue formulaire des ordres de fabrication dans " +"l'onglet Ordre de travaux :\n" +" * démarrer (met l'état à confirmé), définit la date de début ;\n" +" * terminé (met l'état à terminé), définit la date de fin ;\n" +" * met en brouillon (met l'état à brouillon) ;\n" +" * annuler (met l'état à terminé).\n" +"\n" +"Lorsque l'ordre de fabrication devient \"prêt à produire\", les opérations " +"doivent devenir \"confirmées\".\n" +"Lorsque l'ordre de fabrication est terminé, toutes les opérations doivent " +"devenir terminées.\n" +"\n" +"Le champ \"Heures travaillées\" est le délai (date de fin - date de début).\n" +"Ainsi, il est possible de comparer le délai théorique avec le délai réel. \n" +" " #. module: base #: view:res.config.installer:0 @@ -5581,7 +6216,7 @@ msgstr "Lesotho" #. module: base #: view:base.language.export:0 msgid ", or your preferred text editor" -msgstr "" +msgstr ", ou votre éditeur de texte préféré" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign @@ -5653,7 +6288,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML Path" -msgstr "" +msgstr "Chemin XML" #. module: base #: model:res.country,name:base.bj @@ -5714,6 +6349,17 @@ msgid "" " \n" "%(country_code)s: the code of the country" msgstr "" +"Vous pouvez définir ici le format de l'adresse selon l'usage en vigueur dans " +"ce pays.\n" +"\n" +"Vous pouvez utiliser les formats de chaînes de caractère python pour " +"afficher tous les champs d'adresse.\n" +"Par exemple :\n" +"* %(street)s' pour afficher la rue ;\n" +"* %(state_name)s' pour afficher le nom de l'état ;\n" +"* %(state_code)s' pour afficher le code de l'état ;\n" +"* %(country_name)s' pour afficher le nom du pays ;\n" +"* %(country_code)s' pour afficher le code du pays ;" #. module: base #: model:res.country,name:base.mu @@ -5728,7 +6374,7 @@ msgstr "Accès complet" #. module: base #: model:ir.module.module,description:base.module_l10n_pt msgid "Plano de contas SNC para Portugal" -msgstr "" +msgstr "Plan de compte SNC pour le Portugal" #. module: base #: view:ir.actions.act_window:0 @@ -5740,7 +6386,7 @@ msgstr "Sécurité" #. module: base #: selection:base.language.install,lang:0 msgid "Portuguese / Português" -msgstr "" +msgstr "Portuguais / Português" #. module: base #: code:addons/base/ir/ir_model.py:373 @@ -5758,7 +6404,7 @@ msgstr "Seulement si ce compte bancaire appartiennent à votre société" #: code:addons/base/ir/ir_fields.py:337 #, python-format msgid "Unknown sub-field '%s'" -msgstr "" +msgstr "Sous-champ inconnu \"%s\"" #. module: base #: model:res.country,name:base.za @@ -5797,6 +6443,12 @@ msgid "" "Collects web application usage with Google Analytics.\n" " " msgstr "" +"\n" +"Google Analytics.\n" +"=============\n" +"\n" +"Collecte l'utilisation de l'application Web avec Google Analytics.\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_hr_recruitment @@ -5873,6 +6525,10 @@ msgid "" "================\n" "\n" msgstr "" +"\n" +"API Web OpenERP.\n" +"===============\n" +"\n" #. module: base #: selection:res.request,state:0 @@ -5891,7 +6547,7 @@ msgstr "Date" #. module: base #: model:ir.module.module,shortdesc:base.module_event_moodle msgid "Event Moodle" -msgstr "" +msgstr "Événement Moodle" #. module: base #: model:ir.module.module,description:base.module_email_template @@ -5938,16 +6594,59 @@ msgid "" "Email by Openlabs was kept.\n" " " msgstr "" +"\n" +"Modèles de courriel (version simplifiée du module original \"Power Email\" " +"d'Openlabs).\n" +"===================================================================\n" +"\n" +"Vous permet de définir complètement des modèles de courriel relié à tout " +"document OpenERP\n" +"(bons de commande, facture, etc...), incluant émetteur, destinataire, sujet, " +"corps du message \n" +"(format texte et HTML). Vous pouvez aussi attacher automatiquement des " +"fichiers à vos modèles\n" +"ou imprimer puis attacher un rapport.\n" +"\n" +"Pour une utilisation avancée, les modèles peuvent inclure des attributs " +"dynamiques issus des\n" +"documents auxquels ils sont reliés. Par exemple, vous pouvez utiliser le " +"pays d'un partenaire\n" +"lorsque vous lui écrivez, et définir aussi une valeur par défaut au cas où " +"cet attribut ne serait pas\n" +"défini. Chaque modèle contient un assistant intégré pour faciliter " +"l'inclusion de ces valeurs \n" +"dynamiques.\n" +"\n" +"Si vous activez l'option, un assistant de rédaction va aussi apparaître dans " +"la barre latérale\n" +"des documents OpenERP auxquels s'applique ce modèle (par exemple les " +"factures).\n" +"Ceci permet de fournir une façon rapide d'envoyer de nouveaux courriels " +"basés sur ce modèle,\n" +"après avoir revu et corrigé le contenu si nécessaire.\n" +"L'assistant de rédaction va aussi se transformer en outil d'envoi en masse " +"lorsqu'il est appelé\n" +"plusieurs documents en une fois.\n" +"\n" +"Ces modèles de courriel sont aussi au cœur du système de campagne marketing " +"(voir l'application\n" +"\"campagne marketing\"), si vous avez besoin d'automatiser des campagnes " +"plus grandes sur tout\n" +"type de document OpenERP.\n" +"\n" +" **Note technique :** seul le système de modèle du module original " +"\"Power Email\" de Openlabs a été conservé.\n" +" " #. module: base #: model:ir.ui.menu,name:base.menu_partner_category_form msgid "Partner Tags" -msgstr "" +msgstr "Étiquettes du partenaire" #. module: base #: view:res.company:0 msgid "Preview Header/Footer" -msgstr "" +msgstr "Pré-visualisation de l'entête/pied de page" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -5981,12 +6680,12 @@ msgstr "Séparateur décimal" #: code:addons/orm.py:5319 #, python-format msgid "Missing required value for the field '%s'." -msgstr "" +msgstr "Valeur requise manquante pour le champs \"%s\"." #. module: base #: view:ir.rule:0 msgid "Write Access Right" -msgstr "" +msgstr "Droit d'accés en écriture" #. module: base #: model:ir.actions.act_window,help:base.action_res_groups @@ -6021,12 +6720,14 @@ msgstr "Historique" #. module: base #: model:res.country,name:base.im msgid "Isle of Man" -msgstr "" +msgstr "Île de Man" #. module: base #: help:ir.actions.client,res_model:0 msgid "Optional model, mostly used for needactions." msgstr "" +"Modèle optionnel, principalement utilisé pour les fonctionnalités " +"\"need_action\"" #. module: base #: code:addons/base/module/module.py:306 @@ -6042,7 +6743,7 @@ msgstr "Île Bouvet" #. module: base #: field:ir.model.constraint,type:0 msgid "Constraint Type" -msgstr "" +msgstr "Type de containte" #. module: base #: field:res.company,child_ids:0 @@ -6066,6 +6767,14 @@ msgid "" "wizard if the delivery is to be invoiced.\n" " " msgstr "" +"\n" +"Assistant de facturation pour les livraisons.\n" +"=================================\n" +"\n" +"Lorsque vous envoyez ou livrez des biens, ce module démarre automatiquement " +"l'assistant de facturation\n" +"si la livraison doit être facturée.\n" +" " #. module: base #: selection:ir.translation,type:0 @@ -6108,7 +6817,7 @@ msgstr "Lancer l'assistant de configuration" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "" +msgstr "Ordres de fabrication, Nomenclature, Gammes opératoire" #. module: base #: field:ir.attachment,name:0 @@ -6177,16 +6886,71 @@ msgid "" " * Zip return for separated PDF\n" " * Web client WYSIWYG\n" msgstr "" +"\n" +"Ce module ajoute un nouveau moteur de rapport basé sur la librairie Webkit " +"(wkhtmltopdf) pour supporter les rapports écris en HTML et CSS.\n" +"=============================================================================" +"==================================\n" +"\n" +"La structure du module et une partie du code sont inspirées du module " +"report_openoffice.\n" +"\n" +"Ce module permet :\n" +"---------------------------\n" +" * la définition de rapports HTML ;\n" +" * le support des entêtes multiples ;\n" +" * les logos multiples ;\n" +" * les configurations multi-compagnies ;\n" +" * support de HTML et CSS-3 (dans la limite de la versions actuelle de " +"Webkit) ;\n" +" * support de javaScript ;\n" +" * déboguage de HTML brut ;\n" +" * possibilité d'imprimer au format livre ;\n" +" * définition des marges ;\n" +" * définition des tailles de papier.\n" +"\n" +"Des entêtes et logos multiples peuvent être définis par compagnie. Style " +"CSS, entête et pied de page\n" +"sont définis par compagnie.\n" +"\n" +"Pour un exemple, voir aussi le module webkit_report_sample module et cette " +"vidéo:\n" +" http://files.me.com/nbessi/06n92k.mov\n" +"\n" +"Pré-requis et installation :\n" +"-----------------------------------\n" +"Ce module requiert la librairie \"wkthtmltopdf\" pour afficher les documents " +"HTML au format PDF.\n" +"La version 0.9.9 ou ultérieure est nécessaire et peut être trouvée à " +"l'adresse\n" +"http://code.google.com/p/wkhtmltopdf/ pour Linux, Mac OS X (i386) et Windows " +"(32bits).\n" +"\n" +"Après installation de la librairie sur la machine du serveur OpenERP, vous " +"devez définir le chemin\n" +"vers le fichier exécutable \"wkthtmltopdf\" pour chaque compagnie.\n" +"\n" +"Si vous rencontrez des problèmes d'en-tête/pieds de page sous Linux, " +"vérifier d'installer une version\n" +"\"statique\" de la librairie. La librairie par défaut sous Ubuntu est connue " +"pour avoir des problèmes.\n" +"\n" +"\n" +"Reste à faire:\n" +" * activation/désactivation du support JavaScript ;\n" +" * support des formats assemblage et livre ;\n" +" * retour ZIP pour les fichiers PDF séparés ;\n" +" * client web WYSIWYG.\n" #. module: base #: model:res.groups,name:base.group_sale_salesman_all_leads msgid "See all Leads" -msgstr "" +msgstr "Voir toutes les pistes" #. module: base #: model:res.country,name:base.ci msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "Cote d'Ivoire" +msgstr "Côte d'Ivoire" #. module: base #: model:res.country,name:base.kz @@ -6207,7 +6971,7 @@ msgstr "Nom de la ressource" #. module: base #: model:ir.ui.menu,name:base.menu_ir_filters msgid "User-defined Filters" -msgstr "" +msgstr "Filtres personnalisés" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -6281,6 +7045,9 @@ msgid "" "

You should try others search criteria.

\n" " " msgstr "" +"

Aucun module trouvé!

\n" +"

vous devriez essayer d'autres critères de recherche.

\n" +" " #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -6303,7 +7070,7 @@ msgstr "Anglais (UK)" #. module: base #: selection:base.language.install,lang:0 msgid "Japanese / 日本語" -msgstr "Japanais / 日本語" +msgstr "Japonais / 日本語" #. module: base #: model:ir.model,name:base.model_base_language_import @@ -6369,6 +7136,49 @@ msgid "" "only the country code will be validated.\n" " " msgstr "" +"\n" +"Validation du numéro de TVA des partenaires.\n" +"====================================\n" +"\n" +"Après installation de ce module, la valeur entrée dans le champs TVA des " +"partenaires\n" +"sera validé pour tous les pays supportés. Le pays est déduit des 2 lettres " +"du code de\n" +"pays qui préfixent le numéro de TVA. Par exemple \"BE0477472701\" sera " +"validé en \n" +"utilisant les règles belges.\n" +"\n" +"Il y a deux niveaux différents de validation du numéro de TVA :\n" +"-----------------------------------------------------------------------------" +"--------\n" +" * par défaut, une simple vérification hors-ligne est faite en réalisant " +"les règles de validation\n" +" connue pour le pays, en général une simple vérification de numéro. " +"Ceci est rapide et \n" +" et toujours disponible, mais ne détecte pas les numéros qui ne sont " +"peut-être pas \n" +" alloués ou plus valides.\n" +"\n" +" * Lorsque l'option \"Validation du numéro TVA par VIES\" est cochée " +"(dans la configuration \n" +" de la compagnie de l'utilisateur), le numéro de TVA est soumis en-" +"ligne à la base de donnée \n" +" européenne VIES, laquelle vérifiera réellement si le numéro est " +"valide et actuellement \n" +" alloué à une compagnie européenne. Ceci est un peu plus lent qu'une " +"simple vérification \n" +" hors-ligne, requiert une connexion internet et n'est peut-être pas " +"disponible tout le temps. \n" +" Si le service n'est pas disponible ou ne supporte pas le pays demande " +"(cas des pays hors Union \n" +" Européenne), la vérification simple sera réalisé à la place.\n" +"\n" +"Les pays supportés actuellement inclus les pays de l'Union Européenne et " +"quelques pays hors UE\n" +"tels que Chili, Colombie, Mexique, Norvège ou Russie. Pour les pays non-" +"supportés, seul le code\n" +"de pays sera validé.\n" +" " #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view @@ -6416,11 +7226,25 @@ msgid "" " Replica of Democratic Congo, Senegal, Chad, Togo.\n" " " msgstr "" +"\n" +"Ce module implémente la charte de compte pour les pays de l'HOADA.\n" +"=======================================================\n" +"\n" +"Il permet à toute compagnie ou association de gérer sa comptabilité " +"financière.\n" +"\n" +"Les pays qui utilisent OHADA sont les suivants :\n" +"----------------------------------------------------------------\n" +" Benin, Burkina Faso, Cameroun, Centrafrique, Comores, Congo,\n" +" Côte d'Ivoire, Gabon, Guinée, Guinée-Bissau, Guinée Équatoriale, Mali, " +"Niger,\n" +" République Démocratique du Congo, Sénégal, Tchad et Togo.\n" +" " #. module: base #: view:ir.translation:0 msgid "Comments" -msgstr "" +msgstr "Commentaires" #. module: base #: model:res.country,name:base.et @@ -6430,7 +7254,7 @@ msgstr "Ethiopie" #. module: base #: model:ir.module.category,name:base.module_category_authentication msgid "Authentication" -msgstr "" +msgstr "Authentification" #. module: base #: model:res.country,name:base.sj @@ -6526,6 +7350,11 @@ msgid "" "===============================================\n" " " msgstr "" +"\n" +"Permet aux utilisateurs de s'enregistrer et réinitialiser leur mot de " +"passe.\n" +"=========================================================\n" +" " #. module: base #: model:ir.module.category,name:base.module_category_usability @@ -6550,6 +7379,14 @@ msgid "" "membership products (schemes).\n" " " msgstr "" +"\n" +"Ce module configure les modules nécessaires aux associations.\n" +"=================================================\n" +"\n" +"Il installe le profil pour les associations leur permettant de gérer les " +"événements, enregistrements, \n" +"adhésions, produits d'adhésion (programmes).\n" +" " #. module: base #: model:ir.ui.menu,name:base.menu_base_config @@ -6582,6 +7419,20 @@ msgid "" "documentation at http://doc.openerp.com.\n" " " msgstr "" +"\n" +"Fournit une plateforme EDI que les autres applications peuvent utiliser.\n" +"=======================================================\n" +"\n" +"OpenERP spécifie un format générique EDI pour l'échange de document " +"d'affaire entre\n" +"différents systèmes et fournit les mécanismes génériques pour les importer " +"et les\n" +"exporter.\n" +"\n" +"Plus de détails au sujet du format EDI d'OpenERP peut être trouvé dans la " +"documentation\n" +"technique d'OpenERP à l'adresse http://doc.openerp.com.\n" +" " #. module: base #: code:addons/base/ir/workflow/workflow.py:99 @@ -6601,6 +7452,9 @@ msgid "" "deleting it (if you delete a native record rule, it may be re-created when " "you reload the module." msgstr "" +"Si vous désactivez le champs \"Actif\", cela désactivera la règle " +"d'enregistrement sans la supprimer (si vous supprimez une règle native " +"d'enregistrement, elle peut être recrée en rechargeant le module)." #. module: base #: selection:base.language.install,lang:0 @@ -6617,6 +7471,12 @@ msgid "" "Allows users to create custom dashboard.\n" " " msgstr "" +"\n" +"Permet aux utilisateurs de créer un tableau de bord personnalisé.\n" +"====================================================\n" +"\n" +"Permet aux utilisateurs de créer un tableau de bord personnalisé.\n" +" " #. module: base #: model:ir.actions.act_window,name:base.ir_access_act @@ -6714,7 +7574,7 @@ msgstr "" #. module: base #: field:res.partner,is_company:0 msgid "Is a Company" -msgstr "" +msgstr "Est une compagnie" #. module: base #: selection:ir.cron,interval_type:0 @@ -6758,18 +7618,23 @@ msgid "" "========================\n" "\n" msgstr "" +"\n" +"Vue kanban pour le client Web OpenERP.\n" +"================================\n" +"\n" #. module: base #: code:addons/base/ir/ir_fields.py:182 #, python-format msgid "'%s' does not seem to be a number for field '%%(field)s'" -msgstr "" +msgstr "'%s' ne semble pas être un nombre pour le champs '%%(field)s'" #. module: base #: help:res.country.state,name:0 msgid "" "Administrative divisions of a country. E.g. Fed. State, Departement, Canton" msgstr "" +"Divisions administratives d'un pays. Par exemple État, Département, Canton" #. module: base #: view:res.partner.bank:0 @@ -6779,7 +7644,7 @@ msgstr "Mes banques" #. module: base #: sql_constraint:ir.filters:0 msgid "Filter names must be unique" -msgstr "" +msgstr "Les noms de filtre doivent être uniques" #. module: base #: help:multi_company.default,object_id:0 @@ -6789,12 +7654,12 @@ msgstr "Objet affecté par cette règle" #. module: base #: selection:ir.actions.act_window,target:0 msgid "Inline View" -msgstr "" +msgstr "Vue intégrée" #. module: base #: field:ir.filters,is_default:0 msgid "Default filter" -msgstr "" +msgstr "Filtre par défaut" #. module: base #: report:ir.module.reference:0 @@ -6907,6 +7772,93 @@ msgid "" "If required, you can manually adjust the descriptions via the CODA " "configuration menu.\n" msgstr "" +"\n" +"Module pour importer les relevés de banque CODA.\n" +"=========================================\n" +"\n" +"Support des fichiers plats CODA v2 des comptes de banque belges.\n" +"-----------------------------------------------------------------------------" +"---------------\n" +" * Support de CODA v1.\n" +" * Support de CODA v2.2.\n" +" * Support des devises étrangères.\n" +" * Support de tous les types d'enregistrements (0, 1, 2, 3, 4, 8,9).\n" +" * Analyse et journalisation de tous les codes de transactions et formats " +"structurés de communications.\n" +" * Assignation automatique aux journaux financiers via les paramètres de " +"configuration CODA.\n" +" * Support des journaux multiples par numéro de compte bancaire.\n" +" * Support des relevés multiples depuis les différents comptes de banque " +"dans un fichier CODA unique.\n" +" * Support de l'\"analyse seule\" des comptes de banque CODA (définie " +"comme type=\"info\" dans la \n" +" configuration des comptes de banque CODA).\n" +" * Analyse CODA multi-langue, analyse des données de configuration " +"fournie pour EN, NL et FR.\n" +"\n" +"Les fichiers informatiques CODA sont analysés puis enregistrés dans un " +"format lisible dans les relevés de\n" +"banque CODA. Aussi, les relevés de banque sont générés avec le sous-ensemble " +"des informations CODA\n" +"(seulement les lignes de transaction requises pour la création des " +"enregistrements de la comptabilité financière).\n" +"Le relevé de banque CODA est un objet en lecture seule, et reste donc une " +"représentation fiable du fichier\n" +"CODA original, alors que le relevé de banque sera modifié comme requis par " +"le processus comptable.\n" +"\n" +"Les comptes bancaires CODA configuré comme type \"info\" généreront " +"uniquement les relevés de banque CODA.\n" +"\n" +"La suppression d'un des objets du processus CODA entraînera la suppression " +"des objets associés.\n" +"La suppression d'un fichier CODA contenant plusieurs relevés de banque " +"supprimera aussi les relevés associés.\n" +"\n" +"La logique de réconciliation suivante a été implémentée dans le traitement " +"CODA:\n" +"-----------------------------------------------------------------------------" +"-----------------------------------\n" +" 1) Le numéro du compte bancaire de la Compagnie du relevé CODA est " +"comparé au champ Numéro de\n" +" compte bancaire dans la configuration du compte bancaire CODA de la " +"compagnie (les comptes\n" +" bancaires de type \"info\" sont ignorés). Dans ce cas, une " +"transaction de \"transfert interne\" est\n" +" générée en utilisant le champ \"Compte de Transfert Interne\" de " +"l'assistant d'importation de fichier\n" +" CODA.\n" +" 2) Lors de la seconde étape, le champs \"Communication structurée\" de " +"la ligne de transaction est\n" +" comparé au champ de références des factures entrantes et sortantes " +"(les types de communication\n" +" structurées belges sont supportées).\n" +" 3) Lorsque l'étape précédente ne trouve pas de correspondance, la " +"transaction de contrepartie est\n" +" trouvée par le numéro de compte bancaire configuré dans les " +"enregistrements OpenERP des clients et\n" +" fournisseurs.\n" +" 4) Au cas où les étapes précédentes échouent, la transaction est générée " +"en utilisant le champ \"Compte\n" +" par Défaut pour les mouvements non-reconnus\" de l'assistant " +"d'importation de fichier CODA afin de\n" +" de permettre ultérieurement un traitement manuel.\n" +"\n" +"Au lieu d'un ajustement manuel des relevés de banque générés, vous pouvez " +"aussi ré-importer le fichier\n" +"CODA après avoir mis à jour la base OpenERP avec les informations qui " +"étaient manquantes et permettre\n" +"la réconciliation automatique.\n" +"\n" +"Remarque sur le support de CODA v1 :\n" +"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" +"Dans certains cas, un code de transaction, une catégorie de transaction ou " +"un code de communication\n" +"structurée a reçu une description nouvelle ou plus claire dans CODA v2. La " +"description fournie par les tables\n" +"de configuration CODA est basée sur les spécifications de CODA v2.2.\n" +"Si nécessaire, vous pouvez manuellement ajuster les descriptions par le menu " +"de configuration CODA.\n" #. module: base #: view:ir.attachment:0 @@ -6923,7 +7875,7 @@ msgstr "Malaisie" #: code:addons/base/ir/ir_sequence.py:130 #, python-format msgid "Increment number must not be zero." -msgstr "" +msgstr "Le numéro d'incrément ne doit pas être zéro." #. module: base #: model:ir.module.module,shortdesc:base.module_account_cancel @@ -6933,7 +7885,7 @@ msgstr "Annuler des écritures" #. module: base #: field:res.partner,tz_offset:0 msgid "Timezone offset" -msgstr "" +msgstr "Décalage horaire" #. module: base #: model:ir.module.module,description:base.module_marketing_campaign @@ -6994,6 +7946,13 @@ msgid "" "Price and Cost Price.\n" " " msgstr "" +"\n" +"Ce module ajoute la \"Marge\" sur les bons de commandes.\n" +"=============================================\n" +"\n" +"Il donne la profitabilité en calculant la différence du prix unitaire et du " +"prix coûtant.\n" +" " #. module: base #: selection:ir.actions.todo,type:0 @@ -7022,7 +7981,7 @@ msgstr "Cap-Vert" #. module: base #: model:res.groups,comment:base.group_sale_salesman msgid "the user will have access to his own data in the sales application." -msgstr "" +msgstr "l'utilisateur aura accès à ses propres données dans le CRM." #. module: base #: model:res.groups,comment:base.group_user @@ -7030,6 +7989,9 @@ msgid "" "the user will be able to manage his own human resources stuff (leave " "request, timesheets, ...), if he is linked to an employee in the system." msgstr "" +"l'utilisateur sera capable de gérer ses propres données de ressources " +"humaines (demandes d'absence, feuille de temps...), si il est lié à un " +"employé dans le système." #. module: base #: code:addons/orm.py:2247 @@ -7166,7 +8128,7 @@ msgstr "Année en cours sans les siècles : %(y)s" #: view:ir.config_parameter:0 #: model:ir.ui.menu,name:base.ir_config_menu msgid "System Parameters" -msgstr "" +msgstr "Paramètres systèmes" #. module: base #: help:ir.actions.client,tag:0 @@ -7226,7 +8188,7 @@ msgstr "Rapport de l' audit" #: code:addons/base/ir/ir_fields.py:264 #, python-format msgid "Value '%s' not found in selection field '%%(field)s'" -msgstr "" +msgstr "La valeur '%s' n'est pas dans le champ de sélection '%%(field)s'" #. module: base #: model:res.country,name:base.sd @@ -7318,7 +8280,7 @@ msgstr "Israël" #: code:addons/base/res/res_config.py:444 #, python-format msgid "Cannot duplicate configuration!" -msgstr "" +msgstr "La configuration ne peut pas être dupliquée!" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_syscohada @@ -7333,7 +8295,7 @@ msgstr "Parfois appelé BIC ou Swift" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in msgid "Indian - Accounting" -msgstr "" +msgstr "Inde - Comptabilité" #. module: base #: field:res.lang,time_format:0 @@ -7343,12 +8305,12 @@ msgstr "Format de l'heure" #. module: base #: field:res.company,rml_header3:0 msgid "RML Internal Header for Landscape Reports" -msgstr "" +msgstr "En-tête RML interne pour les rapports au format paysage" #. module: base #: model:res.groups,name:base.group_partner_manager msgid "Contact Creation" -msgstr "" +msgstr "Création du contact" #. module: base #: view:ir.module.module:0 @@ -7399,11 +8361,17 @@ msgid "" "This module provides the core of the OpenERP Web Client.\n" " " msgstr "" +"\n" +"Module cœur du client Web OpenERP.\n" +"==============================\n" +"\n" +"Ce module fourni le cœur du client Web OpenERP.\n" +" " #. module: base #: view:ir.sequence:0 msgid "Week of the Year: %(woy)s" -msgstr "" +msgstr "Semaine de l'année : %(woy)s" #. module: base #: field:res.users,id:0 @@ -7445,7 +8413,7 @@ msgstr "Royaume-Uni" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pa msgid "Panama Localization Chart Account" -msgstr "" +msgstr "Panama - Plan de compte localisé" #. module: base #: help:res.partner.category,active:0 @@ -7473,7 +8441,7 @@ msgstr "Formes juridiques" #: code:addons/base/ir/ir_fields.py:227 #, python-format msgid "Use the format '%s'" -msgstr "" +msgstr "Utilisez le format '%s'" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -7505,12 +8473,12 @@ msgstr "Tâches" #: code:addons/base/res/res_bank.py:195 #, python-format msgid "Invalid Bank Account Type Name format." -msgstr "" +msgstr "Format de nom invalide pour le type de compte bancaire." #. module: base #: view:ir.filters:0 msgid "Filters visible only for one user" -msgstr "" +msgstr "Filtres visibles seulement pour un utilisateur" #. module: base #: model:ir.model,name:base.model_ir_attachment @@ -7575,7 +8543,7 @@ msgstr "" #. module: base #: model:res.groups,comment:base.group_hr_user msgid "the user will be able to approve document created by employees." -msgstr "" +msgstr "l'utilisateur pourra approuver les documents créés par les employés" #. module: base #: field:ir.ui.menu,needaction_enabled:0 @@ -7634,7 +8602,7 @@ msgstr "Fichier de module importé avec succès !" #: view:ir.model.constraint:0 #: model:ir.ui.menu,name:base.ir_model_constraint_menu msgid "Model Constraints" -msgstr "" +msgstr "Contraintes du modèle" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -7712,6 +8680,17 @@ msgid "" "their status quickly as they evolve.\n" " " msgstr "" +"\n" +"Suivi des incidents/gestion des bogues pour les projets\n" +"===========================================\n" +"Cette application vous permet de gérer les incidents que vous pourriez " +"rencontrer dans un projet comme les bogues dans le système, les plaintes " +"client ou les bris matériels.\n" +"\n" +"Ceci permet au gestionnaire de rapidement vérifier les incidents, les " +"assigner et de décider rapidement leur statut au fur et à mesure qu'ils " +"évoluent.\n" +" " #. module: base #: field:ir.model.access,perm_create:0 @@ -7738,6 +8717,22 @@ msgid "" "up a management by affair.\n" " " msgstr "" +"\n" +"Ce module met en œuvre un système de feuilles de temps.\n" +"===============================================\n" +"\n" +"Chaque employé peut saisir et suivre leur temps passé sur les différents " +"projets.\n" +"Un projet est un compte analytique et le temps passé sur un projet génère un " +"coût\n" +"sur ce compte analytique.\n" +"\n" +"Beaucoup de rapports sur le temps et le suivi des employés sont fournis.\n" +"\n" +"Il est complètement intégré au module gestion des coûts (cost_accounting). " +"Il vous\n" +"permet de mettre en place une gestion par affaire.\n" +" " #. module: base #: field:res.bank,state:0 @@ -7754,7 +8749,7 @@ msgstr "Copie de" #. module: base #: field:ir.model.data,display_name:0 msgid "Record Name" -msgstr "" +msgstr "Nom d'enregistrement" #. module: base #: model:ir.model,name:base.model_ir_actions_client @@ -10028,7 +11023,7 @@ msgstr "Réf. partenaire" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_expense msgid "Expense Management" -msgstr "" +msgstr "Gestion des dépenses" #. module: base #: field:ir.attachment,create_date:0 diff --git a/openerp/addons/base/i18n/gl.po b/openerp/addons/base/i18n/gl.po index d8c0ab9bf62..145a6592a3a 100644 --- a/openerp/addons/base/i18n/gl.po +++ b/openerp/addons/base/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/gu.po b/openerp/addons/base/i18n/gu.po index b80268125fb..46b401cb150 100644 --- a/openerp/addons/base/i18n/gu.po +++ b/openerp/addons/base/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/he.po b/openerp/addons/base/i18n/he.po index 9a8b1d9979e..13f28740def 100644 --- a/openerp/addons/base/i18n/he.po +++ b/openerp/addons/base/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -34,7 +34,7 @@ msgstr "סנט הלנה" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "" +msgstr "תצורה אחרת" #. module: base #: selection:ir.property,type:0 @@ -68,12 +68,12 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "הונגריה /Magyar" +msgstr "הונגרית /Magyar" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PY) / Español (PY)" -msgstr "" +msgstr "Spanish (PY) / ספרדית (PY)" #. module: base #: model:ir.module.category,description:base.module_category_project_management @@ -85,7 +85,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_point_of_sale msgid "Touchscreen Interface for Shops" -msgstr "" +msgstr "ממשק מסך מגע לחנויות" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll @@ -101,7 +101,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "צפיה בנוצרו" +msgstr "צפיות שנוצרו" #. module: base #: model:ir.module.module,description:base.module_product_manufacturer @@ -118,6 +118,17 @@ msgid "" " * Product Attributes\n" " " msgstr "" +"\n" +"רכיב להוספת יצרנים ותכונות למוצר.\n" +"====================================================================\n" +"\n" +"ניתן להגדיר עבור מוצר:\n" +"-----------------------------------------------\n" +" * יצרן\n" +" * שם מוצר אצל היצרן\n" +" * קוד מוצר אצל היצרן\n" +" * תכונות מוצר\n" +" " #. module: base #: field:ir.actions.client,params:0 @@ -148,12 +159,12 @@ msgstr "" #. module: base #: field:res.partner,ref:0 msgid "Reference" -msgstr "" +msgstr "הפניה" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_invoice_bba msgid "Belgium - Structured Communication" -msgstr "" +msgstr "בלגיה - תקשורת מובנית" #. module: base #: field:ir.actions.act_window,target:0 @@ -191,7 +202,7 @@ msgstr "" #: code:addons/base/res/res_users.py:473 #, python-format msgid "Warning!" -msgstr "" +msgstr "אזהרה!" #. module: base #: code:addons/base/ir/ir_model.py:406 @@ -221,23 +232,23 @@ msgstr "" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "Swaziland" +msgstr "שוויץ" #. module: base #: code:addons/orm.py:4486 #, python-format msgid "created." -msgstr "" +msgstr "נוצר." #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL Path" -msgstr "" +msgstr "נתיב XSL" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr msgid "Turkey - Accounting" -msgstr "" +msgstr "טורקיה - חשבונאות" #. module: base #: field:ir.sequence,number_increment:0 @@ -274,7 +285,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_sale msgid "Sales Management" -msgstr "" +msgstr "ניהול מכירות" #. module: base #: help:res.partner,user_id:0 @@ -291,17 +302,17 @@ msgstr "" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "מספר המודולים" +msgstr "מספר רכיבים" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "" +msgstr "חברה לאחסון פעולה נוכחית" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "מידה מקס." +msgstr "גודל מרבי" #. module: base #: help:ir.actions.act_window,res_id:0 @@ -324,7 +335,7 @@ msgstr "" #. module: base #: sql_constraint:res.lang:0 msgid "The name of the language must be unique !" -msgstr "" +msgstr "על שם השפה להיות ייחודי !" #. module: base #: selection:res.request,state:0 @@ -334,7 +345,7 @@ msgstr "פעיל" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "שם מומחה" +msgstr "שם האשף" #. module: base #: model:ir.module.module,description:base.module_knowledge @@ -352,7 +363,7 @@ msgstr "" #. module: base #: model:ir.module.category,name:base.module_category_customer_relationship_management msgid "Customer Relationship Management" -msgstr "" +msgstr "ניהול קשרי לקוחות" #. module: base #: model:ir.module.module,description:base.module_delivery @@ -379,7 +390,7 @@ msgstr "" #: code:addons/orm.py:2649 #, python-format msgid "Invalid group_by" -msgstr "" +msgstr "group_by לא חוקי" #. module: base #: field:ir.module.category,child_ids:0 @@ -396,18 +407,18 @@ msgstr "מגבלת אשראי" #: field:ir.model.data,date_update:0 #: field:ir.model.relation,date_update:0 msgid "Update Date" -msgstr "עדכן נתונים" +msgstr "עידכון תאריך" #. module: base #: model:ir.module.module,shortdesc:base.module_base_action_rule msgid "Automated Action Rules" -msgstr "" +msgstr "חוקי פעולה אוטומטיים" #. module: base #: view:ir.attachment:0 #: field:ir.attachment,create_uid:0 msgid "Owner" -msgstr "" +msgstr "בעלים" #. module: base #: view:ir.actions.act_window:0 @@ -417,12 +428,12 @@ msgstr "אובייקט מקור" #. module: base #: model:res.partner.bank.type,format_layout:base.bank_normal msgid "%(bank_name)s: %(acc_number)s" -msgstr "" +msgstr "%(bank_name)s: %(acc_number)s" #. module: base #: view:ir.actions.todo:0 msgid "Config Wizard Steps" -msgstr "הגדר צעדי האשף" +msgstr "הגדרת צעדי האשף" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc @@ -449,7 +460,7 @@ msgstr "" msgid "" "One of the records you are trying to modify has already been deleted " "(Document type: %s)." -msgstr "" +msgstr "אחת הרשומות שברצונך לערוך נמחקה (Document type: %s)." #. module: base #: help:ir.actions.act_window,views:0 @@ -468,7 +479,7 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Create Access Right" -msgstr "" +msgstr "יצירת הרשאות גישה" #. module: base #: model:res.country,name:base.tv @@ -478,7 +489,7 @@ msgstr "Tuvalu" #. module: base #: field:ir.actions.configuration.wizard,note:0 msgid "Next Wizard" -msgstr "אשף הבא" +msgstr "לאשף הבא" #. module: base #: field:res.lang,date_format:0 @@ -488,7 +499,7 @@ msgstr "מבנה תאריך" #. module: base #: model:ir.module.module,shortdesc:base.module_base_report_designer msgid "OpenOffice Report Designer" -msgstr "" +msgstr "מעצב הדוחות של OpenOffice" #. module: base #: model:res.country,name:base.an @@ -502,8 +513,8 @@ msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" -"אינך יכול להסיר את המשתמש ADMIN כיוון שמשמש ליצירת מקורות ע\"י openERP " -"(עדכונים,התקנת מודולים...)" +"לא ניתן להסיר את המשתמש ADMIN מכיוון שנעשה בו שימוש פנימי עבור משאבים ש-" +"OpenERP יוצרת (עדכונים,התקנת מודולים...)" #. module: base #: view:workflow.transition:0 @@ -513,12 +524,12 @@ msgstr "" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "French Guyana" +msgstr "הגויאנה הצרפתית" #. module: base #: model:ir.module.module,summary:base.module_hr msgid "Jobs, Departments, Employees Details" -msgstr "" +msgstr "עבודות, מחלקות, פרטי עובדים" #. module: base #: model:ir.module.module,description:base.module_analytic @@ -538,7 +549,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_idea msgid "Ideas" -msgstr "" +msgstr "רעיונות" #. module: base #: model:ir.module.module,description:base.module_event @@ -569,7 +580,7 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" -"אם תסמן זאת, בפעם השניה בה המשתמש ידפיס עם שם מצורף זהה,זה יחזיר את הדווח " +"אם תסמן זאת, בפעם השניה בה המשתמש ידפיס עם שם מצורף זהה, זה יחזיר את הדוח " "הקודם." #. module: base @@ -592,6 +603,21 @@ msgid "" " A + B + C -> D + E\n" " " msgstr "" +"\n" +"רכיב זה מאפשר להפיק מספר מוצרים מהזמנת ייצור אחת.\n" +"=============================================================================" +"\n" +"\n" +"ניתן להגדיר תוצרי לוואי (by-products) בחשבון החומרים\n" +"\n" +"בלי רכיב זה:\n" +"--------------------\n" +" A + B + C -> D\n" +"\n" +"עם רכיב זה:\n" +"-----------------\n" +" A + B + C -> D + E\n" +" " #. module: base #: selection:base.language.install,lang:0 @@ -601,7 +627,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet_invoice msgid "Invoice on Timesheets" -msgstr "" +msgstr "חשבונית על גליון שעות" #. module: base #: view:base.module.upgrade:0 @@ -635,8 +661,8 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" -"ISO קוד מדינה בשני תווים.\n" -"תוכל להשתמש בשדה זה לחיפוש מהיר." +"צופן ה-ISO בשתי אותיות.\n" +"ניתן להשתמש בשדה זה לחיפוש מהיר." #. module: base #: model:res.country,name:base.pw @@ -651,12 +677,12 @@ msgstr "מכירות ורכש" #. module: base #: view:ir.translation:0 msgid "Untranslated" -msgstr "" +msgstr "לא מתורגם" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "" +msgstr "שרת דואר יוצא" #. module: base #: help:ir.actions.act_window,context:0 diff --git a/openerp/addons/base/i18n/hi.po b/openerp/addons/base/i18n/hi.po index 052a493acd7..f6f8f627702 100644 --- a/openerp/addons/base/i18n/hi.po +++ b/openerp/addons/base/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/hr.po b/openerp/addons/base/i18n/hr.po index ff6caf1ac5d..1b542801bbe 100644 --- a/openerp/addons/base/i18n/hr.po +++ b/openerp/addons/base/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" "Language: hr\n" #. module: base diff --git a/openerp/addons/base/i18n/hu.po b/openerp/addons/base/i18n/hu.po index a86da544271..573ed26a0f3 100644 --- a/openerp/addons/base/i18n/hu.po +++ b/openerp/addons/base/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -3274,7 +3274,7 @@ msgstr "" "==============================================\n" " * Felhasználó azonosítás\n" " * Dokumentum indexálás:- .pptx és .docx fájlok nem támogatottak Windows " -"oprendszeren.\n" +"operációs rendszeren.\n" " * Dashboard / Műszerfal a dokumentumokhoz mely magában foglalja:\n" " * Új fájl (lista)\n" " * Fájlok a forrás típusa szerint (grafikon)\n" @@ -3334,7 +3334,7 @@ msgstr "" "==================================\n" "\n" "Ez az alkalmazás lehetővé teszi a célul kitűzött eladások eredményes és " -"hatékony kezelését figyelembevéve a megrendelések és annak régebbi " +"hatékony kezelését figyelembe véve a megrendelések és annak régebbi " "történetének nyomon követését.\n" "\n" "Kezeli a teljes eladási munkafolyamatot:\n" @@ -3351,7 +3351,7 @@ msgstr "" "* Incoterms: International Commercial terms /Nemzetközi szállítási " "feltételek pl.:EXW/\n" "\n" -"Használható rugalmas számlázáasi módszer:\n" +"Használható rugalmas számlázási módszer:\n" "\n" "* *Igényléskori*: Ha szükséges a számlák kézzel létrehozhatók a megrendelés " "alapján\n" @@ -3361,7 +3361,7 @@ msgstr "" "egyenlíteni a szállítás előtt\n" "\n" "\n" -"A kereskedő vezérklő műszerfala a következőket tartalmazza\n" +"A kereskedő vezérlő műszerfala a következőket tartalmazza\n" "------------------------------------------------\n" "* Az árajánlataim\n" "* Havi forgótőke (Grafikon)\n" @@ -3555,7 +3555,7 @@ msgstr "" "automatikusan tud hozzárendelni emlékeztetőt.\n" "\n" "OpenERP alkatrész kezelés szabálya megengedi a rendszernek, hogy sablonból " -"rendelést generáljon autómatikusan, vagy beállíthatja, hogy az egészet a " +"rendelést generáljon automatikusan, vagy beállíthatja, hogy az egészet a " "termelés tényleges igénynek megfelelően folyamat vezérléssel hajtsa végre.\n" "\n" "Dashboard / Műszerfal a beszerzés kezelés kimutatásához ezt tartalmazza:\n" @@ -4457,7 +4457,7 @@ msgstr "" "Támogatja a raktározott termékek, fogyóeszközök vagy szolgáltatások " "integrációját. Szolgáltatások teljesen integráltak a szoftver teljes " "egységével. Például, beállíthat egy alvállalkozói szolgáltatást a " -"darabjegyzékben az autómatikus anyag beszerzéshez egy összeszerelni kívánt " +"darabjegyzékben az automatikus anyag beszerzéshez egy összeszerelni kívánt " "termék megrendelésénél.\n" "\n" "Fő tulajdonságok\n" @@ -4465,8 +4465,8 @@ msgstr "" "* Raktár létrehozás/Megrendelés létrehozás\n" "* Több szintű darabjegyzés, nincs határ\n" "* Több szintű útvonal, nincs határ\n" -"* Útvonal és munka központ integrálva az analitikai könyvitellel\n" -"* Periódikus ütemező számítás \n" +"* Útvonal és munka központ integrálva az analitikai könyvvitellel\n" +"* Periodikus ütemező számítás \n" "* Lehetővé teszi a darabjegyzékek böngészését komplett szerkezetben ami " "magában foglalja az al- és a fantom darabjegyzékeket\n" "\n" @@ -18709,7 +18709,7 @@ msgid "" " " msgstr "" "\n" -"Több-raktár kezelése, többes- és struktúrált/rendezett raktár helyek\n" +"Több-raktár kezelése, többes- és strukturált/rendezett raktár helyek\n" "==============================================================\n" "\n" "A raktár és raktárkészlet kezelés a hierarchikus elhelyezkedési szerkezeten " @@ -18721,7 +18721,7 @@ msgstr "" "lehetőségével a nyomon követhetőség biztosításához, mely követelmény nagyobb " "vállalkozásoknál.\n" "\n" -"Fó jellemzők\n" +"Fő jellemzők\n" "------------\n" "* A mozgások előzményei és tervezése,\n" "* Raktár értékelés (alap vagy átlag ár, ...)\n" diff --git a/openerp/addons/base/i18n/hy.po b/openerp/addons/base/i18n/hy.po index 90896edda0e..6ead160f921 100644 --- a/openerp/addons/base/i18n/hy.po +++ b/openerp/addons/base/i18n/hy.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/id.po b/openerp/addons/base/i18n/id.po index eedc707168b..bf958dd0679 100644 --- a/openerp/addons/base/i18n/id.po +++ b/openerp/addons/base/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/is.po b/openerp/addons/base/i18n/is.po index 385348a2c57..54ef21a788a 100644 --- a/openerp/addons/base/i18n/is.po +++ b/openerp/addons/base/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:03+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/it.po b/openerp/addons/base/i18n/it.po index f66b65898e2..298f1c20132 100644 --- a/openerp/addons/base/i18n/it.po +++ b/openerp/addons/base/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:15+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ja.po b/openerp/addons/base/i18n/ja.po index 62f15059317..523379d4273 100644 --- a/openerp/addons/base/i18n/ja.po +++ b/openerp/addons/base/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ka.po b/openerp/addons/base/i18n/ka.po index 498e979216b..ff9a36dbc03 100644 --- a/openerp/addons/base/i18n/ka.po +++ b/openerp/addons/base/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:14+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/kk.po b/openerp/addons/base/i18n/kk.po index 69bff05417e..158eb75b473 100644 --- a/openerp/addons/base/i18n/kk.po +++ b/openerp/addons/base/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ko.po b/openerp/addons/base/i18n/ko.po index 71801df376c..acf95acff74 100644 --- a/openerp/addons/base/i18n/ko.po +++ b/openerp/addons/base/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -941,7 +941,7 @@ msgstr "알바니아어 / Shqip" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "영업기회" +msgstr "기회" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -2677,7 +2677,7 @@ msgstr "바닥글 설정" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_crm msgid "Opportunity to Quotation" -msgstr "견적 제공 기회" +msgstr "견적 기회" #. module: base #: model:ir.module.module,description:base.module_sale_analytic_plans @@ -4812,7 +4812,7 @@ msgstr "적도 기니" #. module: base #: model:ir.module.module,shortdesc:base.module_web_api msgid "OpenERP Web API" -msgstr "OpenERP 웹 API" +msgstr "OpenERP Web API" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_rib @@ -5409,7 +5409,7 @@ msgid "" "\n" msgstr "" "\n" -"Openerp 웹 API.\n" +"Openerp Web API.\n" "================\n" "\n" @@ -5716,7 +5716,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_sale_salesman_all_leads msgid "See all Leads" -msgstr "모든 잠재고객 보기" +msgstr "모든 리드 보기" #. module: base #: model:res.country,name:base.ci @@ -6292,7 +6292,7 @@ msgid "" "\n" msgstr "" "\n" -"OpenERP 웹 간판 화면.\n" +"OpenERP Web 간판 화면.\n" "========================\n" "\n" @@ -6921,10 +6921,10 @@ msgid "" " " msgstr "" "\n" -"OpenERP 웹 핵심 모듈.\n" +"OpenERP Web 핵심 모듈.\n" "========================\n" "\n" -"이 모듈은 OpenERP 웹 클라이언트의 핵심을 제공합니다.\n" +"이 모듈은 OpenERP Web Client의 핵심을 제공합니다.\n" " " #. module: base @@ -7556,7 +7556,7 @@ msgstr "정수" msgid "" "The path to the main report file (depending on Report Type) or NULL if the " "content is in another data field" -msgstr "주 보고서 파일의 경로 (보고서 유형에 따름) 또는 컨텐트가 다른 데이터 필드에 위치할 경우 NULL" +msgstr "주 보고서 파일의 경로 (보고서 유형에 따름) 또는 내용이 다른 데이터 필드에 위치할 경우 NULL" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 @@ -9288,7 +9288,7 @@ msgid "" "\n" msgstr "" "\n" -"OpenERP 웹 간트 도표 화면.\n" +"OpenERP Web 간트 도표 화면.\n" "=============================\n" "\n" @@ -9359,8 +9359,8 @@ msgid "" "instead.If SSL is needed, an upgrade to Python 2.6 on the server-side should " "do the trick." msgstr "" -"OpenERP 서버가 SMTP-over-SSL을 지원하지 않습니다. STARTTLS를 대신 사용할 수 있습니다. SSL이 필요할 경우, " -"서버 측을 파이썬 2.6으로 업그레이드 하면 해결될 것입니다." +"OpenERP Server가 SMTP-over-SSL을 지원하지 않습니다. STARTTLS를 대신 사용할 수 있습니다. SSL이 필요할 " +"경우, 서버 측을 파이썬 2.6으로 업그레이드 하면 해결될 것입니다." #. module: base #: model:res.country,name:base.ua @@ -10606,7 +10606,7 @@ msgstr "이탈리아" #. module: base #: model:res.groups,name:base.group_sale_salesman msgid "See Own Leads" -msgstr "자신의 잠재고객 보기" +msgstr "내 리드 보기" #. module: base #: view:ir.actions.todo:0 @@ -10739,7 +10739,7 @@ msgstr "이것이 오류라고 생각되는 경우, 시스템 관리자에게 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "일정 적용 업그레이드" +msgstr "예정된 업그레이드 적용" #. module: base #: view:workflow.activity:0 @@ -11195,7 +11195,7 @@ msgstr "계단식" #. module: base #: model:ir.module.module,summary:base.module_crm msgid "Leads, Opportunities, Phone Calls" -msgstr "잠재고객, 영업기회, 통화내역" +msgstr "리드, 기회, 통화" #. module: base #: model:ir.module.category,description:base.module_category_knowledge_management @@ -14185,7 +14185,7 @@ msgstr "송장 발송 및 지불 추적" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead msgid "Leads & Opportunities" -msgstr "잠재 고객 & 매출 기회" +msgstr "리드 & 기회" #. module: base #: model:res.country,name:base.gg @@ -14937,7 +14937,7 @@ msgstr "썬더버드 플러그인" #. module: base #: model:ir.module.module,summary:base.module_event msgid "Trainings, Conferences, Meetings, Exhibitions, Registrations" -msgstr "" +msgstr "훈련, 회의, 미팅, 전시회, 등록" #. module: base #: model:ir.model,name:base.model_res_country diff --git a/openerp/addons/base/i18n/lt.po b/openerp/addons/base/i18n/lt.po index 8d4bb6b5f8b..a3fb9b19c79 100644 --- a/openerp/addons/base/i18n/lt.po +++ b/openerp/addons/base/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/lv.po b/openerp/addons/base/i18n/lv.po index 63e6be22018..7e3ba4c96ca 100644 --- a/openerp/addons/base/i18n/lv.po +++ b/openerp/addons/base/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:04+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/mk.po b/openerp/addons/base/i18n/mk.po index 321bd6a0e5d..f14ad6b6f95 100644 --- a/openerp/addons/base/i18n/mk.po +++ b/openerp/addons/base/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -4153,6 +4153,7 @@ msgstr "Титула" #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" msgstr "" +"Доколку не е подесено, се однесува како стандардна вредност за новите ресурси" #. module: base #: code:addons/orm.py:4246 @@ -4560,7 +4561,7 @@ msgstr "EAN13" #: code:addons/orm.py:2247 #, python-format msgid "Invalid Architecture!" -msgstr "" +msgstr "Погрешна архитектура!" #. module: base #: model:res.country,name:base.pt @@ -4703,13 +4704,13 @@ msgstr "" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Акција за активирање" #. module: base #: field:ir.model.constraint,name:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "Ограничување" #. module: base #: selection:ir.values,key:0 @@ -4827,7 +4828,7 @@ msgstr "Телеком сектор" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "" +msgstr "Активирај објект" #. module: base #: sql_constraint:ir.sequence.type:0 @@ -4848,7 +4849,7 @@ msgstr "Дојдовни премини" #. module: base #: field:ir.values,value_unpickle:0 msgid "Default value or action reference" -msgstr "" +msgstr "Стандардна вредност или референца на акцијата" #. module: base #: model:ir.module.module,description:base.module_note_pad @@ -4920,7 +4921,7 @@ msgstr "Шпански (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "Тип на секвенца" #. module: base #: view:base.language.export:0 @@ -4973,7 +4974,7 @@ msgstr "Url" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL ограничување" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -5179,7 +5180,7 @@ msgstr "" #. module: base #: model:ir.module.category,description:base.module_category_marketing msgid "Helps you manage your marketing campaigns step by step." -msgstr "" +msgstr "Ви помага да ги менаџирате вашите маркетинг кампањи чекор по чекор." #. module: base #: selection:base.language.install,lang:0 @@ -5324,7 +5325,7 @@ msgstr "Интеграција на Google Docs" #. module: base #: help:ir.attachment,res_model:0 msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "Објектот на базата на податоци на кој овој прилог ќе биде прикачен" #. module: base #: code:addons/base/ir/ir_fields.py:327 @@ -5391,7 +5392,7 @@ msgstr ", или друг текст едитор" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "" +msgstr "Географска локализација на партнери" #. module: base #: model:res.country,name:base.ke @@ -5448,7 +5449,7 @@ msgstr "Перу" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "" +msgstr "Подеси Нула" #. module: base #: view:res.users:0 @@ -5479,7 +5480,7 @@ msgstr "" #. module: base #: help:ir.mail_server,smtp_user:0 msgid "Optional username for SMTP authentication" -msgstr "" +msgstr "Опционо корисничко име за SMTP автентификација" #. module: base #: model:ir.model,name:base.model_ir_actions_actions @@ -5552,6 +5553,7 @@ msgstr "Португалски / Português" #, python-format msgid "Changing the storing system for field \"%s\" is not allowed." msgstr "" +"Поврзувањето на системот за складирање за полето \"%s\" не е дозволено." #. module: base #: help:res.partner.bank,company_id:0 @@ -5775,6 +5777,7 @@ msgstr "Име на сопственикот на сметката" #, python-format msgid "Cannot rename column to %s, because that column already exists!" msgstr "" +"Не може да се преименува колоната во %s, бидејќи колоната веќе постои!" #. module: base #: view:ir.attachment:0 @@ -5790,7 +5793,7 @@ msgstr "Децимален знак" #: code:addons/orm.py:5319 #, python-format msgid "Missing required value for the field '%s'." -msgstr "" +msgstr "Недостига потребната вредност за полето '%s'." #. module: base #: view:ir.rule:0 @@ -5845,7 +5848,7 @@ msgstr "Буве Остров" #. module: base #: field:ir.model.constraint,type:0 msgid "Constraint Type" -msgstr "" +msgstr "Тип на ограничување" #. module: base #: field:res.company,child_ids:0 @@ -6172,7 +6175,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view msgid "ir.actions.act_window.view" -msgstr "" +msgstr "ir.actions.act_window.view" #. module: base #: model:ir.module.module,shortdesc:base.module_web @@ -6183,7 +6186,7 @@ msgstr "Веб" #. module: base #: model:ir.module.module,shortdesc:base.module_lunch msgid "Lunch Orders" -msgstr "" +msgstr "Нарачки за ручек" #. module: base #: selection:base.language.install,lang:0 @@ -6229,7 +6232,7 @@ msgstr "Етиопија" #. module: base #: model:ir.module.category,name:base.module_category_authentication msgid "Authentication" -msgstr "" +msgstr "Автентикација" #. module: base #: model:res.country,name:base.sj @@ -6240,7 +6243,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_wizard #: selection:ir.ui.menu,action:0 msgid "ir.actions.wizard" -msgstr "" +msgstr "ir.actions.wizard" #. module: base #: model:ir.module.module,shortdesc:base.module_web_kanban @@ -6252,7 +6255,7 @@ msgstr "" #: view:ir.actions.report.xml:0 #: view:ir.actions.server:0 msgid "Group By" -msgstr "" +msgstr "Групирај по" #. module: base #: view:res.config.installer:0 @@ -6303,7 +6306,7 @@ msgstr "Семтководство и финансии" #. module: base #: field:ir.actions.server,write_id:0 msgid "Write Id" -msgstr "" +msgstr "Напиши ID" #. module: base #: model:ir.ui.menu,name:base.menu_product @@ -6330,12 +6333,12 @@ msgstr "" #: model:ir.module.category,name:base.module_category_usability #: view:res.users:0 msgid "Usability" -msgstr "" +msgstr "Употребливост" #. module: base #: field:ir.actions.act_window,domain:0 msgid "Domain Value" -msgstr "" +msgstr "Вредност на домен" #. module: base #: model:ir.module.module,description:base.module_association @@ -6386,7 +6389,7 @@ msgstr "" #: code:addons/base/ir/workflow/workflow.py:99 #, python-format msgid "Operation forbidden" -msgstr "" +msgstr "Забранета операција" #. module: base #: view:ir.actions.server:0 @@ -6444,7 +6447,7 @@ msgstr "Тип на банка" #: code:addons/base/res/res_users.py:99 #, python-format msgid "The name of the group can not start with \"-\"" -msgstr "" +msgstr "Името на групата не може да почнува со \"-\"" #. module: base #: model:ir.actions.client,name:base.modules_act_cl @@ -6484,7 +6487,7 @@ msgstr "" #: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "" +msgstr "Почеток на тек" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -6823,7 +6826,7 @@ msgstr "" #: code:addons/orm.py:2247 #, python-format msgid "There is no view of type '%s' defined for the structure!" -msgstr "" +msgstr "Нема приказ од типот \\%s\\ дефинирано за структурата!" #. module: base #: help:ir.values,key:0 @@ -6964,7 +6967,7 @@ msgstr "" #. module: base #: sql_constraint:ir.rule:0 msgid "Rule must have at least one checked access right !" -msgstr "" +msgstr "Правилото мора да има барем едно означено право за пристап !" #. module: base #: field:res.partner.bank.type,format_layout:0 @@ -7402,7 +7405,7 @@ msgstr "Датотеката од модулот е успешно увезен #: view:ir.model.constraint:0 #: model:ir.ui.menu,name:base.ir_model_constraint_menu msgid "Model Constraints" -msgstr "" +msgstr "Ограничувања на модулот" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -7415,7 +7418,7 @@ msgstr "Транзиции" #: model:ir.module.module,shortdesc:base.module_hr_timesheet #: model:ir.module.module,shortdesc:base.module_hr_timesheet_sheet msgid "Timesheets" -msgstr "" +msgstr "Временски таблици" #. module: base #: help:ir.values,company_id:0 @@ -7449,6 +7452,9 @@ msgid "" "password, otherwise leave empty. After a change of password, the user has to " "login again." msgstr "" +"Специфицирајте вредност единствено кога креирате корисник или ја менувате " +"корисничката лозинка, во спротивно оставете празно. После промената на " +"лозинката, корисникот треба повторно да се најави." #. module: base #: model:res.country,name:base.so @@ -7613,7 +7619,7 @@ msgstr "на" #. module: base #: view:ir.property:0 msgid "Parameters that are used by all resources." -msgstr "" +msgstr "Параметри кои се користат од сите расурси." #. module: base #: model:res.country,name:base.mz @@ -15713,7 +15719,7 @@ msgstr "Северна Кореа" #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" -msgstr "" +msgstr "Креирај објект" #. module: base #: model:res.country,name:base.ss @@ -15728,7 +15734,7 @@ msgstr "Контекст" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_mrp msgid "Sales and MRP Management" -msgstr "" +msgstr "Управување со продажби и производство" #. module: base #: model:ir.actions.act_window,help:base.action_partner_form @@ -15742,6 +15748,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Кликнете за да додадете контакт во вашиот именик.\n" +"

\n" +"OpenERP ви помага полесно да ги следите сите активности поврзани со\n" +"купувач; дискусии, историја на бизнис можности,\n" +"документи, итн.\n" +"

\n" +" " #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -15769,6 +15783,8 @@ msgid "" "Used to select automatically the right address according to the context in " "sales and purchases documents." msgstr "" +"Се користи за автоматски да се избере вистинската адреса според контекстот " +"во документите за продажби и набавки." #. module: base #: model:ir.module.module,description:base.module_purchase_analytic_plans @@ -15801,7 +15817,7 @@ msgstr "Руски / русский язык" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_signup msgid "Signup" -msgstr "" +msgstr "Регистрација" #~ msgid "Code (eg:en__US)" #~ msgstr "Код (пр. en_US)" diff --git a/openerp/addons/base/i18n/mn.po b/openerp/addons/base/i18n/mn.po index 84b972f9c09..479dd4340d9 100644 --- a/openerp/addons/base/i18n/mn.po +++ b/openerp/addons/base/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:16+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -609,8 +609,8 @@ msgstr "" "===============================================\n" "\n" "OpenERP-д шинжилгээний дансд нь ерөнхий дансдадтай холбогддог боловч \n" -"бүрэн үл хамаарах байдаг. Иймээс ерөнхий санхүүгийн данс эсрэг тал нь болгох " -"албагүй \n" +"бүрэн үл хамаарах байдаг. Иймээс ерөнхий санхүүгийн данс харьцах тал нь " +"болгох албагүй \n" "бөгөөд төрөл бүрийн шинжилгээний үйлдлүүдийг оруулж болно.\n" " " @@ -919,7 +919,7 @@ msgstr "Иордан" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hr msgid "Croatia - RRIF 2012 COA" -msgstr "" +msgstr "Croatia - RRIF 2012 COA" #. module: base #: help:ir.cron,nextcall:0 @@ -2373,9 +2373,9 @@ msgstr "" "\n" " * Дансны Мод, Татвар, Татварын Код, Журналь, Дансны Үлгэр, Шинжилгээний " "Дансны Мод, Шинжилгээний Журналиудад олон хэлийг нэмдэг.\n" -" * Тохируулах харилцах нь дараахыг өөрчилдөг.\n" -" - Үлгэрээс авагдсан Дансны Модт, Татвар, Татварын Код, Мөчлөг зэрэгт " -"орчуулгыг хуулна.\n" +" * Тохируулах харилцах цонх нь дараахыг өөрчилдөг.\n" +" - Үлгэрээс авагдсан Дансны Мод, Татвар, Татварын Код, Санхүүгийн " +"харгалзаа зэрэгт орчуулгыг хуулна.\n" " " #. module: base @@ -2564,7 +2564,7 @@ msgstr "Солонгос хэл (KP) / 한국어 (KP)" #. module: base #: model:res.country,name:base.ax msgid "Åland Islands" -msgstr "" +msgstr "Аландийн Арлууд" #. module: base #: field:res.company,logo:0 @@ -4210,22 +4210,22 @@ msgstr "" "\n" "Энэ модуль нь төлөвлөлт, захиалга, нөөцлөлт, бүтээгдэхүүний түүхий эд, дэд " "хэсгүүдээс угсрах зэрэгийг үйлдвэрлэлийн процессыг хамардаг. Түүнчлэн " -"бүтээгдэхүүний орц, жор, дамжлагын хүний нөөц, машин тоног төхөөрөмж " -"зэрэгийг таамагладаг.\n" +"бүтээгдэхүүний орц, дамжлагын хүний нөөц, машин тоног төхөөрөмж зэрэгийг " +"таамагладаг.\n" "\n" "Түүхийн эд нөөцлөл, хангамж, үйлчилгээний бүрэн төлөвлөлтийг дэмждэг. " "Үйлчилгээ нь програм хангамжийн бусад бүх хэсэгтэй бүрэн уялддаг. Тухайлбал, " -"үйлдвэрлэлийг явуулахдаа жор дотор нь дэд гэрээгээр авах үйлчилгээг " +"үйлдвэрлэлийг явуулахдаа орц дотор нь дэд гэрээгээр авах үйлчилгээг " "тодорхойлж өгөх боломжтой байдаг.\n" "\n" "Онцлог:\n" "---------\n" " * Хадгалуулах / Захиалуулах (мөр бүрээр)\n" -" * Олон түвшний жор, хязгааргүй\n" +" * Олон түвшний орц, хязгааргүй\n" " * Олон түвшний урсгал, хязгааргүй\n" " * Шинжилгээний санхүүтэй уялдсан үйлдвэрлэлийн урсгал болон дамжлага\n" " * Тогтол хугацааны тооцоолол / Яг Хугацаандааа модуль\n" -" * Жоруудыг бүтцээр нь, завсрынхаар нь гэх мэт гүйцэд шинжилгээ, үзлэг\n" +" * Орцуудыг бүтцээр нь, завсрынхаар нь гэх мэт гүйцэд шинжилгээ, үзлэг\n" "\n" "Үйлдвэрлэлийн модулийн Хянах самбар / Тайлангууд нь дараах зүйлсийг " "агуулдаг:\n" @@ -6404,7 +6404,7 @@ msgstr "Ачаалах Тохиргооны Визард" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "Үйлдвэрлэлийн захиалгууд, Жор, Дамжлагын цуваа" +msgstr "Үйлдвэрлэлийн захиалгууд, Орц, Шугам" #. module: base #: field:ir.attachment,name:0 diff --git a/openerp/addons/base/i18n/nb.po b/openerp/addons/base/i18n/nb.po index 44949289efd..149626edadd 100644 --- a/openerp/addons/base/i18n/nb.po +++ b/openerp/addons/base/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/nl.po b/openerp/addons/base/i18n/nl.po index 33309c00dda..38cc4bc0cfd 100644 --- a/openerp/addons/base/i18n/nl.po +++ b/openerp/addons/base/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:02+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:13+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/nl_BE.po b/openerp/addons/base/i18n/nl_BE.po index aff10841be1..2b2ca0f20e2 100644 --- a/openerp/addons/base/i18n/nl_BE.po +++ b/openerp/addons/base/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/pl.po b/openerp/addons/base/i18n/pl.po index 9e8f709f184..aeaf1845937 100644 --- a/openerp/addons/base/i18n/pl.po +++ b/openerp/addons/base/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/pt.po b/openerp/addons/base/i18n/pt.po index 7605a6e0447..0e75dcb2072 100644 --- a/openerp/addons/base/i18n/pt.po +++ b/openerp/addons/base/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:05+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/pt_BR.po b/openerp/addons/base/i18n/pt_BR.po index d4bdb2c320a..2c2168f9237 100644 --- a/openerp/addons/base/i18n/pt_BR.po +++ b/openerp/addons/base/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ro.po b/openerp/addons/base/i18n/ro.po index 62842941d68..0ac6b1d40fd 100644 --- a/openerp/addons/base/i18n/ro.po +++ b/openerp/addons/base/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -32,17 +32,17 @@ msgstr "" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "Sfanta Elena" +msgstr "Sfânta Elena" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "Alta configuratie" +msgstr "Altă configurație" #. module: base #: selection:ir.property,type:0 msgid "DateTime" -msgstr "DataOra" +msgstr "DatăOră" #. module: base #: code:addons/fields.py:652 @@ -51,29 +51,29 @@ msgid "" "The second argument of the many2many field %s must be a SQL table !You used " "%s, which is not a valid SQL table name." msgstr "" -"Al doilea parametru al campului many2many %s trebuie sa fie un tabel SQL ! " -"Ati folosit %s, care nu este un tabel SQL valid." +"Al doilea parametru al câmpului many2many %s trebuie să fie un tabel SQL ! " +"Ați folosit %s, care nu este un tabel SQL valid." #. module: base #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "Alcatuirea vizualizarii" +msgstr "Alcatuirea vizualizării" #. module: base #: model:ir.module.module,summary:base.module_sale_stock msgid "Quotation, Sale Orders, Delivery & Invoicing Control" -msgstr "Cotatie, Ordine de vanzari, Controlul Livrarii & Facturarii" +msgstr "Cotație, Comandă de vânzări, Controlul Livrării & Facturării" #. module: base #: selection:ir.sequence,implementation:0 msgid "No gap" -msgstr "Fara intrerupere" +msgstr "Fără întrerupere" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "Maghiara / Magyar" +msgstr "Maghiară / Magyar" #. module: base #: selection:base.language.install,lang:0 @@ -86,13 +86,13 @@ msgid "" "Helps you manage your projects and tasks by tracking them, generating " "plannings, etc..." msgstr "" -"Va ajuta sa va gestionati proiectele si sarcinile prin monitorizarea lor, " -"generarea de planificari, etc..." +"Vă ajută să vă gestionați proiectele și sarcinile prin monitorizarea lor, " +"generarea de planificări, etc..." #. module: base #: model:ir.module.module,summary:base.module_point_of_sale msgid "Touchscreen Interface for Shops" -msgstr "Interfata cu Ecran tactil pentru Magazine" +msgstr "Interfața cu Ecran tactil pentru Magazine" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll @@ -104,13 +104,13 @@ msgstr "Stat de plata indian" msgid "" "Model name on which the method to be called is located, e.g. 'res.partner'." msgstr "" -"Numele modelului unde este localizata metoda care va fi numita, de exemplu " +"Numele modelului unde este localizată metoda care va fi numită, de exemplu " "'res.partener'." #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "Vizualizari Create" +msgstr "Vizualizări Create" #. module: base #: model:ir.module.module,description:base.module_product_manufacturer @@ -158,7 +158,7 @@ msgstr "" #. module: base #: help:res.partner,employee:0 msgid "Check this box if this contact is an Employee." -msgstr "Bifati aceasta casuta daca acest contact este un Angajat." +msgstr "Bifați această căsuța dacă acest contact este un Angajat." #. module: base #: help:ir.model.fields,domain:0 @@ -167,14 +167,14 @@ msgid "" "specified as a Python expression defining a list of triplets. For example: " "[('color','=','red')]" msgstr "" -"Domeniul optional pentru a restrictiona posibilele valori pentru campurile " -"asociate, specificat ca o expresie Python care defineste o lista cu trei " +"Domeniul opțional pentru a restricționa posibilele valori pentru câmpurile " +"asociate, specificat ca o expresie Python care definește o listă cu trei " "elemente. De exemplu: [('culoare','=','rosu')]" #. module: base #: field:res.partner,ref:0 msgid "Reference" -msgstr "Referinta" +msgstr "Referință" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_invoice_bba @@ -184,7 +184,7 @@ msgstr "Belgia - Comunicare Structurata" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "Fereastra tinta" +msgstr "Fereastra țintă" #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -194,7 +194,7 @@ msgstr "Ruta Principala Fisier Raport" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_analytic_plans msgid "Sales Analytic Distribution" -msgstr "Distributia Analitica a Vanzarilor" +msgstr "Distribuția Analitică a Vânzărilor" #. module: base #: model:ir.module.module,description:base.module_hr_timesheet_invoice @@ -244,7 +244,7 @@ msgstr "" #: code:addons/osv.py:151 #, python-format msgid "Constraint Error" -msgstr "Eroare constrangere" +msgstr "Eroare constrângere" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -255,7 +255,7 @@ msgstr "ir.ui.vizualizare.personalizata" #: code:addons/base/ir/ir_model.py:375 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "Nu este permisa redenumirea campului \"%s\"" +msgstr "Nu este permisă redenumirea campului \"%s\"" #. module: base #: model:res.country,name:base.sz @@ -266,12 +266,12 @@ msgstr "Swaziland (tara in sudul Africii)" #: code:addons/orm.py:4486 #, python-format msgid "created." -msgstr "creat(a)." +msgstr "creat(ă)." #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL Path" -msgstr "Ruta XSL" +msgstr "Rută XSL" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr @@ -281,7 +281,7 @@ msgstr "Turcia - Contabilitate" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "Majorare Numar" +msgstr "Majorare Număr" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -319,7 +319,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_sale msgid "Sales Management" -msgstr "Gestionarea vanzarilor" +msgstr "Gestionarea vânzărilor" #. module: base #: help:res.partner,user_id:0 @@ -328,7 +328,7 @@ msgid "" "any." msgstr "" "Utilizatorul intern care este responsabil cu comunicarea cu acest contact, " -"daca exista." +"dacă există." #. module: base #: view:res.partner:0 @@ -343,7 +343,7 @@ msgstr "Numar de Module" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "Compania unde se pastreaza inregistrarea actuala" +msgstr "Compania unde se pastreaza înregistrarea actuală" #. module: base #: field:res.partner.bank.type.field,size:0 @@ -356,8 +356,8 @@ msgid "" "Database ID of record to open in form view, when ``view_mode`` is set to " "'form' only" msgstr "" -"ID baza de date a inregistrarii de deschis in vizualizare formular, atunci " -"cand ``modul_vizualizare`` este setat doar pe 'formular'" +"ID bază de date a înregistrării de deschis în vizualizare formular, atunci " +"când ``view_mode``` este setat doar pe 'form'" #. module: base #: help:ir.values,key2:0 @@ -384,7 +384,7 @@ msgstr "Numele limbii trebuie sa fie unic !" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "activ(a)" +msgstr "activ(ă)" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -414,7 +414,7 @@ msgstr "" #. module: base #: model:ir.module.category,name:base.module_category_customer_relationship_management msgid "Customer Relationship Management" -msgstr "Gestionarea Relatiilor cu Clientii" +msgstr "Gestionarea relațiilor cu clienții" #. module: base #: model:ir.module.module,description:base.module_delivery @@ -456,24 +456,24 @@ msgstr "Grup invalid_dupa" #. module: base #: field:ir.module.category,child_ids:0 msgid "Child Applications" -msgstr "Aplicatii secundare" +msgstr "Aplicații secundare" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "Limita de credit" +msgstr "Limită de credit" #. module: base #: field:ir.model.constraint,date_update:0 #: field:ir.model.data,date_update:0 #: field:ir.model.relation,date_update:0 msgid "Update Date" -msgstr "Data actualizarii" +msgstr "Data actualizării" #. module: base #: model:ir.module.module,shortdesc:base.module_base_action_rule msgid "Automated Action Rules" -msgstr "Reguli de actiune automata" +msgstr "Reguli de acțiune automată" #. module: base #: view:ir.attachment:0 @@ -484,7 +484,7 @@ msgstr "Proprietar" #. module: base #: view:ir.actions.act_window:0 msgid "Source Object" -msgstr "Obiect Sursa" +msgstr "Obiect Sursă" #. module: base #: model:res.partner.bank.type,format_layout:base.bank_normal @@ -494,7 +494,7 @@ msgstr "%(bank_name)s: %(acc_number)s" #. module: base #: view:ir.actions.todo:0 msgid "Config Wizard Steps" -msgstr "Configurare pasi asistent" +msgstr "Configurare pași asistent" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc @@ -544,7 +544,7 @@ msgstr "" #. module: base #: field:ir.model.relation,name:0 msgid "Relation Name" -msgstr "Nume Relatie" +msgstr "Nume Relație" #. module: base #: view:ir.rule:0 @@ -559,7 +559,7 @@ msgstr "Tuvalu" #. module: base #: field:ir.actions.configuration.wizard,note:0 msgid "Next Wizard" -msgstr "Wizardul urmator" +msgstr "Wizardul următor" #. module: base #: field:res.lang,date_format:0 @@ -589,7 +589,7 @@ msgstr "" #. module: base #: view:workflow.transition:0 msgid "Workflow Transition" -msgstr "Tranzitie Flux de lucru" +msgstr "Tranziție Flux de lucru" #. module: base #: model:res.country,name:base.gf @@ -738,7 +738,7 @@ msgstr "Text" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "Numele tarii" +msgstr "Numele țării" #. module: base #: model:res.country,name:base.co @@ -767,7 +767,7 @@ msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Vanzari & Achizitii" +msgstr "Vânzări & Achiziții" #. module: base #: view:ir.translation:0 @@ -777,7 +777,7 @@ msgstr "Netradus(e)" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "Server Iesire E-mail-uri" +msgstr "Server Ieșire E-mail-uri" #. module: base #: help:ir.actions.act_window,context:0 @@ -798,7 +798,7 @@ msgstr "Logo Web" #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" -"Campurile personalizate trebuie sa aiba un nume care incepe cu 'x_' !" +"Câmpurile personalizate trebuie să aibă un nume care începe cu 'x_' !" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mx @@ -820,7 +820,7 @@ msgstr "Cheia trebuie sa fie unica." #. module: base #: model:ir.module.module,shortdesc:base.module_plugin_outlook msgid "Outlook Plug-In" -msgstr "Aplicatia Outlook" +msgstr "Aplicația Outlook" #. module: base #: model:ir.module.module,description:base.module_account @@ -930,7 +930,7 @@ msgstr "" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "Declanseaza Expresia" +msgstr "Declanșează Expresia" #. module: base #: model:res.country,name:base.jo @@ -960,17 +960,17 @@ msgstr "Eritreea" #. module: base #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "Numele companiei trebuie sa fie unic !" +msgstr "Numele companiei trebuie să fie unic !" #. module: base #: model:ir.ui.menu,name:base.menu_base_action_rule_admin msgid "Automated Actions" -msgstr "Actiuni Automate" +msgstr "Acțiuni Automate" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro msgid "Romania - Accounting" -msgstr "Romania - Contabilitate" +msgstr "România - Contabilitate" #. module: base #: model:ir.model,name:base.model_res_config_settings @@ -1003,7 +1003,7 @@ msgstr "" #. module: base #: view:ir.mail_server:0 msgid "Security and Authentication" -msgstr "Securitate si Autentificare" +msgstr "Securitate și Autentificare" #. module: base #: model:ir.module.module,shortdesc:base.module_web_calendar @@ -1019,7 +1019,7 @@ msgstr "Suedeza / svenska" #: field:base.language.export,name:0 #: field:ir.attachment,datas_fname:0 msgid "File Name" -msgstr "Nume Fisier" +msgstr "Nume fișier" #. module: base #: model:res.country,name:base.rs @@ -1106,7 +1106,7 @@ msgstr "Albaneza / Shqip" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "Oportunitati" +msgstr "Oportunități" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -1133,7 +1133,7 @@ msgstr "Depozite comune (WebDAV)" #. module: base #: view:res.users:0 msgid "Email Preferences" -msgstr "Preferinte email" +msgstr "Preferințe email" #. module: base #: code:addons/base/ir/ir_fields.py:195 @@ -1173,7 +1173,7 @@ msgstr "Spania" msgid "" "Optional domain filtering of the destination data, as a Python expression" msgstr "" -"Filtrarea optionala a domeniului pentru datele destinatie, ca o expresie " +"Filtrarea opțională a domeniului pentru datele destinație, ca o expresie " "Python" #. module: base @@ -1232,12 +1232,12 @@ msgstr "Gestionarea adeziunii ca membru" #. module: base #: selection:ir.module.module,license:0 msgid "Other OSI Approved Licence" -msgstr "Alte licente OSI aprobate" +msgstr "Alte licențe OSI aprobate" #. module: base #: model:ir.module.module,shortdesc:base.module_web_gantt msgid "Web Gantt" -msgstr "Diagrama Gantt Web" +msgstr "Diagramă Gantt Web" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1289,7 +1289,7 @@ msgstr "Principatul Andorra" #. module: base #: field:ir.rule,perm_read:0 msgid "Apply for Read" -msgstr "Se aplica pentru Citit" +msgstr "Se aplică pentru Citit" #. module: base #: model:res.country,name:base.mn @@ -1383,7 +1383,7 @@ msgstr "Model document" #. module: base #: view:res.users:0 msgid "Change the user password." -msgstr "Schimba parola utilizatorului." +msgstr "Schimbă parola utilizatorului." #. module: base #: view:res.lang:0 @@ -1518,17 +1518,17 @@ msgstr "Guam (SUA)" #. module: base #: sql_constraint:res.country:0 msgid "The name of the country must be unique !" -msgstr "Numele tarii trebuie sa fie unic !" +msgstr "Numele țării trebuie să fie unic !" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest Version" -msgstr "Cea mai recenta versiune" +msgstr "Cea mai recentă versiune" #. module: base #: view:ir.rule:0 msgid "Delete Access Right" -msgstr "Sterge Dreptul de Acces" +msgstr "Șterge Dreptul de Acces" #. module: base #: code:addons/base/ir/ir_mail_server.py:214 @@ -1545,7 +1545,7 @@ msgstr "Provizoriu" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "XML nevalid pentru arhitectura vizualizarii!" +msgstr "XML nevalid pentru arhitectura vizualizării!" #. module: base #: model:res.country,name:base.ky @@ -1555,7 +1555,7 @@ msgstr "Insulele Cayman" #. module: base #: view:ir.rule:0 msgid "Record Rule" -msgstr "Regula Inregistrare" +msgstr "Regulă înregistrare" #. module: base #: model:res.country,name:base.kr @@ -1571,7 +1571,7 @@ msgstr "Plan economic pentru societati" #: code:addons/orm.py:4918 #, python-format msgid "Record #%d of %s not found, cannot copy!" -msgstr "Inregistrarea #%d a %s nu a fost gasita, nu se poate copia!" +msgstr "Înregistrarea #%d a %s nu a fost găsită, nu se poate copia!" #. module: base #: field:ir.module.module,contributors:0 @@ -1581,7 +1581,7 @@ msgstr "Colaboratori" #. module: base #: field:ir.rule,perm_unlink:0 msgid "Apply for Delete" -msgstr "Aplica pentru Stergere" +msgstr "Aplică pentru ștergere" #. module: base #: selection:ir.property,type:0 @@ -1591,12 +1591,12 @@ msgstr "Caracter" #. module: base #: field:ir.module.category,visible:0 msgid "Visible" -msgstr "Vizibil(a)" +msgstr "Vizibil(ă)" #. module: base #: model:ir.actions.client,name:base.action_client_base_menu msgid "Open Settings Menu" -msgstr "Deschide Meniul Setari" +msgstr "Deschide Meniul Setări" #. module: base #: selection:base.language.install,lang:0 @@ -1611,7 +1611,7 @@ msgstr "Uganda" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Access" -msgstr "Stergeti Accesul" +msgstr "Ștergeti accesul" #. module: base #: model:res.country,name:base.ne @@ -1621,17 +1621,17 @@ msgstr "Niger" #. module: base #: selection:base.language.install,lang:0 msgid "Chinese (HK)" -msgstr "Chineza (HK)" +msgstr "Chineză (HK)" #. module: base #: model:res.country,name:base.ba msgid "Bosnia-Herzegovina" -msgstr "Bosnia-Hertegovina" +msgstr "Bosnia-Herțegovina" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "Camp asistent" +msgstr "Câmp asistent" #. module: base #: selection:base.language.install,lang:0 @@ -1676,7 +1676,7 @@ msgstr "" #: code:addons/base/module/wizard/base_language_install.py:53 #, python-format msgid "Language Pack" -msgstr "Pachet limba" +msgstr "Pachet limbă" #. module: base #: model:ir.module.module,shortdesc:base.module_web_tests @@ -1686,7 +1686,7 @@ msgstr "Teste" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save as Attachment Prefix" -msgstr "Salveaza ca Prefix Atasament" +msgstr "Salvează ca Prefix Atașament" #. module: base #: field:ir.ui.view_sc,res_id:0 @@ -1696,7 +1696,7 @@ msgstr "Ref. Resursa" #. module: base #: field:ir.actions.act_url,url:0 msgid "Action URL" -msgstr "URL Actiune" +msgstr "URL Acțiune" #. module: base #: field:base.module.import,module_name:0 @@ -1729,7 +1729,7 @@ msgstr "Stat de plata francez" #: view:ir.ui.view:0 #: selection:ir.ui.view,type:0 msgid "Search" -msgstr "Cautati" +msgstr "Căutați" #. module: base #: code:addons/osv.py:154 @@ -1748,20 +1748,20 @@ msgstr "" #. module: base #: field:ir.module.category,parent_id:0 msgid "Parent Application" -msgstr "Aplicatie principala" +msgstr "Aplicație principală" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "Asistenti" +msgstr "Asistenți" #. module: base #: code:addons/base/res/res_users.py:131 #, python-format msgid "Operation Canceled" -msgstr "Operatiune anulata" +msgstr "Operațiune anulată" #. module: base #: model:ir.module.module,shortdesc:base.module_document @@ -1771,7 +1771,7 @@ msgstr "Sistemul de gestionare a documentelor" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_claim msgid "Claims Management" -msgstr "Gestionare reclamatii" +msgstr "Gestionare reclamații" #. module: base #: model:ir.module.module,description:base.module_document_webdav @@ -1837,7 +1837,7 @@ msgstr "" #: model:ir.module.category,name:base.module_category_purchase_management #: model:ir.ui.menu,name:base.menu_purchase_root msgid "Purchases" -msgstr "Achizitii" +msgstr "Achiziții" #. module: base #: model:res.country,name:base.md @@ -1968,7 +1968,7 @@ msgstr "Nu exista nici o limba cu codul \"%s\"" #: model:ir.module.category,name:base.module_category_social_network #: model:ir.module.module,shortdesc:base.module_mail msgid "Social Network" -msgstr "Retea Sociala" +msgstr "Rețea socială" #. module: base #: view:res.lang:0 @@ -2051,7 +2051,7 @@ msgstr "" #: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" -msgstr "Banca" +msgstr "Bancă" #. module: base #: model:ir.model,name:base.model_ir_exports_line @@ -2174,20 +2174,20 @@ msgstr "res.link.cerere" #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" -msgstr "Informatii asistent" +msgstr "Informații asistent" #. module: base #: model:ir.actions.act_window,name:base.action_wizard_lang_export #: model:ir.ui.menu,name:base.menu_wizard_lang_export msgid "Export Translation" -msgstr "Exportati Traducerea" +msgstr "Exportați traducerea" #. module: base #: model:ir.actions.act_window,name:base.action_server_action #: view:ir.actions.server:0 #: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" -msgstr "Actiuni Server" +msgstr "Acțiuni server" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_lu @@ -2204,7 +2204,7 @@ msgstr "Timorul de Est" #: view:ir.module.module:0 #, python-format msgid "Install" -msgstr "Instaleaza" +msgstr "Instalează" #. module: base #: field:res.currency,accuracy:0 @@ -2294,7 +2294,7 @@ msgstr "Eveniment Portal" #. module: base #: selection:ir.translation,state:0 msgid "Translation in Progress" -msgstr "Traducere in desfasurare" +msgstr "Traducere în desfășurare" #. module: base #: model:ir.model,name:base.model_ir_rule @@ -2410,7 +2410,7 @@ msgstr "Parteneri" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "Parinte stang" +msgstr "Părinte stânga" #. module: base #: model:ir.module.module,shortdesc:base.module_project_mrp @@ -2426,7 +2426,7 @@ msgstr "Aceasta coloana contine datele modulului si nu poate fi stearsa!" #. module: base #: field:res.partner.bank,footer:0 msgid "Display on Reports" -msgstr "Afisati in Rapoarte" +msgstr "Afisați în Rapoarte" #. module: base #: model:ir.module.module,description:base.module_project_timesheet @@ -2484,12 +2484,12 @@ msgstr "" #. module: base #: field:workflow.transition,act_from:0 msgid "Source Activity" -msgstr "Activitatea sursa" +msgstr "Activitatea sursă" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "Legenda (pentru prefix, sufix)" +msgstr "Legendă (pentru prefix, sufix)" #. module: base #: selection:ir.server.object.lines,type:0 @@ -2593,7 +2593,7 @@ msgstr "" #. module: base #: field:ir.ui.menu,complete_name:0 msgid "Full Path" -msgstr "Calea completa" +msgstr "Calea completă" #. module: base #: view:base.language.export:0 @@ -2621,7 +2621,7 @@ msgstr "Format PO(T): ar trebui editat cu un editor PO, cum ar fi" #: model:ir.ui.menu,name:base.menu_administration #: model:res.groups,name:base.group_system msgid "Settings" -msgstr "Setari" +msgstr "Setări" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -2634,12 +2634,12 @@ msgstr "Arbore" #. module: base #: view:ir.actions.server:0 msgid "Create / Write / Copy" -msgstr "Creati / Scrieti / Copiati" +msgstr "Creați / Scrieți / Copiați" #. module: base #: view:ir.sequence:0 msgid "Second: %(sec)s" -msgstr "Secunda: %(sec)s" +msgstr "Secundă: %(sec)s" #. module: base #: field:ir.actions.act_window,view_mode:0 @@ -2684,17 +2684,17 @@ msgstr "Costa Rica - Contabilitate" #: selection:ir.actions.act_url,target:0 #: selection:ir.actions.act_window,target:0 msgid "New Window" -msgstr "Fereastra noua" +msgstr "Fereastră nouă" #. module: base #: field:ir.values,action_id:0 msgid "Action (change only)" -msgstr "Actiune (modificati doar daca)" +msgstr "Acțiune (modificați doar dacă)" #. module: base #: model:ir.module.module,shortdesc:base.module_subscription msgid "Recurring Documents" -msgstr "Documente Recurente" +msgstr "Documente recurente" #. module: base #: model:res.country,name:base.bs @@ -2704,7 +2704,7 @@ msgstr "Bahamas" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "Aplica pentru Creare" +msgstr "Aplică pentru Creare" #. module: base #: model:ir.module.category,name:base.module_category_tools @@ -2812,7 +2812,7 @@ msgstr "" #. module: base #: field:change.password.user,new_passwd:0 msgid "New Password" -msgstr "Parola Noua" +msgstr "Parola Nouă" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view @@ -2982,7 +2982,7 @@ msgstr "Editor Flux de lucru" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be removed" -msgstr "Va fi sters" +msgstr "Va fi șters" #. module: base #: model:ir.model,name:base.model_ir_sequence @@ -3162,7 +3162,7 @@ msgstr "Madagascar" msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -"Numele obiectului trebuie sa inceapa cu x_ si sa nu contina nici un caracter " +"Numele obiectului trebuie să înceapă cu x_ și să nu conțină nici un caracter " "special !" #. module: base @@ -3185,7 +3185,7 @@ msgstr "Meniu" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "Rata curenta" +msgstr "Rata curentă" #. module: base #: selection:base.language.install,lang:0 @@ -3238,7 +3238,7 @@ msgstr "" #. module: base #: field:ir.actions.act_url,target:0 msgid "Action Target" -msgstr "Actiune tinta" +msgstr "Acțiune țintă" #. module: base #: model:res.country,name:base.ai @@ -3248,7 +3248,7 @@ msgstr "Anguilla" #. module: base #: model:ir.actions.report.xml,name:base.report_ir_model_overview msgid "Model Overview" -msgstr "Model de prezentare generala" +msgstr "Model de prezentare generală" #. module: base #: model:ir.module.module,shortdesc:base.module_product_margin @@ -3393,7 +3393,7 @@ msgstr "" #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 msgid "Record ID" -msgstr "ID Inregistrare" +msgstr "ID Înregistrare" #. module: base #: view:ir.filters:0 @@ -3454,7 +3454,7 @@ msgstr "" #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 msgid "Server Action" -msgstr "Actiune Server" +msgstr "Acțiune server" #. module: base #: help:ir.actions.client,params:0 @@ -3464,12 +3464,12 @@ msgstr "Argumentele trimise clientului impreuna cu eticheta vizualizarii" #. module: base #: model:ir.module.module,summary:base.module_contacts msgid "Contacts, People and Companies" -msgstr "Contacte, Oameni si Companii" +msgstr "Contacte, Oameni și Companii" #. module: base #: model:res.country,name:base.tt msgid "Trinidad and Tobago" -msgstr "Trinidad si Tobago" +msgstr "Trinidad și Tobago" #. module: base #: model:res.country,name:base.lv @@ -3484,7 +3484,7 @@ msgstr "Aplicatii Camp" #. module: base #: view:base.language.export:0 msgid "Export Translations" -msgstr "Exporta Traduceri" +msgstr "Exportă traduceri" #. module: base #: model:ir.module.module,description:base.module_auth_crypt @@ -3596,7 +3596,7 @@ msgstr "ir.actiuni.inchide_fereastra_act" #. module: base #: field:ir.server.object.lines,col1:0 msgid "Destination" -msgstr "Destinatie" +msgstr "Destinație" #. module: base #: model:res.country,name:base.lt @@ -3636,7 +3636,7 @@ msgstr "" #. module: base #: view:res.groups:0 msgid "Inherited" -msgstr "Mostenit" +msgstr "Moștenit" #. module: base #: code:addons/base/ir/ir_fields.py:146 @@ -3700,7 +3700,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." -msgstr "%y - An fara secol [00,99]." +msgstr "%y - An fără secol [00,99]." #. module: base #: model:ir.module.module,description:base.module_account_anglo_saxon @@ -3788,7 +3788,7 @@ msgstr "Integrare LinkedIn" #: code:addons/orm.py:2032 #, python-format msgid "Invalid Object Architecture!" -msgstr "Arhitectura Obiect Nevalida!" +msgstr "Arhitectură Obiect Nevalidă!" #. module: base #: code:addons/base/ir/ir_model.py:373 @@ -3817,7 +3817,7 @@ msgstr "%p - Echivalent pentru AM sau PM." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "Actiuni de repetare" +msgstr "Acțiuni de repetare" #. module: base #: help:multi_company.default,company_id:0 @@ -3836,14 +3836,14 @@ msgstr "" #. module: base #: model:res.country,name:base.nz msgid "New Zealand" -msgstr "Noua Zeelanda" +msgstr "Noua Zeelandă" #. module: base #: field:ir.exports.line,name:0 #: view:ir.model.fields:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "Nume camp" +msgstr "Nume câmp" #. module: base #: model:ir.actions.act_window,help:base.action_country @@ -3876,7 +3876,7 @@ msgstr "Numele tehnic al modelului de care apartine acest camp" #: selection:ir.actions.server,state:0 #: view:ir.values:0 msgid "Client Action" -msgstr "Actiune client" +msgstr "Acțiune client" #. module: base #: model:ir.module.module,description:base.module_subscription @@ -3925,7 +3925,7 @@ msgstr "Sloganul Companiei" #: view:res.users:0 #, python-format msgid "Application" -msgstr "Aplicatie" +msgstr "Aplicație" #. module: base #: model:res.groups,comment:base.group_hr_manager @@ -4034,13 +4034,13 @@ msgstr "Suedia" #. module: base #: field:ir.actions.report.xml,report_file:0 msgid "Report File" -msgstr "Fisier Raport" +msgstr "Fișier Raport" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 msgid "Gantt" -msgstr "Diagrama Gantt" +msgstr "Diagramă Gantt" #. module: base #: model:ir.module.module,description:base.module_l10n_in_hr_payroll @@ -4085,7 +4085,7 @@ msgstr "" #: code:addons/orm.py:3871 #, python-format msgid "Missing document(s)" -msgstr "Document(e) lipsa" +msgstr "Document(e) lipsă" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type @@ -4175,7 +4175,7 @@ msgstr "Calendar" #. module: base #: model:ir.module.category,name:base.module_category_knowledge_management msgid "Knowledge" -msgstr "Cunostinte" +msgstr "Cunoștințe" #. module: base #: field:workflow.activity,signal_send:0 @@ -4202,7 +4202,7 @@ msgstr "Dependenta modul" #. module: base #: model:res.country,name:base.bd msgid "Bangladesh" -msgstr "Bangladesh" +msgstr "Bangladeș" #. module: base #: model:ir.actions.act_window,help:base.action_partner_title_contact @@ -4241,12 +4241,12 @@ msgstr "Sondaj / Utilizator" #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Dependente" +msgstr "Dependențe" #. module: base #: field:multi_company.default,company_id:0 msgid "Main Company" -msgstr "Compania Principala" +msgstr "Compania principală" #. module: base #: field:ir.ui.menu,web_icon_hover:0 @@ -4280,7 +4280,7 @@ msgstr "Eroare! Nu puteti crea companii recursive." #. module: base #: field:res.partner,birthdate:0 msgid "Birthdate" -msgstr "Zi de nastere" +msgstr "Zi de naștere" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact @@ -4291,7 +4291,7 @@ msgstr "Titluri contact" #. module: base #: model:ir.module.module,shortdesc:base.module_product_manufacturer msgid "Products Manufacturers" -msgstr "Producatori de produse" +msgstr "Producători de produse" #. module: base #: code:addons/base/ir/ir_mail_server.py:239 @@ -4332,7 +4332,7 @@ msgstr "" #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" -msgstr "Poate fi cautat" +msgstr "Poate fi căutat" #. module: base #: model:res.country,name:base.uy @@ -4347,7 +4347,7 @@ msgstr "Finlandeza / Suomi" #. module: base #: view:ir.config_parameter:0 msgid "System Properties" -msgstr "Proprietatile Sistemului" +msgstr "Proprietățile sistemului" #. module: base #: field:ir.sequence,prefix:0 @@ -4357,12 +4357,12 @@ msgstr "Prefix" #. module: base #: selection:base.language.install,lang:0 msgid "German / Deutsch" -msgstr "Germana / Deutsch" +msgstr "Germană / Deutsch" #. module: base #: view:ir.actions.server:0 msgid "Fields Mapping" -msgstr "Reprezentare Campuri" +msgstr "Reprezentare cămpuri" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir @@ -4423,12 +4423,12 @@ msgstr "" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "Mapari campuri." +msgstr "Mapări câmpuri." #. module: base #: selection:res.request,priority:0 msgid "High" -msgstr "Ridicat(a)" +msgstr "Ridicat(ă)" #. module: base #: model:ir.module.module,description:base.module_mrp @@ -4513,7 +4513,7 @@ msgstr "Descriere" #: model:ir.actions.act_window,name:base.action_workflow_instance_form #: model:ir.ui.menu,name:base.menu_workflow_instance msgid "Instances" -msgstr "Instante" +msgstr "Instanțe" #. module: base #: model:ir.module.module,description:base.module_purchase_requisition @@ -4554,12 +4554,12 @@ msgstr "Persoane" #. module: base #: view:base.language.import:0 msgid "_Import" -msgstr "_Importa" +msgstr "_Importă" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Actiunea Initiala" +msgstr "Acțiunea inițială" #. module: base #: field:res.lang,grouping:0 @@ -4579,7 +4579,7 @@ msgstr "Structura Bazei de date" #. module: base #: model:ir.actions.act_window,name:base.action_partner_mass_mail msgid "Mass Mailing" -msgstr "Trimitere e-mail-uri in masa" +msgstr "Trimitere e-mail-uri în masă" #. module: base #: model:res.country,name:base.yt @@ -4603,7 +4603,7 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Interaction between rules" -msgstr "Interactiune intre norme" +msgstr "Interacțiune între norme" #. module: base #: field:res.company,rml_footer:0 @@ -4614,7 +4614,7 @@ msgstr "Subsolul paginii Raportului" #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" -msgstr "De la dreapta la stanga" +msgstr "De la dreapta la stânga" #. module: base #: model:res.country,name:base.sx @@ -4634,7 +4634,7 @@ msgstr "Filtre" #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "Actiuni Planificate" +msgstr "Acțiuni planificate" #. module: base #: model:ir.module.category,name:base.module_category_reporting @@ -4716,7 +4716,7 @@ msgstr "" #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "Creati un meniu" +msgstr "Creați un meniu" #. module: base #: model:res.country,name:base.tg @@ -4756,7 +4756,7 @@ msgstr "Acces Interzis" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "Numele Companiei" +msgstr "Numele companiei" #. module: base #: code:addons/orm.py:2808 @@ -4772,7 +4772,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_country #: model:ir.ui.menu,name:base.menu_country_partner msgid "Countries" -msgstr "Tari" +msgstr "Țări" #. module: base #: selection:ir.translation,type:0 @@ -4837,7 +4837,7 @@ msgstr "Saint Pierre si Miquelon" #. module: base #: view:ir.actions.todo:0 msgid "Search Actions" -msgstr "Cautare Actiuni" +msgstr "Căutare Acțiuni" #. module: base #: model:ir.module.module,description:base.module_base_calendar @@ -4900,7 +4900,7 @@ msgstr "Eticheta" #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." -msgstr "%d - Ziua din luna [01,31]." +msgstr "%d - Ziua din lună [01,31]." #. module: base #: model:res.country,name:base.tj @@ -4910,7 +4910,7 @@ msgstr "Tadjikistan" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "GPL-2 sau o versiune mai noua" +msgstr "GPL-2 sau o versiune mai nouă" #. module: base #: selection:workflow.activity,kind:0 @@ -4920,7 +4920,7 @@ msgstr "Opriti Tot" #. module: base #: field:res.company,paper_format:0 msgid "Paper Format" -msgstr "Format hartie" +msgstr "Format hârtie" #. module: base #: code:addons/base/module/module.py:644 @@ -5176,7 +5176,7 @@ msgstr "EAN13" #: code:addons/orm.py:2247 #, python-format msgid "Invalid Architecture!" -msgstr "Arhitectura Nevalida!" +msgstr "Arhitectură Nevalidă!" #. module: base #: model:res.country,name:base.pt @@ -5186,7 +5186,7 @@ msgstr "Portugalia" #. module: base #: model:ir.module.module,shortdesc:base.module_share msgid "Share any Document" -msgstr "Partajeaza orice Document" +msgstr "Partajează orice Document" #. module: base #: field:workflow.transition,group_id:0 @@ -5213,7 +5213,7 @@ msgstr "Italia - Contabilitate" #: field:ir.actions.server,help:0 #: field:ir.actions.wizard,help:0 msgid "Action description" -msgstr "Descriere actiune" +msgstr "Descriere acțiune" #. module: base #: model:ir.module.module,description:base.module_l10n_ma @@ -5287,7 +5287,7 @@ msgstr "Organizarea de Evenimente" #: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Customers" -msgstr "Clienti" +msgstr "Clienți" #. module: base #: model:res.country,name:base.au @@ -5302,7 +5302,7 @@ msgstr "Meniu :" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "Camp de baza" +msgstr "Câmp de bază" #. module: base #: model:ir.module.category,name:base.module_category_managing_vehicles_and_contracts @@ -5345,13 +5345,13 @@ msgstr "Polonia - Contabilitate" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "Actiunea de declansat" +msgstr "Acțiunea de declanșat" #. module: base #: field:ir.model.constraint,name:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "Constrangere" +msgstr "Constrângere" #. module: base #: selection:ir.values,key:0 @@ -5362,7 +5362,7 @@ msgstr "Implicit" #. module: base #: model:ir.module.module,summary:base.module_lunch msgid "Lunch Order, Meal, Food" -msgstr "Comanda pentru pranz, Masa, Mancare" +msgstr "Comandă pentru prânz, Masă, Mâncare" #. module: base #: view:ir.model.fields:0 @@ -5374,7 +5374,7 @@ msgstr "Solicitat (e)" #. module: base #: model:res.country,name:base.ro msgid "Romania" -msgstr "Romania" +msgstr "România" #. module: base #: field:ir.module.module,summary:0 @@ -5385,7 +5385,7 @@ msgstr "Rezumat" #. module: base #: model:ir.module.category,name:base.module_category_hidden_dependency msgid "Dependency" -msgstr "Dependenta" +msgstr "Dependență" #. module: base #: model:ir.module.module,description:base.module_portal @@ -5452,12 +5452,12 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_sale msgid "Quotations, Sales Orders, Invoicing" -msgstr "Cotatii, Comenzi de Vanzare, Facturare" +msgstr "Cotații, Comenzi de Vânzare, Facturare" #. module: base #: field:res.partner,parent_id:0 msgid "Related Company" -msgstr "Compania Asociata" +msgstr "Compania Asociată" #. module: base #: help:ir.actions.act_url,help:0 @@ -5483,7 +5483,7 @@ msgstr "Sfantul Scaun (Vatican)" #. module: base #: field:base.module.import,module_file:0 msgid "Module .ZIP file" -msgstr "Modulul pentru fisiere .ZIP" +msgstr "Modulul pentru fișiere .ZIP" #. module: base #: model:res.partner.category,name:base.res_partner_category_17 @@ -5493,17 +5493,17 @@ msgstr "Sector telecomunicatii" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "Declanseaza obiect" +msgstr "Declanșează obiect" #. module: base #: sql_constraint:ir.sequence.type:0 msgid "`code` must be unique." -msgstr "`codul` trebuie sa fie unic." +msgstr "`codul` trebuie să fie unic." #. module: base #: model:ir.module.module,shortdesc:base.module_knowledge msgid "Knowledge Management System" -msgstr "Sistemul de Management al Cunostintelor" +msgstr "Sistemul de management al cunoștințelor" #. module: base #: view:workflow.activity:0 @@ -5609,7 +5609,7 @@ msgstr "Spaniola (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Tipul secventei" +msgstr "Tipul secvenței" #. module: base #: view:base.language.export:0 @@ -5626,12 +5626,12 @@ msgstr "Hindi / हिंदी" #: model:ir.actions.act_window,name:base.action_view_base_language_install #: model:ir.ui.menu,name:base.menu_view_base_language_install msgid "Load a Translation" -msgstr "Incarca o Traducere" +msgstr "Încarcă o traducere" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed Version" -msgstr "Versiunea Instalata" +msgstr "Versiunea instalată" #. module: base #: model:ir.module.module,description:base.module_account_test @@ -5663,7 +5663,7 @@ msgstr "" #. module: base #: field:ir.module.module,license:0 msgid "License" -msgstr "Licenta" +msgstr "Licență" #. module: base #: field:ir.attachment,url:0 @@ -5673,7 +5673,7 @@ msgstr "Url" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "Constrangere SQL" +msgstr "Constrângere SQL" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -5821,7 +5821,7 @@ msgstr "" #. module: base #: view:ir.actions.act_window:0 msgid "Open a Window" -msgstr "Deschide o fereastra" +msgstr "Deschide o fereastră" #. module: base #: model:res.country,name:base.gq @@ -5929,7 +5929,7 @@ msgstr "Elvetia - Contabilitate" #: field:res.partner,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "Cod postal" +msgstr "Cod poștal" #. module: base #: view:ir.module.module:0 @@ -5982,7 +5982,7 @@ msgstr "Ghana" #. module: base #: field:res.lang,direction:0 msgid "Direction" -msgstr "Directie" +msgstr "Direcție" #. module: base #: view:ir.actions.act_window:0 @@ -5997,7 +5997,7 @@ msgstr "Directie" #: view:res.groups:0 #: field:res.groups,view_access:0 msgid "Views" -msgstr "Vizualizari" +msgstr "Vizualizări" #. module: base #: view:res.groups:0 @@ -6094,7 +6094,7 @@ msgstr "Fluxuri de lucru" #. module: base #: model:ir.ui.menu,name:base.next_id_73 msgid "Purchase" -msgstr "Achizitie" +msgstr "Achiziție" #. module: base #: selection:base.language.install,lang:0 @@ -6218,7 +6218,7 @@ msgstr "Omite" #. module: base #: model:ir.module.module,shortdesc:base.module_event_sale msgid "Events Sales" -msgstr "Evenimente Vanzari" +msgstr "Evenimente vânzări" #. module: base #: model:res.country,name:base.ls @@ -6244,7 +6244,7 @@ msgstr "Kenia" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "Translated Terms" -msgstr "Termeni tradusi" +msgstr "Termeni traduși" #. module: base #: selection:base.language.install,lang:0 @@ -6290,12 +6290,12 @@ msgstr "Peru" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "Setati NULL" +msgstr "Setați NULL" #. module: base #: view:res.users:0 msgid "Save" -msgstr "Salveaza" +msgstr "Salvează" #. module: base #: field:ir.actions.report.xml,report_xml:0 @@ -6337,7 +6337,7 @@ msgstr "Nu poate fi cautat" #: view:ir.config_parameter:0 #: field:ir.config_parameter,key:0 msgid "Key" -msgstr "Tasta" +msgstr "Tastă" #. module: base #: field:res.company,rml_header:0 @@ -6395,7 +6395,7 @@ msgstr "Plan de conturi SNC pentru Portugalia" #: view:ir.actions.report.xml:0 #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "Siguranta" +msgstr "Siguranță" #. module: base #: selection:base.language.install,lang:0 @@ -6418,7 +6418,7 @@ msgstr "Numai daca acest cont bancar apartine companiei d-voastra" #: code:addons/base/ir/ir_fields.py:337 #, python-format msgid "Unknown sub-field '%s'" -msgstr "Sub-camp '%s' necunoscut" +msgstr "Sub-câmp '%s' necunoscut" #. module: base #: model:res.country,name:base.za @@ -6430,7 +6430,7 @@ msgstr "Africa de Sud" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "Instalat(a)" +msgstr "Instalat(ă)" #. module: base #: selection:base.language.install,lang:0 @@ -6487,7 +6487,7 @@ msgstr "Affero GPL-3" #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" -msgstr "Urmatorul numar" +msgstr "Următorul număr" #. module: base #: help:workflow.transition,condition:0 @@ -6509,7 +6509,7 @@ msgstr "Tarife" #. module: base #: model:ir.module.module,shortdesc:base.module_email_template msgid "Email Templates" -msgstr "Sabloane e-mail" +msgstr "Șabloane e-mail" #. module: base #: model:res.country,name:base.sy @@ -6550,7 +6550,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "draft" -msgstr "ciorna" +msgstr "ciornă" #. module: base #: selection:ir.property,type:0 @@ -6694,7 +6694,7 @@ msgstr "Separator Zecimal" #: code:addons/orm.py:5319 #, python-format msgid "Missing required value for the field '%s'." -msgstr "Lipseste valoarea solicitata pentru campul '%s'." +msgstr "Lipsește valoarea solicitată pentru câmpul '%s'." #. module: base #: view:ir.rule:0 @@ -6739,13 +6739,13 @@ msgstr "Insula Man" #. module: base #: help:ir.actions.client,res_model:0 msgid "Optional model, mostly used for needactions." -msgstr "Model optional, folosit mai ales pentru actiuni" +msgstr "Model opțional, folosit mai ales pentru acțiuni" #. module: base #: code:addons/base/module/module.py:306 #, python-format msgid "The name of the module must be unique !" -msgstr "Numele modulului trebuie sa fie unic !" +msgstr "Numele modulului trebuie să fie unic !" #. module: base #: model:res.country,name:base.bv @@ -6755,7 +6755,7 @@ msgstr "Insula Bouvet" #. module: base #: field:ir.model.constraint,type:0 msgid "Constraint Type" -msgstr "Tipul Restrictiei" +msgstr "Tipul Restricției" #. module: base #: field:res.company,child_ids:0 @@ -6798,7 +6798,7 @@ msgstr "Buton Wizard" #: selection:ir.translation,type:0 #: field:multi_company.default,field_id:0 msgid "Field" -msgstr "Camp" +msgstr "Câmp" #. module: base #: model:ir.module.module,shortdesc:base.module_project_long_term @@ -6828,17 +6828,17 @@ msgstr "Lansati Wizard-ul de Configurare" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "Comenzi de Productie, Lista de Materiale, Distribuire" +msgstr "Comenzi de Producție, Listă de Materiale, Distribuire" #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" -msgstr "Nume Atasament" +msgstr "Nume atașament" #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "Anulati Actualizarea" +msgstr "Anulați Actualizarea" #. module: base #: model:ir.module.module,description:base.module_report_webkit @@ -7046,7 +7046,7 @@ msgstr "ir.actions.act_url" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "Termeni aplicatie" +msgstr "Termeni aplicație" #. module: base #: model:ir.actions.act_window,help:base.open_module_tree @@ -7075,7 +7075,7 @@ msgstr "Modul" #. module: base #: selection:base.language.install,lang:0 msgid "English (UK)" -msgstr "Engleza (Marea Britanie)" +msgstr "Engleză (Marea Britanie)" #. module: base #: selection:base.language.install,lang:0 @@ -7085,7 +7085,7 @@ msgstr "Japoneza / 日本語" #. module: base #: model:ir.model,name:base.model_base_language_import msgid "Language Import" -msgstr "Import limba" +msgstr "Import limbă" #. module: base #: help:workflow.transition,act_from:0 @@ -7201,7 +7201,7 @@ msgstr "Internet" #. module: base #: model:ir.module.module,shortdesc:base.module_lunch msgid "Lunch Orders" -msgstr "Comenzi Pranz" +msgstr "Comenzi Prânz" #. module: base #: selection:base.language.install,lang:0 @@ -7286,7 +7286,7 @@ msgstr "Baza Kanban" #: view:ir.actions.report.xml:0 #: view:ir.actions.server:0 msgid "Group By" -msgstr "Grupeaza dupa" +msgstr "Grupează după" #. module: base #: view:res.config.installer:0 @@ -7297,12 +7297,12 @@ msgstr "titlu" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "true" -msgstr "adevarat" +msgstr "adevărat" #. module: base #: model:ir.model,name:base.model_base_language_install msgid "Install Language" -msgstr "Instaleaza Limba" +msgstr "Instalează Limba" #. module: base #: model:res.partner.category,name:base.res_partner_category_11 @@ -7317,12 +7317,12 @@ msgstr "Traducere" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "inchis" +msgstr "închis" #. module: base #: selection:base.language.export,state:0 msgid "get" -msgstr "obtine" +msgstr "obține" #. module: base #: help:ir.model.fields,on_delete:0 @@ -7332,7 +7332,7 @@ msgstr "Proprietatea Sterge pentru campurile many2one" #. module: base #: model:ir.module.category,name:base.module_category_accounting_and_finance msgid "Accounting & Finance" -msgstr "Contabilitate si Finante" +msgstr "Contabilitate și Finanțe" #. module: base #: field:ir.actions.server,write_id:0 @@ -7446,7 +7446,7 @@ msgstr "" #: code:addons/base/ir/workflow/workflow.py:99 #, python-format msgid "Operation forbidden" -msgstr "Operatiune interzisa" +msgstr "Operațiune interzisă" #. module: base #: view:ir.actions.server:0 @@ -7510,7 +7510,7 @@ msgstr "" #. module: base #: field:res.partner.bank.type.field,bank_type_id:0 msgid "Bank Type" -msgstr "Tip Banca" +msgstr "Tip Bancă" #. module: base #: code:addons/base/res/res_users.py:99 @@ -7523,7 +7523,7 @@ msgstr "Numele grupului nu poate sa inceapa cu \"-\"" #: view:ir.module.module:0 #: model:ir.ui.menu,name:base.module_mi msgid "Apps" -msgstr "Aplicatii" +msgstr "Aplicații" #. module: base #: view:ir.ui.view_sc:0 @@ -7583,7 +7583,7 @@ msgstr "Telefon:" #. module: base #: field:res.partner,is_company:0 msgid "Is a Company" -msgstr "Este o Companie" +msgstr "Este o companie" #. module: base #: selection:ir.cron,interval_type:0 @@ -7618,7 +7618,7 @@ msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "Vizualizare Originala" +msgstr "Vizualizare Originală" #. module: base #: model:ir.module.module,description:base.module_web_kanban diff --git a/openerp/addons/base/i18n/ru.po b/openerp/addons/base/i18n/ru.po index 47c0d6a7bc1..0820328722c 100644 --- a/openerp/addons/base/i18n/ru.po +++ b/openerp/addons/base/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:17+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -882,7 +882,7 @@ msgstr "" #. module: base #: help:ir.cron,nextcall:0 msgid "Next planned execution date for this job." -msgstr "Следующая запланированная дата выполнения для данной работы." +msgstr "Следующая дата выполнения задачи планировщиком." #. module: base #: model:ir.model,name:base.model_ir_ui_view @@ -11026,7 +11026,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "Применить запланированные обновления" +msgstr "Выполнить обновление" #. module: base #: view:workflow.activity:0 @@ -14840,7 +14840,7 @@ msgstr "Файл веб-значка" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" -msgstr "Выполнить запланированные обновления" +msgstr "Выполнить обновления" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_journal diff --git a/openerp/addons/base/i18n/sk.po b/openerp/addons/base/i18n/sk.po index f5f5670fcb3..1fe42b2c740 100644 --- a/openerp/addons/base/i18n/sk.po +++ b/openerp/addons/base/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sl.po b/openerp/addons/base/i18n/sl.po index 80f3252715f..34e56d1352b 100644 --- a/openerp/addons/base/i18n/sl.po +++ b/openerp/addons/base/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sq.po b/openerp/addons/base/i18n/sq.po index 49637036c98..ed98a4597a5 100644 --- a/openerp/addons/base/i18n/sq.po +++ b/openerp/addons/base/i18n/sq.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:00+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:12+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sr.po b/openerp/addons/base/i18n/sr.po index 150575e65b8..e9d77f2f633 100644 --- a/openerp/addons/base/i18n/sr.po +++ b/openerp/addons/base/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:06+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sr@latin.po b/openerp/addons/base/i18n/sr@latin.po index 0316ea9d9e8..3730a1dcfa3 100644 --- a/openerp/addons/base/i18n/sr@latin.po +++ b/openerp/addons/base/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:10+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:21+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sv.po b/openerp/addons/base/i18n/sv.po index 6e7f7a3444d..b4e93dc875c 100644 --- a/openerp/addons/base/i18n/sv.po +++ b/openerp/addons/base/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/th.po b/openerp/addons/base/i18n/th.po index b77fa670c5f..487e249b2e7 100644 --- a/openerp/addons/base/i18n/th.po +++ b/openerp/addons/base/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:18+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/tlh.po b/openerp/addons/base/i18n/tlh.po index 53a827fdf48..4d29cbb774a 100644 --- a/openerp/addons/base/i18n/tlh.po +++ b/openerp/addons/base/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/tr.po b/openerp/addons/base/i18n/tr.po index b0dbdcb26f5..4dd3408dbdf 100644 --- a/openerp/addons/base/i18n/tr.po +++ b/openerp/addons/base/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -25,7 +25,7 @@ msgid "" " " msgstr "" "\n" -"Çek yazımı ve basımı için modül.\n" +"Çek Yazma ve Bastırma Modülü.\n" "================================================\n" " " @@ -37,7 +37,7 @@ msgstr "Azize Helen" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "Diğer Ayarlar" +msgstr "Diğer Yapılandırmalar" #. module: base #: selection:ir.property,type:0 @@ -73,7 +73,7 @@ msgstr "Boşluk Yok" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "Macarca / Magyar" +msgstr "Macarca" #. module: base #: selection:base.language.install,lang:0 @@ -103,7 +103,7 @@ msgstr "Hindistan Bordro" #: help:ir.cron,model:0 msgid "" "Model name on which the method to be called is located, e.g. 'res.partner'." -msgstr "" +msgstr "Çağrılacak yöntemin bulunduğu model adı, örn. 'res.partner'" #. module: base #: view:ir.module.module:0 @@ -125,6 +125,17 @@ msgid "" " * Product Attributes\n" " " msgstr "" +"\n" +"Ürün kartına üretici ve öznitelikleri ekleyecek bir modül.\n" +"====================================================================\n" +"\n" +"Şimdi bir ürün için aşağıdakileri tanımlayabilirsiniz:\n" +"-----------------------------------------------\n" +" * Üretici\n" +" * Üretici Ürün Adı\n" +" * Üretici Ürün Kodu\n" +" * Ürün Öznitelikleri\n" +" " #. module: base #: field:ir.actions.client,params:0 @@ -154,6 +165,9 @@ msgid "" "specified as a Python expression defining a list of triplets. For example: " "[('color','=','red')]" msgstr "" +"ilişki alanlarında olası değerleri sınırlayacak seçmeli etki alanı adı, bir " +"üçlü liste olarak tanımlanan bir Python ifadesi olarak belirlenmiştir. " +"Örneğin: [('renk','=','kırmızı')]" #. module: base #: field:res.partner,ref:0 @@ -194,6 +208,14 @@ msgid "" "revenue\n" "reports." msgstr "" +"\n" +"Giderlerden, Zaman Çizelgesi Kayıtlarından Faturalarınızı oluşturun.\n" +"========================================================\n" +"\n" +"Maliyetlere göre fatura oluşturan modül (insan kaynaklar, giderler, ...).\n" +"\n" +"Analitik hesaplarda fiyat listeleri tanımlayabilirsiniz, bazı kuramsal gelir " +"raporları yapabilirsiniz." #. module: base #: code:addons/base/ir/ir_sequence.py:104 @@ -228,7 +250,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:375 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "" +msgstr "\"%s\" boş alanının yeniden adlandırılmasına izin verilmez" #. module: base #: model:res.country,name:base.sz @@ -270,7 +292,7 @@ msgstr "Eskimo / ᐃᓄᒃᑎᑐᑦ" #. module: base #: model:res.groups,name:base.group_multi_currency msgid "Multi Currencies" -msgstr "Çoklu ParaBirimi" +msgstr "Çok Para Birimli" #. module: base #: model:ir.module.module,description:base.module_l10n_cl @@ -282,6 +304,12 @@ msgid "" "\n" " " msgstr "" +"\n" +"Şili hesap planı ve yerel vergi.\n" +"==============================================\n" +"Plan contable chileno e impuestos de acuerdo a disposiciones vigentes\n" +"\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_sale @@ -293,7 +321,7 @@ msgstr "Satış Yönetimi" msgid "" "The internal user that is in charge of communicating with this contact if " "any." -msgstr "" +msgstr "Eğer varsa, bu kişi ile iletişime görevlendirilmiş iç kullanıcı." #. module: base #: view:res.partner:0 @@ -321,6 +349,8 @@ msgid "" "Database ID of record to open in form view, when ``view_mode`` is set to " "'form' only" msgstr "" +"\"view_mode\" yalnızca 'form' olarak ayarlandığındaki görünüm formında " +"açılacak kaydın Veritabanı ID i" #. module: base #: help:ir.values,key2:0 @@ -332,6 +362,12 @@ msgid "" " - tree_but_open\n" "For defaults, an optional condition" msgstr "" +"İşlemler için, olası işlem yuvaları: \n" +" - client_action_multi\n" +" - client_print_multi\n" +" - client_action_relate\n" +" - tree_but_open\n" +"Varsayılanlar için, seçmeli bir koşul" #. module: base #: sql_constraint:res.lang:0 @@ -570,6 +606,8 @@ msgid "" "* Use emails to automatically confirm and send acknowledgements for any " "event registration\n" msgstr "" +"\n" +"Etkinliklerin organizasyonu ve yönetimi\n" #. module: base #: selection:base.language.install,lang:0 @@ -659,7 +697,7 @@ msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Satışlar & SatınAlmalar" +msgstr "Satışlar ve Satınalmalar" #. module: base #: view:ir.translation:0 @@ -1541,7 +1579,7 @@ msgstr "" #: model:ir.module.category,name:base.module_category_purchase_management #: model:ir.ui.menu,name:base.menu_purchase_root msgid "Purchases" -msgstr "SatınAlma" +msgstr "Satınalma" #. module: base #: model:res.country,name:base.md @@ -1854,7 +1892,7 @@ msgstr "Yükle" #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" -msgstr "Hesapsal Doğruluk" +msgstr "Hesaplama Doğruluğu" #. module: base #: model:ir.module.module,description:base.module_l10n_at @@ -1947,7 +1985,7 @@ msgstr "Okuma Erişimi" #. module: base #: help:ir.attachment,res_id:0 msgid "The record id this is attached to" -msgstr "" +msgstr "Kayıt buna eklenmiştir" #. module: base #: model:ir.module.module,description:base.module_share @@ -3167,7 +3205,7 @@ msgstr "" #. module: base #: field:res.company,rml_header1:0 msgid "Company Tagline" -msgstr "Firma Slogan" +msgstr "Firma Sloganı" #. module: base #: code:addons/base/res/res_users.py:674 @@ -3446,7 +3484,7 @@ msgstr "Web ikon dosyası (hover)" #. module: base #: help:res.currency,name:0 msgid "Currency Code (ISO 4217)" -msgstr "ParaBirimi Kodu (ISO 4217)" +msgstr "ParaNBirimi Kodu (ISO 4217)" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_contract @@ -4307,7 +4345,7 @@ msgstr "Menü :" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "Taban Alan" +msgstr "Temel Alan" #. module: base #: model:ir.module.category,name:base.module_category_managing_vehicles_and_contracts @@ -5558,7 +5596,7 @@ msgstr "Yapılandırma Sihirbazı'nı başlatın" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "Üretim Siparişler, Malzeme Listesi, Yönlendirme" +msgstr "Üretim Emirleri, Ürün Ağaçları, Rotalar" #. module: base #: field:ir.attachment,name:0 @@ -6371,7 +6409,7 @@ msgstr "Arttırma sayı sıfır olamaz." #. module: base #: model:ir.module.module,shortdesc:base.module_account_cancel msgid "Cancel Journal Entries" -msgstr "Yevmiye Girişleri İptalEt" +msgstr "Günlük Kaydı İptal" #. module: base #: field:res.partner,tz_offset:0 @@ -6664,7 +6702,7 @@ msgstr "Sudan" #: field:res.currency.rate,currency_rate_type_id:0 #: view:res.currency.rate.type:0 msgid "Currency Rate Type" -msgstr "ParaBirimi Kur Türü" +msgstr "Para Birimi Kur Türü" #. module: base #: model:ir.module.module,description:base.module_l10n_fr @@ -6743,7 +6781,7 @@ msgstr "İsrail" #: code:addons/base/res/res_config.py:444 #, python-format msgid "Cannot duplicate configuration!" -msgstr "" +msgstr "Yapılandırmasını çoğaltması yamazsınız!" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_syscohada @@ -6758,7 +6796,7 @@ msgstr "Bazen BIC ya da SWIFT olarak geçer." #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in msgid "Indian - Accounting" -msgstr "" +msgstr "Hindistan Hesapplanı" #. module: base #: field:res.lang,time_format:0 @@ -6860,7 +6898,7 @@ msgstr "Dış ID" #. module: base #: help:res.currency.rate,rate:0 msgid "The rate of the currency to the currency of rate 1" -msgstr "Parabirimi kur oranı (1'e göre)" +msgstr "Parabirimi kur oranı (kur oranı 1 e göre)" #. module: base #: model:res.country,name:base.uk @@ -6979,7 +7017,7 @@ msgstr "" #. module: base #: selection:res.currency,position:0 msgid "After Amount" -msgstr "Tutar Sonra" +msgstr "Tutardan Sonra" #. module: base #: selection:base.language.install,lang:0 @@ -6999,6 +7037,7 @@ msgstr "" #: model:res.groups,comment:base.group_hr_user msgid "the user will be able to approve document created by employees." msgstr "" +"Kullanıcı çalışanlar tarafından oluşturulan belgeyi onaylaması mümkün." #. module: base #: field:ir.ui.menu,needaction_enabled:0 @@ -7165,7 +7204,7 @@ msgstr "Fed. Eyalet" #. module: base #: field:ir.actions.server,copy_object:0 msgid "Copy Of" -msgstr "kopyası" +msgstr "Kopyası" #. module: base #: field:ir.model.data,display_name:0 @@ -7206,7 +7245,7 @@ msgstr "Eyalet Kodu" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_multilang msgid "Multi Language Chart of Accounts" -msgstr "Çok dilli Hesap Planları" +msgstr "Çok Dilli Hesap Planları" #. module: base #: model:ir.module.module,description:base.module_l10n_gt @@ -7236,7 +7275,7 @@ msgstr "Tercüme edilebilir" #. module: base #: help:base.language.import,code:0 msgid "ISO Language and Country code, e.g. en_US" -msgstr "ISO Dil ve Ülke kodu, örnek en_US" +msgstr "ISO Dil ve Ülke kodu, örn. en_US" #. module: base #: model:res.country,name:base.vn @@ -7261,7 +7300,7 @@ msgstr "" #. module: base #: view:ir.property:0 msgid "Parameters that are used by all resources." -msgstr "" +msgstr "Tüm kaynaklar tarafından kullanılan parametreler." #. module: base #: model:res.country,name:base.mz @@ -7860,7 +7899,7 @@ msgstr "Kanada" #. module: base #: view:base.language.export:0 msgid "Launchpad" -msgstr "" +msgstr "Launchpad" #. module: base #: help:res.currency.rate,currency_rate_type_id:0 @@ -7954,7 +7993,7 @@ msgstr "Banka türü alanları" #. module: base #: constraint:ir.rule:0 msgid "Rules can not be applied on Transient models." -msgstr "" +msgstr "Kurallar Geçiş modellerde uygulanamaz." #. module: base #: selection:base.language.install,lang:0 @@ -8188,7 +8227,7 @@ msgstr "Giriş Sıralama Numaraları" #. module: base #: view:base.language.export:0 msgid "POEdit" -msgstr "" +msgstr "POEdit" #. module: base #: view:ir.values:0 @@ -8283,7 +8322,7 @@ msgstr "Proje Yönetimi" #. module: base #: view:ir.module.module:0 msgid "Cancel Uninstall" -msgstr "Kaldırmayı İptal Et" +msgstr "Kaldırma İptal" #. module: base #: view:res.bank:0 @@ -8531,7 +8570,7 @@ msgstr "workflow.transition" #. module: base #: view:res.lang:0 msgid "%a - Abbreviated weekday name." -msgstr "%a - Günün kısaltması" +msgstr "%a - Gün kısaltması" #. module: base #: view:ir.ui.menu:0 @@ -8610,6 +8649,7 @@ msgstr "Açıklama HTML" #: help:res.groups,implied_ids:0 msgid "Users of this group automatically inherit those groups" msgstr "" +"Bu grubun kullanıcılar otomatik olarak bu grup özelliklerinini devralır" #. module: base #: model:ir.module.module,summary:base.module_note @@ -8757,7 +8797,7 @@ msgstr "Slovence / Slovenščina" #. module: base #: field:res.currency,position:0 msgid "Symbol Position" -msgstr "Sembol Pozisyonu" +msgstr "Simge Konumu" #. module: base #: model:ir.module.module,description:base.module_l10n_de @@ -8951,7 +8991,7 @@ msgstr "Ülkenin tam adı." #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "Yineleme" +msgstr "Yenileme" #. module: base #: code:addons/orm.py:4246 @@ -9290,7 +9330,7 @@ msgstr "" #. module: base #: view:ir.module.category:0 msgid "Module Category" -msgstr "Modül Kategori" +msgstr "Modül Kategorisi" #. module: base #: model:res.country,name:base.us @@ -9422,7 +9462,7 @@ msgstr "Özel Kısayollar" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_si msgid "Slovenian - Accounting" -msgstr "" +msgstr "Slovenya - Hesapplananı" #. module: base #: model:ir.module.module,description:base.module_account_cancel @@ -9512,7 +9552,7 @@ msgstr "Firmalar" #. module: base #: help:res.currency,symbol:0 msgid "Currency sign, to be used when printing amounts." -msgstr "Parabirimi Kuru işareti, (Miktarları basarken kullanmak için)" +msgstr "Para Birimi işareti, tutarları yazarken kullanılan" #. module: base #: view:res.lang:0 @@ -9736,7 +9776,7 @@ msgstr "Almanya" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth msgid "OAuth2 Authentication" -msgstr "" +msgstr "OAuth2 Authentication" #. module: base #: view:workflow:0 @@ -10024,7 +10064,7 @@ msgstr "Dakika" #. module: base #: view:res.currency:0 msgid "Display" -msgstr "Görüntüle" +msgstr "Görüntü" #. module: base #: model:res.groups,name:base.group_multi_company @@ -10126,7 +10166,7 @@ msgstr "Aralık Birimi" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Portal Stok" #. module: base #: field:workflow.activity,kind:0 @@ -10149,7 +10189,7 @@ msgstr "Terimleri Senkronize Et" #. module: base #: field:res.lang,thousands_sep:0 msgid "Thousands Separator" -msgstr "Binler Ayracı" +msgstr "Bin Ayracı" #. module: base #: field:res.request,create_date:0 @@ -10208,7 +10248,7 @@ msgstr "res.request" #. module: base #: field:res.partner,image_medium:0 msgid "Medium-sized image" -msgstr "" +msgstr "Orta ölçekli resim" #. module: base #: view:ir.model:0 @@ -10422,7 +10462,7 @@ msgstr "Bu şirketle ilişkili banka hesapları" #: model:ir.ui.menu,name:base.next_id_64 #: view:res.users:0 msgid "Sales" -msgstr "Satışlar" +msgstr "Satış" #. module: base #: field:ir.actions.server,child_ids:0 @@ -10499,7 +10539,7 @@ msgstr "Yapılacak" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_hr_employees msgid "Portal HR employees" -msgstr "" +msgstr "Portal İK Personeller" #. module: base #: selection:base.language.install,lang:0 @@ -10617,6 +10657,7 @@ msgstr "" msgid "" "Please contact your system administrator if you think this is an error." msgstr "" +"Bunun bir hata olduğunu düşünüyorsanız lütfen sistem yöneticinize başvurun." #. module: base #: code:addons/base/module/module.py:545 @@ -10995,7 +11036,7 @@ msgstr "" #. module: base #: field:ir.attachment,res_model:0 msgid "Resource Model" -msgstr "" +msgstr "Kayanak Model" #. module: base #: code:addons/custom.py:555 @@ -11298,12 +11339,12 @@ msgstr "Porto Riko" #. module: base #: model:ir.module.module,shortdesc:base.module_web_tests_demo msgid "Demonstration of web/javascript tests" -msgstr "" +msgstr "Demonstration of web/javascript tests" #. module: base #: field:workflow.transition,signal:0 msgid "Signal (Button Name)" -msgstr "" +msgstr "Sinyal Buton Adı)" #. module: base #: view:ir.actions.act_window:0 @@ -11555,7 +11596,7 @@ msgstr "A4" #. module: base #: view:res.config.installer:0 msgid "Configuration Installer" -msgstr "" +msgstr "Yapılandırma Yükleyicisi" #. module: base #: field:res.partner,customer:0 @@ -11645,13 +11686,13 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_fields_converter msgid "ir.fields.converter" -msgstr "" +msgstr "ir.fields.converter" #. module: base #: code:addons/base/res/res_partner.py:439 #, python-format msgid "Couldn't create contact without email address !" -msgstr "" +msgstr "E-posta adresi olmayan kontak oluşturmak olamazdı!" #. module: base #: model:ir.module.category,name:base.module_category_manufacturing @@ -11668,17 +11709,17 @@ msgstr "Komorlar" #. module: base #: view:ir.module.module:0 msgid "Cancel Install" -msgstr "Yükleme İptal" +msgstr "Kurulum İptal" #. module: base #: model:ir.model,name:base.model_ir_model_relation msgid "ir.model.relation" -msgstr "" +msgstr "ir.model.relation" #. module: base #: model:ir.module.module,shortdesc:base.module_account_check_writing msgid "Check Writing" -msgstr "" +msgstr "Çek Yazma" #. module: base #: model:ir.module.module,description:base.module_plugin_outlook @@ -11747,7 +11788,7 @@ msgstr "Erişim Kuralları" #. module: base #: field:res.groups,trans_implied_ids:0 msgid "Transitively inherits" -msgstr "" +msgstr "Geçişler devralır" #. module: base #: field:ir.default,ref_table:0 @@ -11955,7 +11996,7 @@ msgstr "Guetemala - Muhasebe" #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method, e.g. (uid,)." -msgstr "Metoda (fonsiyona) gönderilecek argümanlar ör: (uid,)." +msgstr "Metoda (fonsiyona) gönderilecek argümanlar örn.: (uid,)." #. module: base #: report:ir.module.reference:0 @@ -12016,7 +12057,7 @@ msgstr "Rapor Türü" #: view:res.partner.bank:0 #: view:res.users:0 msgid "State" -msgstr "Durum" +msgstr "Eyalet" #. module: base #: selection:base.language.install,lang:0 @@ -12072,7 +12113,7 @@ msgstr "Bağlantı Bilgileri" #. module: base #: model:res.partner.title,name:base.res_partner_title_prof msgid "Professor" -msgstr "" +msgstr "Profesör" #. module: base #: model:res.country,name:base.hm @@ -12101,7 +12142,7 @@ msgstr "Teklifleri, sipariş emirlerini ve faturalarınızı yönetmenizi sağla #. module: base #: field:res.users,login_date:0 msgid "Latest connection" -msgstr "" +msgstr "Son bağlantı" #. module: base #: field:res.groups,implied_ids:0 @@ -12208,7 +12249,7 @@ msgstr "" #. module: base #: model:res.country,name:base.cd msgid "Congo, Democratic Republic of the" -msgstr "" +msgstr "Kongo Demokratik Cumhuriyeti" #. module: base #: model:res.country,name:base.cr @@ -12243,7 +12284,7 @@ msgstr "Diğer Partner" #: view:workflow.workitem:0 #: field:workflow.workitem,state:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -12517,7 +12558,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW Path" -msgstr "" +msgstr "SXW Yolu" #. module: base #: model:ir.module.module,description:base.module_account_asset @@ -12963,7 +13004,7 @@ msgstr "" #. module: base #: field:res.company,company_registry:0 msgid "Company Registry" -msgstr "Vergi Dairesi" +msgstr "Şirket Sicil No" #. module: base #: view:ir.actions.report.xml:0 @@ -13079,7 +13120,7 @@ msgstr "French Southern Territories" #: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" -msgstr "ParaBirimi" +msgstr "Para Birimi" #. module: base #: view:res.lang:0 @@ -13155,7 +13196,7 @@ msgstr "bilinmeyen" #. module: base #: field:res.currency,symbol:0 msgid "Symbol" -msgstr "Sembol" +msgstr "Simge" #. module: base #: help:res.partner,image_medium:0 @@ -13271,7 +13312,7 @@ msgstr "Bağımlılıklar :" #. module: base #: field:res.company,vat:0 msgid "Tax ID" -msgstr "Vergi NO" +msgstr "Vergi No" #. module: base #: model:ir.module.module,shortdesc:base.module_account_bank_statement_extensions @@ -13449,7 +13490,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_no_autopicking msgid "Picking Before Manufacturing" -msgstr "Üretim Öncesi Seçmek" +msgstr "Üretim Öncesi Seçme" #. module: base #: model:ir.module.module,summary:base.module_note_pad @@ -13707,7 +13748,7 @@ msgstr "Modülleri Kurma" #. module: base #: model:ir.ui.menu,name:base.menu_import_crm msgid "Import & Synchronize" -msgstr "" +msgstr "İçe aktarım ve senkronize" #. module: base #: view:res.partner:0 @@ -14071,7 +14112,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_account_voucher msgid "Send Invoices and Track Payments" -msgstr "" +msgstr "Faturalar ve Parça Ödemeler gönder" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead @@ -14177,7 +14218,7 @@ msgstr "Tayvan" #. module: base #: model:ir.model,name:base.model_res_currency_rate msgid "Currency Rate" -msgstr "ParaBirimi Kur Oranı" +msgstr "ParabBirimi Oranı" #. module: base #: view:base.module.upgrade:0 @@ -14502,7 +14543,7 @@ msgstr "Erişim" #: field:res.partner,vat:0 #, python-format msgid "TIN" -msgstr "" +msgstr "V.No" #. module: base #: model:res.country,name:base.aw @@ -15088,7 +15129,7 @@ msgstr "Şili" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "Editör Görüntüle" +msgstr "Görünüm Düzenleyici" #. module: base #: view:ir.cron:0 @@ -15189,7 +15230,7 @@ msgstr "Sistem Güncelleme" #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW Content" -msgstr "" +msgstr "SXW İçerek" #. module: base #: field:ir.attachment,file_size:0 @@ -15317,7 +15358,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.open_module_tree #: model:ir.ui.menu,name:base.menu_module_tree msgid "Installed Modules" -msgstr "Kurulumuş Modüller" +msgstr "Kurulmuş Modüller" #. module: base #: code:addons/base/res/res_users.py:170 @@ -15468,7 +15509,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "Prospect" -msgstr "Muhtemel" +msgstr "Beklenti" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_invoice_directly diff --git a/openerp/addons/base/i18n/uk.po b/openerp/addons/base/i18n/uk.po index 1b225252f3a..5eaad5d001f 100644 --- a/openerp/addons/base/i18n/uk.po +++ b/openerp/addons/base/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ur.po b/openerp/addons/base/i18n/ur.po index 7c3475d5161..6cdb2bb0a4b 100644 --- a/openerp/addons/base/i18n/ur.po +++ b/openerp/addons/base/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:07+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/vi.po b/openerp/addons/base/i18n/vi.po index 3e8b0d2454c..0f3e9ff097e 100644 --- a/openerp/addons/base/i18n/vi.po +++ b/openerp/addons/base/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/zh_CN.po b/openerp/addons/base/i18n/zh_CN.po index 488bd2a854c..ceef0176579 100644 --- a/openerp/addons/base/i18n/zh_CN.po +++ b/openerp/addons/base/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:21+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/zh_HK.po b/openerp/addons/base/i18n/zh_HK.po index fd54e10a353..7ff8c866a5f 100644 --- a/openerp/addons/base/i18n/zh_HK.po +++ b/openerp/addons/base/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:08+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:19+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/zh_TW.po b/openerp/addons/base/i18n/zh_TW.po index ea9f0bd096b..212e6e7158b 100644 --- a/openerp/addons/base/i18n/zh_TW.po +++ b/openerp/addons/base/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 05:09+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-04-10 05:20+0000\n" +"X-Generator: Launchpad (build 16550)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/ir/ir_actions.py b/openerp/addons/base/ir/ir_actions.py index fb294ee781e..a130ab13a32 100644 --- a/openerp/addons/base/ir/ir_actions.py +++ b/openerp/addons/base/ir/ir_actions.py @@ -240,9 +240,9 @@ class act_window(osv.osv): 'name': fields.char('Action Name', size=64, translate=True), 'type': fields.char('Action Type', size=32, required=True), 'view_id': fields.many2one('ir.ui.view', 'View Ref.', ondelete='cascade'), - 'domain': fields.char('Domain Value', size=250, + 'domain': fields.char('Domain Value', help="Optional domain filtering of the destination data, as a Python expression"), - 'context': fields.char('Context Value', size=250, required=True, + 'context': fields.char('Context Value', required=True, help="Context dictionary as Python expression, empty by default (Default: {})"), 'res_id': fields.integer('Record ID', help="Database ID of record to open in form view, when ``view_mode`` is set to 'form' only"), 'res_model': fields.char('Destination Model', size=64, required=True, @@ -285,6 +285,36 @@ class act_window(osv.osv): 'multi': False, } + def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'): + """ call the method get_empty_list_help of the model and set the window action help message + """ + ids_int = isinstance(ids, (int, long)) + if ids_int: + ids = [ids] + results = super(act_window, self).read(cr, uid, ids, fields=fields, context=context, load=load) + + if not fields or 'help' in fields: + context = dict(context or {}) + eval_dict = { + 'active_model': context.get('active_model'), + 'active_id': context.get('active_id'), + 'active_ids': context.get('active_ids'), + 'uid': uid, + } + for res in results: + model = res.get('res_model') + if model and self.pool.get(model): + try: + with tools.mute_logger("openerp.tools.safe_eval"): + eval_context = eval(res['context'] or "{}", eval_dict) or {} + except Exception: + continue + custom_context = dict(context, **eval_context) + res['help'] = self.pool.get(model).get_empty_list_help(cr, uid, res.get('help', ""), context=custom_context) + if ids_int: + return results[0] + return results + def for_xml_id(self, cr, uid, module, xml_id, context=None): """ Returns the act_window object created for the provided xml_id @@ -631,7 +661,7 @@ class actions_server(osv.osv): return self.pool[action.action_id.type].read(cr, uid, action.action_id.id, context=context) if action.state=='code': - eval(action.code, cxt, mode="exec", nocopy=True) # nocopy allows to return 'action' + eval(action.code.strip(), cxt, mode="exec", nocopy=True) # nocopy allows to return 'action' if 'action' in cxt: return cxt['action'] diff --git a/openerp/addons/base/ir/ir_attachment.py b/openerp/addons/base/ir/ir_attachment.py index 10104669796..b4cb3a8c2cb 100644 --- a/openerp/addons/base/ir/ir_attachment.py +++ b/openerp/addons/base/ir/ir_attachment.py @@ -83,7 +83,7 @@ class ir_attachment(osv.osv): if bin_size: r = os.path.getsize(full_path) else: - r = open(full_path).read().encode('base64') + r = open(full_path,'rb').read().encode('base64') except IOError: _logger.error("_read_file reading %s",full_path) return r diff --git a/openerp/addons/base/ir/ir_cron.py b/openerp/addons/base/ir/ir_cron.py index eef43d535f3..bd2ab610bf4 100644 --- a/openerp/addons/base/ir/ir_cron.py +++ b/openerp/addons/base/ir/ir_cron.py @@ -18,8 +18,9 @@ # along with this program. If not, see . # ############################################################################## -import time import logging +import threading +import time import psycopg2 from datetime import datetime from dateutil.relativedelta import relativedelta @@ -190,6 +191,7 @@ class ir_cron(osv.osv): If a job was processed, returns True, otherwise returns False. """ db = openerp.sql_db.db_connect(db_name) + threading.current_thread().dbname = db_name cr = db.cursor() jobs = [] try: @@ -244,6 +246,9 @@ class ir_cron(osv.osv): # we're exiting due to an exception while acquiring the lock lock_cr.close() + if hasattr(threading.current_thread(), 'dbname'): # cron job could have removed it as side-effect + del threading.current_thread().dbname + def _try_lock(self, cr, uid, ids, context=None): """Try to grab a dummy exclusive write-lock to the rows with the given ids, to make sure a following write() or unlink() will not block due diff --git a/openerp/addons/base/ir/ir_filters.py b/openerp/addons/base/ir/ir_filters.py index 74665a1ffe3..f302fe5c7bf 100644 --- a/openerp/addons/base/ir/ir_filters.py +++ b/openerp/addons/base/ir/ir_filters.py @@ -28,7 +28,7 @@ class ir_filters(osv.osv): _description = 'Filters' def _list_all_models(self, cr, uid, context=None): - cr.execute("SELECT model, name from ir_model") + cr.execute("SELECT model, name FROM ir_model ORDER BY name") return cr.fetchall() def copy(self, cr, uid, id, default=None, context=None): diff --git a/openerp/addons/base/ir/ir_model.py b/openerp/addons/base/ir/ir_model.py index a95d29aa788..b39162ff80e 100644 --- a/openerp/addons/base/ir/ir_model.py +++ b/openerp/addons/base/ir/ir_model.py @@ -25,6 +25,7 @@ import time import types import openerp +import openerp.modules.registry from openerp import SUPERUSER_ID from openerp import tools from openerp.osv import fields,osv @@ -168,7 +169,9 @@ class ir_model(osv.osv): if not context.get(MODULE_UNINSTALL_FLAG): # only reload pool for normal unlink. For module uninstall the # reload is done independently in openerp.modules.loading + cr.commit() # must be committed before reloading registry in new cursor openerp.modules.registry.RegistryManager.new(cr.dbname) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return res @@ -194,6 +197,7 @@ class ir_model(osv.osv): field_state='manual', select=vals.get('select_level', '0')) self.pool[vals['model']]._auto_init(cr, ctx) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return res def instanciate(self, cr, user, model, context=None): @@ -259,7 +263,6 @@ class ir_model_fields(osv.osv): 'state': lambda self,cr,uid,ctx=None: (ctx and ctx.get('manual',False)) and 'manual' or 'base', 'on_delete': 'set null', 'select_level': '0', - 'size': 64, 'field_description': '', 'selectable': 1, } @@ -289,10 +292,10 @@ class ir_model_fields(osv.osv): return True def _size_gt_zero_msg(self, cr, user, ids, context=None): - return _('Size of the field can never be less than 1 !') + return _('Size of the field can never be less than 0 !') _sql_constraints = [ - ('size_gt_zero', 'CHECK (size>0)',_size_gt_zero_msg ), + ('size_gt_zero', 'CHECK (size>=0)',_size_gt_zero_msg ), ] def _drop_column(self, cr, uid, ids, context=None): @@ -318,6 +321,9 @@ class ir_model_fields(osv.osv): self._drop_column(cr, user, ids, context) res = super(ir_model_fields, self).unlink(cr, user, ids, context) + if not context.get(MODULE_UNINSTALL_FLAG): + cr.commit() + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return res def create(self, cr, user, vals, context=None): @@ -349,6 +355,7 @@ class ir_model_fields(osv.osv): select=vals.get('select_level', '0'), update_custom_fields=True) self.pool[vals['model']]._auto_init(cr, ctx) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return res @@ -463,6 +470,7 @@ class ir_model_fields(osv.osv): for col_name, col_prop, val in patch_struct[1]: setattr(obj._columns[col_name], col_prop, val) obj._auto_init(cr, ctx) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return res class ir_model_constraint(Model): diff --git a/openerp/addons/base/ir/ir_model_view.xml b/openerp/addons/base/ir/ir_model_view.xml index 0f13837a65a..15052e6e5c5 100644 --- a/openerp/addons/base/ir/ir_model_view.xml +++ b/openerp/addons/base/ir/ir_model_view.xml @@ -151,7 +151,7 @@ 'readonly': [('ttype','not in', ['many2one','one2many','many2many'])]}"/> - + diff --git a/openerp/addons/base/ir/ir_ui_view.py b/openerp/addons/base/ir/ir_ui_view.py index 6a73c1692e8..1d666f2f5c8 100644 --- a/openerp/addons/base/ir/ir_ui_view.py +++ b/openerp/addons/base/ir/ir_ui_view.py @@ -83,7 +83,8 @@ class view(osv.osv): } _defaults = { 'arch': '\n\n\t\n', - 'priority': 16 + 'priority': 16, + 'type': 'tree', } _order = "priority,name" diff --git a/openerp/addons/base/module/module.py b/openerp/addons/base/module/module.py index 7e370e86f0e..e0c38c969ec 100644 --- a/openerp/addons/base/module/module.py +++ b/openerp/addons/base/module/module.py @@ -411,7 +411,6 @@ class module(osv.osv): if to_install_ids: self.button_install(cr, uid, to_install_ids, context=context) - openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return dict(ACTION_DICT, name=_('Install')) def button_immediate_install(self, cr, uid, ids, context=None): @@ -500,7 +499,6 @@ class module(osv.osv): raise orm.except_orm(_('Error'), _("The `base` module cannot be uninstalled")) dep_ids = self.downstream_dependencies(cr, uid, ids, context=context) self.write(cr, uid, ids + dep_ids, {'state': 'to remove'}) - openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) return dict(ACTION_DICT, name=_('Uninstall')) def button_uninstall_cancel(self, cr, uid, ids, context=None): diff --git a/openerp/addons/base/res/res_company.py b/openerp/addons/base/res/res_company.py index 21c9b854ca3..022c9c06da0 100644 --- a/openerp/addons/base/res/res_company.py +++ b/openerp/addons/base/res/res_company.py @@ -305,7 +305,7 @@ class res_company(osv.osv): - + @@ -344,8 +344,8 @@ class res_company(osv.osv): """ - _header_a4 = _header_main % ('23.0cm', '27.6cm', '27.7cm', '27.7cm', '27.8cm', '27.3cm', '25.3cm', '25.0cm', '25.0cm', '24.6cm', '24.6cm', '24.5cm', '24.5cm') - _header_letter = _header_main % ('21.3cm', '25.9cm', '26.0cm', '26.0cm', '26.1cm', '25.6cm', '23.6cm', '23.3cm', '23.3cm', '22.9cm', '22.9cm', '22.8cm', '22.8cm') + _header_a4 = _header_main % ('21.7cm', '27.7cm', '27.7cm', '27.7cm', '27.8cm', '27.3cm', '25.3cm', '25.0cm', '25.0cm', '24.6cm', '24.6cm', '24.5cm', '24.5cm') + _header_letter = _header_main % ('20cm', '26.0cm', '26.0cm', '26.0cm', '26.1cm', '25.6cm', '23.6cm', '23.3cm', '23.3cm', '22.9cm', '22.9cm', '22.8cm', '22.8cm') def onchange_paper_format(self, cr, uid, ids, paper_format, context=None): if paper_format == 'us_letter': diff --git a/openerp/addons/base/res/res_currency.py b/openerp/addons/base/res/res_currency.py index 9e5eec6cfed..98dd6ed00d8 100644 --- a/openerp/addons/base/res/res_currency.py +++ b/openerp/addons/base/res/res_currency.py @@ -49,7 +49,7 @@ class res_currency(osv.osv): id, rate = cr.fetchall()[0] res[id] = rate else: - res[id] = 0 + raise osv.except_osv(_('Error!'),_("No currency rate associated for currency %d for the given period" % (id))) return res _name = "res.currency" _description = "Currency" diff --git a/openerp/addons/base/res/res_partner.py b/openerp/addons/base/res/res_partner.py index aef2af80d5f..31e2d44b306 100644 --- a/openerp/addons/base/res/res_partner.py +++ b/openerp/addons/base/res/res_partner.py @@ -375,16 +375,30 @@ class res_partner(osv.osv, format_address): def create(self, cr, uid, vals, context=None): if context is None: - context={} + context = {} # Update parent and siblings records - if vals.get('parent_id') and vals.get('use_parent_address'): - domain_siblings = [('parent_id', '=', vals['parent_id']), ('use_parent_address', '=', True)] - update_ids = [vals['parent_id']] + self.search(cr, uid, domain_siblings, context=context) - self.update_address(cr, uid, update_ids, vals, context) - return super(res_partner,self).create(cr, uid, vals, context=context) + if vals.get('parent_id'): + if 'use_parent_address' in vals: + use_parent_address = vals['use_parent_address'] + else: + use_parent_address = self.default_get(cr, uid, ['use_parent_address'], context=context)['use_parent_address'] + + if use_parent_address: + domain_siblings = [('parent_id', '=', vals['parent_id']), ('use_parent_address', '=', True)] + update_ids = [vals['parent_id']] + self.search(cr, uid, domain_siblings, context=context) + self.update_address(cr, uid, update_ids, vals, context) + + # add missing address keys + onchange_values = self.onchange_address(cr, uid, [], use_parent_address, + vals['parent_id'], context=context).get('value') or {} + vals.update(dict((key, value) + for key, value in onchange_values.iteritems() + if key in ADDRESS_FIELDS and key not in vals)) + + return super(res_partner, self).create(cr, uid, vals, context=context) def update_address(self, cr, uid, ids, vals, context=None): - addr_vals = dict((key, vals[key]) for key in POSTAL_ADDRESS_FIELDS if vals.get(key)) + addr_vals = dict((key, vals[key]) for key in POSTAL_ADDRESS_FIELDS if key in vals) if addr_vals: return super(res_partner, self).write(cr, uid, ids, addr_vals, context) @@ -411,10 +425,10 @@ class res_partner(osv.osv, format_address): """ Supported syntax: - 'Raoul ': will find name and email address - otherwise: default, everything is set as the name """ - match = re.search(r'([^\s,<@]+@[^>\s,]+)', text) - if match: - email = match.group(1) - name = text[:text.index(email)].replace('"','').replace('<','').strip() + emails = tools.email_split(text) + if emails: + email = emails[0] + name = text[:text.index(email)].replace('"', '').replace('<', '').strip() else: name, email = text, '' return name, email @@ -457,8 +471,7 @@ class res_partner(osv.osv, format_address): OR partner.name || ' (' || COALESCE(company.name,'') || ')' ''' + operator + ' %(name)s ' + limit_str, query_args) ids = map(lambda x: x[0], cr.fetchall()) - if args: - ids = self.search(cr, uid, [('id', 'in', ids)] + args, limit=limit, context=context) + ids = self.search(cr, uid, [('id', 'in', ids)] + args, limit=limit, context=context) if ids: return self.name_get(cr, uid, ids, context) return super(res_partner,self).name_search(cr, uid, name, args, operator=operator, context=context, limit=limit) diff --git a/openerp/addons/base/res/res_partner_view.xml b/openerp/addons/base/res/res_partner_view.xml index c920aba23ae..88a1266b689 100644 --- a/openerp/addons/base/res/res_partner_view.xml +++ b/openerp/addons/base/res/res_partner_view.xml @@ -10,7 +10,7 @@ - + @@ -305,15 +305,15 @@ filter_domain="['|','|',('name','ilike',self),('parent_id','ilike',self),('ref','=',self)]"/> - - + + - + + - - + @@ -420,7 +420,7 @@ - + Customers diff --git a/openerp/addons/base/res/res_users.py b/openerp/addons/base/res/res_users.py index 063996bec72..b0040d7c879 100644 --- a/openerp/addons/base/res/res_users.py +++ b/openerp/addons/base/res/res_users.py @@ -3,7 +3,7 @@ # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). -# Copyright (C) 2010-2012 OpenERP s.a. (). +# Copyright (C) 2010-2013 OpenERP s.a. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -172,6 +172,10 @@ class res_users(osv.osv): } } + def onchange_state(self, cr, uid, ids, state_id, context=None): + partner_ids = [user.partner_id.id for user in self.browse(cr, uid, ids, context=context)] + return self.pool.get('res.partner').onchange_state(cr, uid, partner_ids, state_id, context=context) + def onchange_type(self, cr, uid, ids, is_company, context=None): """ Wrapper on the user.partner onchange_type, because some calls to the partner form view applied to the user may trigger the @@ -426,7 +430,9 @@ class res_users(osv.osv): cr = self.pool.db.cursor() try: base = user_agent_env['base_location'] - self.pool['ir.config_parameter'].set_param(cr, uid, 'web.base.url', base) + ICP = self.pool['ir.config_parameter'] + if not ICP.get_param(cr, uid, 'web.base.url.freeze'): + ICP.set_param(cr, uid, 'web.base.url', base) cr.commit() except Exception: _logger.exception("Failed to update web.base.url configuration parameter") diff --git a/openerp/addons/base/static/src/js/apps.js b/openerp/addons/base/static/src/js/apps.js index a55c89a0483..4ac01006256 100644 --- a/openerp/addons/base/static/src/js/apps.js +++ b/openerp/addons/base/static/src/js/apps.js @@ -56,7 +56,8 @@ openerp.base = function(instance) { }); }; - i.src = _.str.sprintf('%s/web/static/src/img/sep-a.gif', client.origin); + var ts = new Date().getTime(); + i.src = _.str.sprintf('%s/web/static/src/img/sep-a.gif?%s', client.origin, ts); return d.promise(); }; if (instance.base.apps_client) { @@ -96,7 +97,7 @@ openerp.base = function(instance) { client.replace(self.$el). done(function() { client.$el.removeClass('openerp'); - client.do_action(self.remote_action_id); + client.do_action(self.remote_action_id, {hide_breadcrumb: true}); }); }). fail(function(client) { diff --git a/openerp/addons/base/tests/test_expression.py b/openerp/addons/base/tests/test_expression.py index c43dda85e9b..49bc7d57ca1 100644 --- a/openerp/addons/base/tests/test_expression.py +++ b/openerp/addons/base/tests/test_expression.py @@ -114,6 +114,12 @@ class test_expression(common.TransactionCase): # Test2: inheritance + relational fields user_ids = users_obj.search(cr, uid, [('child_ids.name', 'like', 'test_B')]) self.assertEqual(set(user_ids), set([b1]), 'searching through inheritance failed') + + # Special =? operator mean "is equal if right is set, otherwise always True" + user_ids = users_obj.search(cr, uid, [('name', 'like', 'test'), ('parent_id', '=?', False)]) + self.assertEqual(set(user_ids), set([a, b1, b2]), '(x =? False) failed') + user_ids = users_obj.search(cr, uid, [('name', 'like', 'test'), ('parent_id', '=?', b1_user.partner_id.id)]) + self.assertEqual(set(user_ids), set([b2]), '(x =? id) failed') def test_20_auto_join(self): registry, cr, uid = self.registry, self.cr, self.uid diff --git a/openerp/cli/server.py b/openerp/cli/server.py index 9339e590b7c..638fb081cac 100644 --- a/openerp/cli/server.py +++ b/openerp/cli/server.py @@ -220,15 +220,7 @@ def quit_on_signals(): os.unlink(config['pidfile']) sys.exit(0) -def configure_babel_localedata_path(): - # Workaround: py2exe and babel. - if hasattr(sys, 'frozen'): - import babel - babel.localedata._dirname = os.path.join(os.path.dirname(sys.executable), 'localedata') - def main(args): - os.environ["TZ"] = "UTC" - check_root_user() openerp.tools.config.parse_config(args) @@ -246,8 +238,6 @@ def main(args): config = openerp.tools.config - configure_babel_localedata_path() - setup_signal_handlers(signal_handler) if config["test_file"]: diff --git a/openerp/modules/loading.py b/openerp/modules/loading.py index aeafd45099f..327499a330b 100644 --- a/openerp/modules/loading.py +++ b/openerp/modules/loading.py @@ -34,6 +34,7 @@ import openerp import openerp.modules.db import openerp.modules.graph import openerp.modules.migration +import openerp.modules.registry import openerp.osv as osv import openerp.tools as tools from openerp import SUPERUSER_ID @@ -131,7 +132,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, skip_modules= loaded_modules = [] registry = openerp.registry(cr.dbname) migrations = openerp.modules.migration.MigrationManager(cr, graph) - _logger.debug('loading %d packages...', len(graph)) + _logger.info('loading %d modules...', len(graph)) # Query manual fields for all models at once and save them on the registry # so the initialization code for each model does not have to do it @@ -149,7 +150,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, skip_modules= if skip_modules and module_name in skip_modules: continue - _logger.info('module %s: loading objects', package.name) + _logger.debug('module %s: loading objects', package.name) migrations.migrate_module(package, 'pre') load_openerp_module(package.name) @@ -276,7 +277,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): tools.config["demo"]['all'] = 1 # This is a brand new registry, just created in - # openerp.modules.registry.RegistryManger.new(). + # openerp.modules.registry.RegistryManager.new(). registry = openerp.registry(cr.dbname) if 'base' in tools.config['update'] or 'all' in tools.config['update']: @@ -406,7 +407,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): # modules to remove next time cr.commit() _logger.info('Reloading registry once more after uninstalling modules') - return openerp.modules.registry.RegistryManger.new(cr.dbname, force_demo, status, update_module) + return openerp.modules.registry.RegistryManager.new(cr.dbname, force_demo, status, update_module) if report.failures: _logger.error('At least one test failed when loading the modules.') diff --git a/openerp/modules/registry.py b/openerp/modules/registry.py index 1dc1698d7d1..2569bf47aad 100644 --- a/openerp/modules/registry.py +++ b/openerp/modules/registry.py @@ -204,6 +204,10 @@ class RegistryManager(object): except KeyError: return cls.new(db_name, force_demo, status, update_module) + finally: + # set db tracker - cleaned up at the WSGI + # dispatching phase in openerp.service.wsgi_server.application + threading.current_thread().dbname = db_name @classmethod def new(cls, db_name, force_demo=False, status=None, @@ -245,6 +249,9 @@ class RegistryManager(object): registry.ready = True + if update_module: + # only in case of update, otherwise we'll have an infinite reload loop! + cls.signal_registry_change(db_name) return registry @classmethod diff --git a/openerp/osv/expression.py b/openerp/osv/expression.py index e4814dc2266..530eb83a2cc 100644 --- a/openerp/osv/expression.py +++ b/openerp/osv/expression.py @@ -198,7 +198,7 @@ def normalize_domain(domain): expected -= 1 else: expected += op_arity.get(token, 0) - 1 - assert expected == 0 + assert expected == 0, 'This domain is syntactically not correct: %s' % (domain) return result @@ -597,6 +597,15 @@ class ExtendedLeaf(object): self.leaf = normalize_leaf(self.leaf) return True +def create_substitution_leaf(leaf, new_elements, new_model=None): + """ From a leaf, create a new leaf (based on the new_elements tuple + and new_model), that will have the same join context. Used to + insert equivalent leafs in the processing stack. """ + if new_model is None: + new_model = leaf.model + new_join_context = [tuple(context) for context in leaf.join_context] + new_leaf = ExtendedLeaf(new_elements, new_model, join_context=new_join_context) + return new_leaf class expression(object): """ Parse a domain expression @@ -714,16 +723,6 @@ class expression(object): return ids + recursive_children(ids2, model, parent_field) return [(left, 'in', recursive_children(ids, left_model, parent or left_model._parent_name))] - def create_substitution_leaf(leaf, new_elements, new_model=None): - """ From a leaf, create a new leaf (based on the new_elements tuple - and new_model), that will have the same join context. Used to - insert equivalent leafs in the processing stack. """ - if new_model is None: - new_model = leaf.model - new_join_context = [tuple(context) for context in leaf.join_context] - new_leaf = ExtendedLeaf(new_elements, new_model, join_context=new_join_context) - return new_leaf - def pop(): """ Pop a leaf to process. """ return self.stack.pop() @@ -1152,7 +1151,8 @@ class expression(object): params = [] else: # '=?' behaves like '=' in other cases - query, params = self.__leaf_to_sql((left, '=', right), model) + query, params = self.__leaf_to_sql( + create_substitution_leaf(eleaf, (left, '=', right), model)) elif left == 'id': query = '%s.id %s %%s' % (table_alias, operator) diff --git a/openerp/osv/orm.py b/openerp/osv/orm.py index dd427d3907e..a451fbf6582 100644 --- a/openerp/osv/orm.py +++ b/openerp/osv/orm.py @@ -1028,7 +1028,7 @@ class BaseModel(object): 'required': bool(field['required']), 'readonly': bool(field['readonly']), 'domain': eval(field['domain']) if field['domain'] else None, - 'size': field['size'], + 'size': field['size'] or None, 'ondelete': field['on_delete'], 'translate': (field['translate']), 'manual': True, @@ -3536,6 +3536,14 @@ class BaseModel(object): return res + def get_empty_list_help(self, cr, user, help, context=None): + """ Generic method giving the help message displayed when having + no result to display in a list or kanban view. By default it returns + the help given in parameter that is generally the help message + defined in the action. + """ + return help + def check_field_access_rights(self, cr, user, operation, fields, context=None): """ Check the user access rights on the given fields. This raises Access @@ -4449,7 +4457,6 @@ class BaseModel(object): upd1 += ",%s,(now() at time zone 'UTC'),%s,(now() at time zone 'UTC')" upd2.extend((user, user)) cr.execute('insert into "'+self._table+'" (id'+upd0+") values ("+str(id_new)+upd1+')', tuple(upd2)) - self.check_access_rule(cr, user, [id_new], 'create', context=context) upd_todo.sort(lambda x, y: self._columns[x].priority-self._columns[y].priority) if self._parent_store and not context.get('defer_parent_store_computation'): @@ -4502,6 +4509,7 @@ class BaseModel(object): self.name_get(cr, user, [id_new], context=context)[0][1] + \ "' " + _("created.") self.log(cr, user, id_new, message, True, context=context) + self.check_access_rule(cr, user, [id_new], 'create', context=context) self.create_workflow(cr, user, [id_new], context=context) return id_new diff --git a/openerp/report/render/rml2pdf/trml2pdf.py b/openerp/report/render/rml2pdf/trml2pdf.py index 57699f4c807..7973ac56ec8 100644 --- a/openerp/report/render/rml2pdf/trml2pdf.py +++ b/openerp/report/render/rml2pdf/trml2pdf.py @@ -49,6 +49,19 @@ _logger = logging.getLogger(__name__) encoding = 'utf-8' +def select_fontname(fontname, default_fontname): + if fontname not in pdfmetrics.getRegisteredFontNames()\ + or fontname not in pdfmetrics.standardFonts: + # let reportlab attempt to find it + try: + pdfmetrics.getFont(fontname) + except Exception: + _logger.warning('Could not locate font %s, substituting default: %s', + fontname, default_fontname) + fontname = default_fontname + return fontname + + def _open_image(filename, path=None): """Attempt to open a binary file and return the descriptor """ @@ -159,7 +172,12 @@ class _rml_styles(object,): for attr in ['textColor', 'backColor', 'bulletColor', 'borderColor']: if node.get(attr): data[attr] = color.get(node.get(attr)) - for attr in ['fontName', 'bulletFontName', 'bulletText']: + for attr in ['bulletFontName', 'fontName']: + if node.get(attr): + fontname= select_fontname(node.get(attr), None) + if fontname is not None: + data['fontName'] = fontname + for attr in ['bulletText']: if node.get(attr): data[attr] = node.get(attr) for attr in ['fontSize', 'leftIndent', 'rightIndent', 'spaceBefore', 'spaceAfter', @@ -537,17 +555,7 @@ class _rml_canvas(object): self.canvas.drawPath(self.path, **utils.attr_get(node, [], {'fill':'bool','stroke':'bool'})) def setFont(self, node): - fontname = node.get('name') - if fontname not in pdfmetrics.getRegisteredFontNames()\ - or fontname not in pdfmetrics.standardFonts: - # let reportlab attempt to find it - try: - pdfmetrics.getFont(fontname) - except Exception: - _logger.debug('Could not locate font %s, substituting default: %s', - fontname, - self.canvas._fontname) - fontname = self.canvas._fontname + fontname = select_fontname(node.get('name'), self.canvas._fontname) return self.canvas.setFont(fontname, utils.unit_get(node.get('size'))) def render(self, node): diff --git a/openerp/service/cron.py b/openerp/service/cron.py index 3155ed4259b..fe57aa7186c 100644 --- a/openerp/service/cron.py +++ b/openerp/service/cron.py @@ -30,6 +30,7 @@ cron jobs, for all databases of a single OpenERP server instance. import logging import threading import time +from datetime import datetime import openerp @@ -56,6 +57,12 @@ def start_service(): threads it spawns are not marked daemon). """ + + # Force call to strptime just before starting the cron thread + # to prevent time.strptime AttributeError within the thread. + # See: http://bugs.python.org/issue7980 + datetime.strptime('2012-01-01', '%Y-%m-%d') + for i in range(openerp.tools.config['max_cron_threads']): def target(): cron_runner(i) diff --git a/openerp/service/db.py b/openerp/service/db.py index c440720b6fc..a480b65440a 100644 --- a/openerp/service/db.py +++ b/openerp/service/db.py @@ -37,7 +37,7 @@ def _initialize_db(id, db_name, demo, lang, user_password): cr = None registry = openerp.modules.registry.RegistryManager.new( - db_name, demo, self_actions[id], update_module=True)[1] + db_name, demo, self_actions[id], update_module=True) try: cr = openerp.sql_db.db_connect(db_name).cursor() @@ -197,18 +197,26 @@ def exp_drop(db_name): return True @contextlib.contextmanager -def _set_pg_password_in_environment(): - """ On Win32, pg_dump (and pg_restore) require that - :envvar:`PGPASSWORD` be set +def _set_pg_password_in_environment(self): + """ On systems where pg_restore/pg_dump require an explicit + password (i.e. when not connecting via unix sockets, and most + importantly on Windows), it is necessary to pass the PG user + password in the environment or in a special .pgpass file. This context management method handles setting - :envvar:`PGPASSWORD` iif win32 and the envvar is not already + :envvar:`PGPASSWORD` if it is not already set, and removing it afterwards. + + See also http://www.postgresql.org/docs/8.4/static/libpq-envars.html + + .. note:: This is not thread-safe, and should never be enabled for + SaaS (giving SaaS users the super-admin password is not a good idea + anyway) """ - if os.name != 'nt' or os.environ.get('PGPASSWORD'): + if os.environ.get('PGPASSWORD') or not tools.config['db_password']: yield else: - os.environ['PGPASSWORD'] = openerp.tools.config['db_password'] + os.environ['PGPASSWORD'] = tools.config['db_password'] try: yield finally: @@ -234,7 +242,7 @@ def exp_dump(db_name): if not data or res: _logger.error( 'DUMP DB: %s failed! Please verify the configuration of the database password on the server. ' - 'It should be provided as a -w command-line option, or as `db_password` in the ' + 'You may need to create a .pgpass file for authentication, or specify `db_password` in the ' 'server configuration file.\n %s', db_name, data) raise Exception, "Couldn't dump database" _logger.info('DUMP DB successful: %s', db_name) diff --git a/openerp/service/model.py b/openerp/service/model.py index af1939e95d7..dabe1451b2f 100644 --- a/openerp/service/model.py +++ b/openerp/service/model.py @@ -2,8 +2,10 @@ from functools import wraps import logging -from psycopg2 import IntegrityError, errorcodes +from psycopg2 import IntegrityError, OperationalError, errorcodes +import random import threading +import time import openerp from openerp.tools.translate import translate @@ -13,9 +15,16 @@ import security _logger = logging.getLogger(__name__) +PG_CONCURRENCY_ERRORS_TO_RETRY = (errorcodes.LOCK_NOT_AVAILABLE, errorcodes.SERIALIZATION_FAILURE, errorcodes.DEADLOCK_DETECTED) +MAX_TRIES_ON_CONCURRENCY_FAILURE = 5 + def dispatch(method, params): (db, uid, passwd ) = params[0:3] + + # set uid tracker - cleaned up at the WSGI + # dispatching phase in openerp.service.wsgi_server.application threading.current_thread().uid = uid + params = params[3:] if method == 'obj_list': raise NameError("obj_list has been discontinued via RPC as of 6.0, please query ir.model directly!") @@ -94,37 +103,50 @@ def check(f): def _(src): return tr(src, 'code') - try: - if openerp.registry(dbname)._init: - raise openerp.exceptions.Warning('Currently, this database is not fully loaded and can not be used.') - return f(dbname, *args, **kwargs) - except IntegrityError, inst: - registry = openerp.registry(dbname) - for key in registry._sql_error.keys(): - if key in inst[0]: - raise openerp.osv.orm.except_orm(_('Constraint Error'), tr(registry._sql_error[key], 'sql_constraint') or inst[0]) - if inst.pgcode in (errorcodes.NOT_NULL_VIOLATION, errorcodes.FOREIGN_KEY_VIOLATION, errorcodes.RESTRICT_VIOLATION): - msg = _('The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set') - _logger.debug("IntegrityError", exc_info=True) - try: - errortxt = inst.pgerror.replace('«','"').replace('»','"') - if '"public".' in errortxt: - context = errortxt.split('"public".')[1] - model_name = table = context.split('"')[1] - else: - last_quote_end = errortxt.rfind('"') - last_quote_begin = errortxt.rfind('"', 0, last_quote_end) - model_name = table = errortxt[last_quote_begin+1:last_quote_end].strip() - model = table.replace("_",".") - if model in registry: - model_obj = registry[model] - model_name = model_obj._description or model_obj._name - msg += _('\n\n[object with reference: %s - %s]') % (model_name, model) - except Exception: - pass - raise openerp.osv.orm.except_orm(_('Integrity Error'), msg) - else: - raise openerp.osv.orm.except_orm(_('Integrity Error'), inst[0]) + tries = 0 + while True: + try: + if openerp.registry(dbname)._init: + raise openerp.exceptions.Warning('Currently, this database is not fully loaded and can not be used.') + return f(dbname, *args, **kwargs) + except OperationalError, e: + # Automatically retry the typical transaction serialization errors + if e.pgcode not in PG_CONCURRENCY_ERRORS_TO_RETRY: + raise + if tries >= MAX_TRIES_ON_CONCURRENCY_FAILURE: + _logger.warning("%s, maximum number of tries reached" % errorcodes.lookup(e.pgcode)) + raise + wait_time = random.uniform(0.0, 2 ** tries) + tries += 1 + _logger.info("%s, retry %d/%d in %.04f sec..." % (errorcodes.lookup(e.pgcode), tries, MAX_TRIES_ON_CONCURRENCY_FAILURE, wait_time)) + time.sleep(wait_time) + except IntegrityError, inst: + registry = openerp.registry(dbname) + for key in registry._sql_error.keys(): + if key in inst[0]: + raise openerp.osv.orm.except_orm(_('Constraint Error'), tr(registry._sql_error[key], 'sql_constraint') or inst[0]) + if inst.pgcode in (errorcodes.NOT_NULL_VIOLATION, errorcodes.FOREIGN_KEY_VIOLATION, errorcodes.RESTRICT_VIOLATION): + msg = _('The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set') + _logger.debug("IntegrityError", exc_info=True) + try: + errortxt = inst.pgerror.replace('«','"').replace('»','"') + if '"public".' in errortxt: + context = errortxt.split('"public".')[1] + model_name = table = context.split('"')[1] + else: + last_quote_end = errortxt.rfind('"') + last_quote_begin = errortxt.rfind('"', 0, last_quote_end) + model_name = table = errortxt[last_quote_begin+1:last_quote_end].strip() + model = table.replace("_",".") + if model in registry: + model_obj = registry[model] + model_name = model_obj._description or model_obj._name + msg += _('\n\n[object with reference: %s - %s]') % (model_name, model) + except Exception: + pass + raise openerp.osv.orm.except_orm(_('Integrity Error'), msg) + else: + raise openerp.osv.orm.except_orm(_('Integrity Error'), inst[0]) return wrapper diff --git a/openerp/service/workers.py b/openerp/service/workers.py index 56d4d17583d..68433472aaf 100644 --- a/openerp/service/workers.py +++ b/openerp/service/workers.py @@ -388,9 +388,19 @@ class WorkerBaseWSGIServer(werkzeug.serving.BaseWSGIServer): class WorkerCron(Worker): """ Cron workers """ + + def __init__(self, multi): + super(WorkerCron, self).__init__(multi) + # process_work() below process a single database per call. + # The variable db_index is keeping track of the next database to + # process. + self.db_index = 0 + def sleep(self): - interval = 60 + self.pid % 10 # chorus effect - time.sleep(interval) + # Really sleep once all the databases have been processed. + if self.db_index == 0: + interval = 60 + self.pid % 10 # chorus effect + time.sleep(interval) def process_work(self): rpc_request = logging.getLogger('openerp.netsvc.rpc.request') @@ -400,7 +410,9 @@ class WorkerCron(Worker): db_names = config['db_name'].split(',') else: db_names = openerp.service.db.exp_list(True) - for db_name in db_names: + if len(db_names): + self.db_index = (self.db_index + 1) % len(db_names) + db_name = db_names[self.db_index] if rpc_request_flag: start_time = time.time() start_rss, start_vms = psutil.Process(os.getpid()).get_memory_info() @@ -419,8 +431,14 @@ class WorkerCron(Worker): end_rss, end_vms = psutil.Process(os.getpid()).get_memory_info() logline = '%s time:%.3fs mem: %sk -> %sk (diff: %sk)' % (db_name, end_time - start_time, start_vms / 1024, end_vms / 1024, (end_vms - start_vms)/1024) _logger.debug("WorkerCron (%s) %s", self.pid, logline) - # TODO Each job should be considered as one request instead of each run - self.request_count += 1 + + self.request_count += 1 + if self.request_count >= self.request_max and self.request_max < len(db_names): + _logger.error("There are more dabatases to process than allowed " + "by the `limit_request` configuration variable: %s more.", + len(db_names) - self.request_max) + else: + self.db_index = 0 def start(self): Worker.start(self) diff --git a/openerp/service/wsgi_server.py b/openerp/service/wsgi_server.py index 412a9f85263..df201825d31 100644 --- a/openerp/service/wsgi_server.py +++ b/openerp/service/wsgi_server.py @@ -390,6 +390,16 @@ def register_rpc_endpoint(endpoint, handler): def application_unproxied(environ, start_response): """ WSGI entry point.""" + # cleanup db/uid trackers - they're set at HTTP dispatch in + # web.session.OpenERPSession.send() and at RPC dispatch in + # openerp.service.web_services.objects_proxy.dispatch(). + # /!\ The cleanup cannot be done at the end of this `application` + # method because werkzeug still produces relevant logging afterwards + if hasattr(threading.current_thread(), 'uid'): + del threading.current_thread().uid + if hasattr(threading.current_thread(), 'dbname'): + del threading.current_thread().dbname + openerp.service.start_internal() # Try all handlers until one returns some result (i.e. not None). @@ -401,7 +411,6 @@ def application_unproxied(environ, start_response): continue return result - # We never returned from the loop. response = 'No handler found.\n' start_response('404 Not Found', [('Content-Type', 'text/plain'), ('Content-Length', str(len(response)))]) diff --git a/openerp/sql_db.py b/openerp/sql_db.py index c27784433c0..7a58a5fc515 100644 --- a/openerp/sql_db.py +++ b/openerp/sql_db.py @@ -3,7 +3,7 @@ # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). -# Copyright (C) 2010-2011 OpenERP s.a. (). +# Copyright (C) 2010-2013 OpenERP s.a. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -36,7 +36,6 @@ import psycopg2.extensions from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT, ISOLATION_LEVEL_READ_COMMITTED, ISOLATION_LEVEL_REPEATABLE_READ from psycopg2.pool import PoolError from psycopg2.psycopg1 import cursor as psycopg1cursor -from threading import currentThread psycopg2.extensions.register_type(psycopg2.extensions.UNICODE) @@ -393,7 +392,7 @@ class ConnectionPool(object): def borrow(self, dsn): self._debug('Borrow connection to %r', dsn) - # free leaked connections + # free dead and leaked connections for i, (cnx, _) in tools.reverse_enumerate(self._connections): if cnx.closed: self._connections.pop(i) @@ -407,6 +406,14 @@ class ConnectionPool(object): for i, (cnx, used) in enumerate(self._connections): if not used and dsn_are_equals(cnx.dsn, dsn): + try: + cnx.reset() + except psycopg2.OperationalError: + self._debug('Cannot reset connection at index %d: %r', i, cnx.dsn) + # psycopg2 2.4.4 and earlier do not allow closing a closed connection + if not cnx.closed: + cnx.close() + continue self._connections.pop(i) self._connections.append((cnx, True)) self._debug('Existing connection found at index %d', i) @@ -507,7 +514,6 @@ def db_connect(db_name): global _Pool if _Pool is None: _Pool = ConnectionPool(int(tools.config['db_maxconn'])) - currentThread().dbname = db_name return Connection(_Pool, db_name) def close_db(db_name): @@ -515,9 +521,6 @@ def close_db(db_name): global _Pool if _Pool: _Pool.close_all(dsn(db_name)) - ct = currentThread() - if hasattr(ct, 'dbname'): - delattr(ct, 'dbname') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/openerp/tools/image.py b/openerp/tools/image.py index d6a9e3ba24c..5e5055f252d 100644 --- a/openerp/tools/image.py +++ b/openerp/tools/image.py @@ -83,6 +83,8 @@ def image_resize_image(base64_source, size=(1024, 1024), encoding='base64', file if image.size != size: # If you need faster thumbnails you may use use Image.NEAREST image = ImageOps.fit(image, size, Image.ANTIALIAS) + if image.mode not in ["1", "L", "P", "RGB", "RGBA"]: + image = image.convert("RGB") background_stream = StringIO.StringIO() image.save(background_stream, filetype) diff --git a/openerp/tools/mail.py b/openerp/tools/mail.py index 1fe22094831..5970ce47040 100644 --- a/openerp/tools/mail.py +++ b/openerp/tools/mail.py @@ -50,7 +50,7 @@ def html_sanitize(src): src = ustr(src, errors='replace') # html encode email tags - part = re.compile(r"(<[^<>]+@[^<>]+>)", re.IGNORECASE | re.DOTALL) + part = re.compile(r"(<(([^a<>]|a[^<>\s])[^<>]*)@[^<>]+>)", re.IGNORECASE | re.DOTALL) src = part.sub(lambda m: cgi.escape(m.group(1)), src) # some corner cases make the parser crash (such as in test_mail) @@ -185,6 +185,8 @@ def html2plaintext(html, body_id=None, encoding='utf-8'): url_index.append(url) html = ustr(etree.tostring(tree, encoding=encoding)) + # \r char is converted into , must remove it + html = html.replace(' ', '') html = html.replace('', '*').replace('', '*') html = html.replace('', '*').replace('', '*') diff --git a/openerp/tools/misc.py b/openerp/tools/misc.py index bfc0ce20d6e..1b476fb9b2a 100644 --- a/openerp/tools/misc.py +++ b/openerp/tools/misc.py @@ -138,6 +138,7 @@ def file_open(name, mode="r", subdir='addons', pathinfo=False): # Is it below 'addons_path' or 'root_path'? name = os.path.normcase(os.path.normpath(name)) for root in adps + [rtp]: + root = os.path.normcase(os.path.normpath(root)) + os.sep if name.startswith(root): base = root.rstrip(os.sep) name = name[len(base) + 1:] diff --git a/openerp/tools/translate.py b/openerp/tools/translate.py index 705502de812..3c51fa5f3b5 100644 --- a/openerp/tools/translate.py +++ b/openerp/tools/translate.py @@ -550,6 +550,8 @@ def trans_parse_view(de): res.append(de.get('sum').encode("utf8")) if de.get("confirm"): res.append(de.get('confirm').encode("utf8")) + if de.get("placeholder"): + res.append(de.get('placeholder').encode("utf8")) for n in de: res.extend(trans_parse_view(n)) return res diff --git a/openerpcommand/cron.py b/openerpcommand/cron.py index 16b983dbc50..abfe1272b17 100644 --- a/openerpcommand/cron.py +++ b/openerpcommand/cron.py @@ -25,7 +25,6 @@ def run(args): openerp.cli.server.check_root_user() openerp.netsvc.init_logger() #openerp.cli.server.report_configuration() - openerp.cli.server.configure_babel_localedata_path() openerp.cli.server.setup_signal_handlers(openerp.cli.server.signal_handler) import openerp.addons.base if args.database: diff --git a/openerpcommand/web.py b/openerpcommand/web.py index 728318d1d9f..5875978ad32 100644 --- a/openerpcommand/web.py +++ b/openerpcommand/web.py @@ -49,7 +49,6 @@ def run(args): openerp.cli.server.check_root_user() openerp.netsvc.init_logger() #openerp.cli.server.report_configuration() - openerp.cli.server.configure_babel_localedata_path() target = openerp.service.wsgi_server.serve if not args.gevent: diff --git a/setup.nsi b/setup.nsi index ab58915e4e9..653a8798bb2 100644 --- a/setup.nsi +++ b/setup.nsi @@ -291,9 +291,10 @@ Function .onInit !insertmacro MUI_LANGDLL_DISPLAY ClearErrors - EnumRegKey $0 HKLM "SOFTWARE\PostgreSQL" 0 + EnumRegKey $0 HKLM "SOFTWARE\PostgreSQL\Installations" 0 IfErrors DoInstallPostgreSQL 0 - StrCpy $HasPostgreSQL 1 + StrCmp $0 "" DoInstallPostgreSQL + StrCpy $HasPostgreSQL 1 DoInstallPostgreSQL: FunctionEnd diff --git a/setup.py b/setup.py index 7c57024d6d3..00bfa571d2c 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,15 @@ def data(): r["Microsoft.VC90.CRT"] = glob.glob('C:\Microsoft.VC90.CRT\*.*') import babel - r["localedata"] = glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata", '*')) + # Add data, but also some .py files py2exe won't include automatically. + # TODO This should probably go under `packages`, instead of `data`, + # but this will work fine (especially since we don't use the ZIP file + # approach). + r["babel/localedata"] = glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata", '*')) + others = ['global.dat', 'numbers.py', 'support.py'] + r["babel"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), f), others) + others = ['frontend.py', 'mofile.py'] + r["babel/messages"] = map(lambda f: os.path.join(os.path.dirname(babel.__file__), "messages", f), others) import pytz tzdir = os.path.dirname(pytz.__file__) @@ -66,7 +74,7 @@ def py2exe_options(): 'options' : { "py2exe": { "skip_archive": 1, - "optimize": 2, + "optimize": 0, # keep the assert running, because the integrated tests rely on them. "dist_dir": 'dist', "packages": [ "DAV", "HTMLParser", "PIL", "asynchat", "asyncore", "commands", "dateutil", "decimal", "docutils", "email", "encodings", "imaplib", "jinja2", "lxml", "lxml._elementpath", "lxml.builder", "lxml.etree", "lxml.objectify", "mako", "openerp", "poplib", "pychart", "pydot", "pyparsing", "pytz", "reportlab", "select", "simplejson", "smtplib", "uuid", "vatnumber", "vobject", "xml", "xml.dom", "yaml", ], "excludes" : ["Tkconstants","Tkinter","tcl"], @@ -118,7 +126,7 @@ setuptools.setup( 'mock', 'PIL', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/ 'psutil', # windows binary code.google.com/p/psutil/downloads/list - 'psycopg2', + 'psycopg2 >= 2.2', 'pydot', 'pyparsing < 2', 'python-dateutil < 2',