[IMP] account: clean up form 'Configure your Chart of Accounts'
authorRaphael Collet <rco@openerp.com>
Tue, 19 Jun 2012 12:00:34 +0000 (14:00 +0200)
committerRaphael Collet <rco@openerp.com>
Tue, 19 Jun 2012 12:00:34 +0000 (14:00 +0200)
bzr revid: rco@openerp.com-20120619120034-viro7n40ezmcwr4v

72 files changed:
addons/account/account_installer.xml
addons/account/i18n/account.pot
addons/account/i18n/ar.po
addons/account/i18n/bg.po
addons/account/i18n/br.po
addons/account/i18n/bs.po
addons/account/i18n/ca.po
addons/account/i18n/cs.po
addons/account/i18n/da.po
addons/account/i18n/de.po
addons/account/i18n/el.po
addons/account/i18n/en_GB.po
addons/account/i18n/en_US.po
addons/account/i18n/es.po
addons/account/i18n/es_AR.po
addons/account/i18n/es_CL.po
addons/account/i18n/es_CR.po
addons/account/i18n/es_EC.po
addons/account/i18n/es_PY.po
addons/account/i18n/es_VE.po
addons/account/i18n/et.po
addons/account/i18n/eu.po
addons/account/i18n/fa.po
addons/account/i18n/fa_AF.po
addons/account/i18n/fi.po
addons/account/i18n/fr.po
addons/account/i18n/fr_BE.po
addons/account/i18n/gl.po
addons/account/i18n/gu.po
addons/account/i18n/he.po
addons/account/i18n/hi.po
addons/account/i18n/hr.po
addons/account/i18n/hu.po
addons/account/i18n/id.po
addons/account/i18n/it.po
addons/account/i18n/ja.po
addons/account/i18n/kab.po
addons/account/i18n/kk.po
addons/account/i18n/ko.po
addons/account/i18n/lo.po
addons/account/i18n/lt.po
addons/account/i18n/lv.po
addons/account/i18n/mk.po
addons/account/i18n/mn.po
addons/account/i18n/nb.po
addons/account/i18n/nl.po
addons/account/i18n/nl_BE.po
addons/account/i18n/oc.po
addons/account/i18n/pl.po
addons/account/i18n/pt.po
addons/account/i18n/pt_BR.po
addons/account/i18n/ro.po
addons/account/i18n/ru.po
addons/account/i18n/si.po
addons/account/i18n/sk.po
addons/account/i18n/sl.po
addons/account/i18n/sq.po
addons/account/i18n/sr.po
addons/account/i18n/sr@latin.po
addons/account/i18n/sv.po
addons/account/i18n/ta.po
addons/account/i18n/te.po
addons/account/i18n/th.po
addons/account/i18n/tlh.po
addons/account/i18n/tr.po
addons/account/i18n/ug.po
addons/account/i18n/uk.po
addons/account/i18n/ur.po
addons/account/i18n/vi.po
addons/account/i18n/zh_CN.po
addons/account/i18n/zh_HK.po
addons/account/i18n/zh_TW.po

index c12fe32..060abb6 100644 (file)
@@ -6,36 +6,37 @@
             <field name="type">form</field>
             <field name="inherit_id" ref="base.res_config_installer"/>
             <field name="arch" type="xml">
-            <data>
                 <form position="attributes">
                     <attribute name="string">Accounting Application Configuration</attribute>
                 </form>
-                <xpath expr="//button[@string='Install Modules']" position="attributes">
-                    <attribute name="string">Configure</attribute>
-                </xpath>
-                <xpath expr="//separator[@string='title']" position="after">
-                    <group colspan="4" width="600">
+                <button name="action_skip" position="replace"/>
+                <button name="action_next" position="attributes">
+                    <attribute name="string">Continue</attribute>
+                    <attribute name="class">oe_form_button_save_dirty</attribute>
+                </button>
+                <separator string="title" position="replace">
+                    <group>
+                        <group string="Select an Accounting Setup">
+                            <label colspan="2" string="This will automatically configure your taxes and accounts."/>
                             <field name="charts"/>
-                            <group colspan="4" groups="account.group_account_user">
-                                <separator col="4" colspan="4" string="Configure Fiscal Year"/>
-                                <field name="has_default_company" invisible="1" />
-                                <field name="company_id" colspan="4" widget="selection" attrs="{'invisible' : [('has_default_company', '=', True)]}"/><!-- we assume that this wizard will be run only by administrators and as this field may cause problem if hidden (because of the default company of the user removed from the selection because already configured), we simply choosed to remove the group "multi company" of it -->
-                                <field name="date_start" on_change="on_change_start_date(date_start)"/>
-                                <field name="date_stop"/>
-                                <field name="period" colspan="4"/>
-                            </group>
                         </group>
-                    </xpath>
-                <separator string="title" position="attributes">
-                    <attribute name="string">Configure Your Chart of Accounts</attribute>
-                    <label string="The default Chart of Accounts is matching your country selection. If no certified Chart of Accounts exists for your specified country, a generic one can be installed and will be selected by default."/>
+                        <group string="Configure your Fiscal Year" groups="account.group_account_user">
+                            <field name="has_default_company" invisible="1" />
+                            <field name="company_id" colspan="4" widget="selection" attrs="{'invisible' : [('has_default_company', '=', True)]}"/><!-- we assume that this wizard will be run only by administrators and as this field may cause problem if hidden (because of the default company of the user removed from the selection because already configured), we simply choosed to remove the group "multi company" of it -->
+                            <label for="date_start" string="Date Range"/>
+                            <div>
+                                <field name="date_start" on_change="on_change_start_date(date_start)" class="oe_inline"/> -
+                                <field name="date_stop" class="oe_inline"/>
+                            </div>
+                            <field name="period"/>
+                        </group>
+                    </group>                                
                 </separator>
-                </data>
             </field>
         </record>
 
         <record id="action_account_configuration_installer" model="ir.actions.act_window">
-            <field name="name">Install your Chart of Accounts</field>
+            <field name="name">Configure your Chart of Accounts</field>
             <field name="type">ir.actions.act_window</field>
             <field name="res_model">account.installer</field>
             <field name="view_id" ref="view_account_configuration_installer"/>
index 781ead6..8d702d5 100644 (file)
@@ -6608,7 +6608,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index d8ebd69..0d2a943 100644 (file)
@@ -7175,7 +7175,7 @@ msgstr "قالب حساب رئيسي"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 353dce5..9a1a14f 100644 (file)
@@ -7102,7 +7102,7 @@ msgstr "Шаблон на родителска сметка"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index fa92120..ed657b8 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index c4d9a7f..3f7c097 100644 (file)
@@ -7005,7 +7005,7 @@ msgstr "Predložak roditeljskog računa"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 653c0e4..0c9cab8 100644 (file)
@@ -7273,7 +7273,7 @@ msgstr "Plantilla compte pare"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 8acc343..4c2af8d 100644 (file)
@@ -7076,7 +7076,7 @@ msgstr "Nadřazená šablona účtu"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instalovat vaši účtovou osnovu"
 
 #. module: account
index def9c58..24fb912 100644 (file)
@@ -6983,7 +6983,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 84060bf..e67bba1 100644 (file)
@@ -7428,7 +7428,7 @@ msgstr "Basiskonto Vorlage"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Installieren Sie Ihren Kontenplan"
 
 #. module: account
index 0488df5..08f2359 100644 (file)
@@ -7056,7 +7056,7 @@ msgstr "Πρότυπο Μητρικού Λογαριασμού"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index aef1404..751fb63 100644 (file)
@@ -7026,7 +7026,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index aa76d32..77b69d4 100644 (file)
@@ -6970,7 +6970,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 0fe3df3..3b95153 100644 (file)
@@ -7386,7 +7386,7 @@ msgstr "Plantilla cuenta padre"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instalar su árbol de cuentas"
 
 #. module: account
index a019ce3..1e843b3 100644 (file)
@@ -7019,7 +7019,7 @@ msgstr "Plantilla cuenta padre"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 22275fa..586021e 100644 (file)
@@ -6984,7 +6984,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 40bb717..4c651b1 100644 (file)
@@ -7391,7 +7391,7 @@ msgstr "Plantilla cuenta padre"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instalar su árbol de cuentas"
 
 #. module: account
index 5e98cab..606f99f 100644 (file)
@@ -7366,7 +7366,7 @@ msgstr "Plantilla de cuenta padre"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instalar su Plan de Cuentas"
 
 #. module: account
index bee5954..5cff346 100644 (file)
@@ -7277,7 +7277,7 @@ msgstr "Plantilla cuenta padre"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index f7428a5..3e20c87 100644 (file)
@@ -6982,7 +6982,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 854c2d9..3bca7bb 100644 (file)
@@ -6974,7 +6974,7 @@ msgstr "Ülemkonto mall"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 26bbf75..60572c2 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 27a811b..19a4f58 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 2108196..67640ed 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 4dd4d51..7411de3 100644 (file)
@@ -7025,7 +7025,7 @@ msgstr "Ylätilin malli"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index c328c76..8262d6c 100644 (file)
@@ -7463,7 +7463,7 @@ msgstr "Modèle de compte parent"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Installer votre plan comptable"
 
 #. module: account
index 10cfd1f..e05cbf4 100644 (file)
@@ -6968,7 +6968,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index f5e0a41..b187949 100644 (file)
@@ -7180,7 +7180,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index f26e726..33333eb 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 4948665..6faf8c4 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 13d0bd3..d90b97c 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 026bf3c..a418051 100644 (file)
@@ -7206,7 +7206,7 @@ msgstr "Predložak nadređenog  konta"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instalirajte kontni plan"
 
 #. module: account
index ed74230..2a5e478 100644 (file)
@@ -7226,7 +7226,7 @@ msgstr "Gyűjtő főkönyvi számla sablon"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index af2092c..8bc916f 100644 (file)
@@ -7139,7 +7139,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 19c69a3..0a64a7b 100644 (file)
@@ -7222,7 +7222,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Installa un Piano dei Conti"
 
 #. module: account
index 786922b..236bc1a 100644 (file)
@@ -7102,7 +7102,7 @@ msgstr "親アカウントテンプレート"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "会計表のインストール"
 
 #. module: account
index d74695d..266b4fc 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index c874750..b0b28a9 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 6bdb33f..bc14ba7 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 2a10047..a917e4c 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index c319986..f80cbec 100644 (file)
@@ -6997,7 +6997,7 @@ msgstr "Tėvinis sąskaitos šablonas"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 47f6eba..8f4420f 100644 (file)
@@ -7165,7 +7165,7 @@ msgstr "Virskonta Veidne"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index d33ec56..b3d7d00 100644 (file)
@@ -6976,7 +6976,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index e6a632b..41d9138 100644 (file)
@@ -7078,7 +7078,7 @@ msgstr "Эцэг загвар"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 196ac0b..8a98a4b 100644 (file)
@@ -7018,7 +7018,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 7b10a78..f093edd 100644 (file)
@@ -7392,7 +7392,7 @@ msgstr "Bovenliggerde grootboekkaart template"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Installeer uw rekeningschema"
 
 #. module: account
index a45345d..b490758 100644 (file)
@@ -7231,7 +7231,7 @@ msgstr "Hoofdrekeningsjabloon"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 0cc6aff..45bd6c5 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index bd84ef4..9b1d28c 100644 (file)
@@ -7234,7 +7234,7 @@ msgstr "Szablon konta nadrzędnego"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instaluj swój plan kont"
 
 #. module: account
index 69e36d5..806cb34 100644 (file)
@@ -7377,7 +7377,7 @@ msgstr "Template da Conta Ascedente"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instale o seu Plano de Contas"
 
 #. module: account
index 014ca37..3e6f5c6 100644 (file)
@@ -7365,7 +7365,7 @@ msgstr "Modelo de conta-pai"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Instale o seu Plano de Contas"
 
 #. module: account
index 9b4e7c8..41d1bb0 100644 (file)
@@ -7278,7 +7278,7 @@ msgstr "Şablon cont părinte"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 237be7a..144ace4 100644 (file)
@@ -7184,7 +7184,7 @@ msgstr "Шаблон основного счета"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index b53c814..7f0d77e 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 79dc339..98e0f4b 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index d820c1a..123d139 100644 (file)
@@ -7114,7 +7114,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Namestitev kontnega načrta"
 
 #. module: account
index b8e211a..848ad2b 100644 (file)
@@ -6977,7 +6977,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 3333bb1..ec12b28 100644 (file)
@@ -7003,7 +7003,7 @@ msgstr "Predložak nadređenog konta"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 3d79f55..60e6b0f 100644 (file)
@@ -7010,7 +7010,7 @@ msgstr "Predložak nadređenog konta"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index a981ac1..6c03047 100644 (file)
@@ -7073,7 +7073,7 @@ msgstr "Parent Account Template"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "Installera din kontoplan"
 
 #. module: account
index 6d34488..e8984aa 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 3a94285..6e55015 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 99c43de..7f75e34 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 25f2f14..30b178e 100644 (file)
@@ -6965,7 +6965,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 81bcee9..719d079 100644 (file)
@@ -7229,7 +7229,7 @@ msgstr "Ana Hesap Şablonu"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index fb76266..a25aab1 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 1c27f91..adf4640 100644 (file)
@@ -6968,7 +6968,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 58649e5..4890e1d 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index e39ff40..59ab44a 100644 (file)
@@ -7239,7 +7239,7 @@ msgstr "Parent Account Template"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 5fdcede..8caf1c4 100644 (file)
@@ -7020,7 +7020,7 @@ msgstr "上级科目模板"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "导入会计科目表"
 
 #. module: account
index 5358e42..7b3a164 100644 (file)
@@ -6966,7 +6966,7 @@ msgstr ""
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr ""
 
 #. module: account
index 9a935b5..068d946 100644 (file)
@@ -7017,7 +7017,7 @@ msgstr "上級科目模板"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
-msgid "Install your Chart of Accounts"
+msgid "Configure your Chart of Accounts"
 msgstr "導入會計科目表"
 
 #. module: account