odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_financial_report/README.rst +131 -74
- odoo/addons/account_financial_report/__manifest__.py +6 -9
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
- odoo/addons/account_financial_report/i18n/ar.po +579 -433
- odoo/addons/account_financial_report/i18n/ca.po +474 -289
- odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
- odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
- odoo/addons/account_financial_report/i18n/de.po +455 -295
- odoo/addons/account_financial_report/i18n/es.po +458 -394
- odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
- odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
- odoo/addons/account_financial_report/i18n/fr.po +620 -435
- odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
- odoo/addons/account_financial_report/i18n/hr.po +506 -355
- odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
- odoo/addons/account_financial_report/i18n/it.po +538 -356
- odoo/addons/account_financial_report/i18n/ja.po +339 -240
- odoo/addons/account_financial_report/i18n/nl.po +462 -324
- odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
- odoo/addons/account_financial_report/i18n/pt.po +429 -242
- odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
- odoo/addons/account_financial_report/i18n/ro.po +499 -342
- odoo/addons/account_financial_report/i18n/sl.po +1945 -0
- odoo/addons/account_financial_report/i18n/sv.po +1997 -0
- odoo/addons/account_financial_report/i18n/tr.po +1947 -0
- odoo/addons/account_financial_report/menuitems.xml +1 -1
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
- odoo/addons/account_financial_report/models/account_group.py +62 -23
- odoo/addons/account_financial_report/models/account_move_line.py +33 -3
- odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
- odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
- odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
- odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
- odoo/addons/account_financial_report/report/abstract_report.py +73 -23
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
- odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
- odoo/addons/account_financial_report/report/general_ledger.py +421 -340
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
- odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
- odoo/addons/account_financial_report/report/open_items.py +113 -70
- odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
- odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
- odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
- odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
- odoo/addons/account_financial_report/report/trial_balance.py +463 -211
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
- odoo/addons/account_financial_report/report/vat_report.py +36 -25
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +8 -0
- odoo/addons/account_financial_report/static/description/index.html +106 -55
- odoo/addons/account_financial_report/static/src/css/report.css +77 -42
- odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
- odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
- odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
- odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
- odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
- odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
- odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
- {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
- odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
- odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
- odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
- odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
- odoo/addons/account_financial_report/static/src/js/report.js +0 -58
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
|
@@ -6,51 +6,64 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: Odoo Server 12.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
|
-
"PO-Revision-Date:
|
|
9
|
+
"PO-Revision-Date: 2023-01-05 17:45+0000\n"
|
|
10
10
|
"Last-Translator: Bole <bole@dajmi5.com>\n"
|
|
11
11
|
"Language-Team: none\n"
|
|
12
12
|
"Language: hr\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
14
14
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
15
|
"Content-Transfer-Encoding: \n"
|
|
16
|
-
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 &&
|
|
17
|
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
18
|
-
"X-Generator: Weblate
|
|
16
|
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
17
|
+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
18
|
+
"X-Generator: Weblate 4.14.1\n"
|
|
19
19
|
|
|
20
20
|
#. module: account_financial_report
|
|
21
21
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
22
22
|
msgid "> 120 d."
|
|
23
|
-
msgstr ""
|
|
23
|
+
msgstr "> 120 d."
|
|
24
24
|
|
|
25
25
|
#. module: account_financial_report
|
|
26
26
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
27
27
|
msgid "1 - 30 d."
|
|
28
|
-
msgstr ""
|
|
28
|
+
msgstr "1 - 30 d."
|
|
29
29
|
|
|
30
30
|
#. module: account_financial_report
|
|
31
31
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
32
32
|
msgid "10"
|
|
33
|
-
msgstr ""
|
|
33
|
+
msgstr "10"
|
|
34
34
|
|
|
35
35
|
#. module: account_financial_report
|
|
36
36
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
37
37
|
msgid "31 - 60 d."
|
|
38
|
-
msgstr ""
|
|
38
|
+
msgstr "31 - 60 d."
|
|
39
39
|
|
|
40
40
|
#. module: account_financial_report
|
|
41
41
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
42
42
|
msgid "61 - 90 d."
|
|
43
|
-
msgstr ""
|
|
43
|
+
msgstr "61 - 90 d."
|
|
44
44
|
|
|
45
45
|
#. module: account_financial_report
|
|
46
46
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
47
47
|
msgid "91 - 120 d."
|
|
48
|
-
msgstr ""
|
|
48
|
+
msgstr "91 - 120 d."
|
|
49
49
|
|
|
50
50
|
#. module: account_financial_report
|
|
51
51
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
52
52
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
|
+
msgstr "<b>Sa??etak poreza</b>"
|
|
55
|
+
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
58
|
+
msgid ""
|
|
59
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
60
|
+
" Duplicate amounts may be shown because more than one "
|
|
61
|
+
"analytical account may be defined in the journal items."
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#. module: account_financial_report
|
|
65
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
66
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
54
67
|
msgstr ""
|
|
55
68
|
|
|
56
69
|
#. module: account_financial_report
|
|
@@ -59,24 +72,25 @@ msgstr ""
|
|
|
59
72
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
60
73
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
61
74
|
msgid "<span class=\"oe_inline\">To</span>"
|
|
62
|
-
msgstr ""
|
|
75
|
+
msgstr "<span class=\"oe_inline\">Do</span>"
|
|
63
76
|
|
|
64
77
|
#. module: account_financial_report
|
|
65
78
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
|
|
66
79
|
msgid "Abstract Report"
|
|
67
|
-
msgstr ""
|
|
80
|
+
msgstr "Apstraktni izvje??taj"
|
|
68
81
|
|
|
69
82
|
#. module: account_financial_report
|
|
70
83
|
#: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
|
|
71
84
|
msgid "Abstract Wizard"
|
|
72
|
-
msgstr ""
|
|
85
|
+
msgstr "Apstraktni ??arobnjak"
|
|
73
86
|
|
|
74
87
|
#. module: account_financial_report
|
|
75
88
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
|
|
76
89
|
msgid "Abstract XLSX Account Financial Report"
|
|
77
|
-
msgstr ""
|
|
90
|
+
msgstr "Apstraktni XLSX Financijski izvje??taj"
|
|
78
91
|
|
|
79
92
|
#. module: account_financial_report
|
|
93
|
+
#. odoo-python
|
|
80
94
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
81
95
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
82
96
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -88,17 +102,21 @@ msgstr ""
|
|
|
88
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
89
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
90
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
91
|
-
#, python-format
|
|
92
105
|
msgid "Account"
|
|
93
106
|
msgstr "Konto"
|
|
94
107
|
|
|
108
|
+
#. module: account_financial_report
|
|
109
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
110
|
+
msgid "Account Age Report Config"
|
|
111
|
+
msgstr ""
|
|
112
|
+
|
|
95
113
|
#. module: account_financial_report
|
|
96
114
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
97
115
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
98
116
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
99
117
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
100
118
|
msgid "Account Code From"
|
|
101
|
-
msgstr ""
|
|
119
|
+
msgstr "??ifra konta od"
|
|
102
120
|
|
|
103
121
|
#. module: account_financial_report
|
|
104
122
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
@@ -112,55 +130,60 @@ msgstr "Konto"
|
|
|
112
130
|
#. module: account_financial_report
|
|
113
131
|
#: model:ir.model,name:account_financial_report.model_account_group
|
|
114
132
|
msgid "Account Group"
|
|
115
|
-
msgstr ""
|
|
133
|
+
msgstr "Grupa konta"
|
|
116
134
|
|
|
117
135
|
#. module: account_financial_report
|
|
136
|
+
#. odoo-python
|
|
118
137
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
119
|
-
#, python-format
|
|
120
138
|
msgid "Account Name"
|
|
121
|
-
msgstr ""
|
|
139
|
+
msgstr "Naziv konta"
|
|
122
140
|
|
|
123
141
|
#. module: account_financial_report
|
|
142
|
+
#. odoo-python
|
|
124
143
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
125
144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
126
|
-
#, python-format
|
|
127
145
|
msgid "Account at 0 filter"
|
|
128
|
-
msgstr ""
|
|
146
|
+
msgstr "Konto na 0 filteru"
|
|
129
147
|
|
|
130
148
|
#. module: account_financial_report
|
|
149
|
+
#. odoo-python
|
|
131
150
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
132
151
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
133
152
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
134
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
135
|
-
#, python-format
|
|
136
154
|
msgid "Account balance at 0 filter"
|
|
137
|
-
msgstr ""
|
|
155
|
+
msgstr "Saldo konta na 0 filteru"
|
|
138
156
|
|
|
139
157
|
#. module: account_financial_report
|
|
140
158
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
|
|
141
159
|
msgid "Accounts"
|
|
142
|
-
msgstr ""
|
|
160
|
+
msgstr "Konta"
|
|
143
161
|
|
|
144
162
|
#. module: account_financial_report
|
|
145
163
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
|
|
146
164
|
msgid "Activate centralization"
|
|
147
|
-
msgstr ""
|
|
165
|
+
msgstr "Aktiviraj centralizaciju"
|
|
148
166
|
|
|
149
167
|
#. module: account_financial_report
|
|
150
168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
151
169
|
msgid "Additional Filtering"
|
|
170
|
+
msgstr "Dodatno filtriranje"
|
|
171
|
+
|
|
172
|
+
#. module: account_financial_report
|
|
173
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
174
|
+
msgid "Age Partner Report Configuration"
|
|
152
175
|
msgstr ""
|
|
153
176
|
|
|
154
177
|
#. module: account_financial_report
|
|
155
178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
156
179
|
msgid ""
|
|
157
180
|
"Age ≤ 120\n"
|
|
158
|
-
"
|
|
181
|
+
" d."
|
|
159
182
|
msgstr ""
|
|
160
183
|
|
|
161
184
|
#. module: account_financial_report
|
|
185
|
+
#. odoo-python
|
|
162
186
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
163
|
-
#, python-format
|
|
164
187
|
msgid "Age ≤ 120 d."
|
|
165
188
|
msgstr ""
|
|
166
189
|
|
|
@@ -168,12 +191,12 @@ msgstr ""
|
|
|
168
191
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
169
192
|
msgid ""
|
|
170
193
|
"Age ≤ 30\n"
|
|
171
|
-
"
|
|
194
|
+
" d."
|
|
172
195
|
msgstr ""
|
|
173
196
|
|
|
174
197
|
#. module: account_financial_report
|
|
198
|
+
#. odoo-python
|
|
175
199
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
176
|
-
#, python-format
|
|
177
200
|
msgid "Age ≤ 30 d."
|
|
178
201
|
msgstr ""
|
|
179
202
|
|
|
@@ -181,12 +204,12 @@ msgstr ""
|
|
|
181
204
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
182
205
|
msgid ""
|
|
183
206
|
"Age ≤ 60\n"
|
|
184
|
-
"
|
|
207
|
+
" d."
|
|
185
208
|
msgstr ""
|
|
186
209
|
|
|
187
210
|
#. module: account_financial_report
|
|
211
|
+
#. odoo-python
|
|
188
212
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
189
|
-
#, python-format
|
|
190
213
|
msgid "Age ≤ 60 d."
|
|
191
214
|
msgstr ""
|
|
192
215
|
|
|
@@ -194,34 +217,34 @@ msgstr ""
|
|
|
194
217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
195
218
|
msgid ""
|
|
196
219
|
"Age ≤ 90\n"
|
|
197
|
-
"
|
|
220
|
+
" d."
|
|
198
221
|
msgstr ""
|
|
199
222
|
|
|
200
223
|
#. module: account_financial_report
|
|
224
|
+
#. odoo-python
|
|
201
225
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
202
|
-
#, python-format
|
|
203
226
|
msgid "Age ≤ 90 d."
|
|
204
227
|
msgstr ""
|
|
205
228
|
|
|
206
229
|
#. module: account_financial_report
|
|
230
|
+
#. odoo-python
|
|
207
231
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
208
232
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
209
233
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
210
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
211
235
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
212
|
-
#, python-format
|
|
213
236
|
msgid "Aged Partner Balance"
|
|
214
|
-
msgstr ""
|
|
237
|
+
msgstr "Dospjela dugovanja kupca"
|
|
215
238
|
|
|
216
239
|
#. module: account_financial_report
|
|
217
240
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
|
|
218
241
|
msgid "Aged Partner Balance -"
|
|
219
|
-
msgstr ""
|
|
242
|
+
msgstr "Dospjela dugovanja kupca -"
|
|
220
243
|
|
|
221
244
|
#. module: account_financial_report
|
|
222
245
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
|
|
223
246
|
msgid "Aged Partner Balance Report"
|
|
224
|
-
msgstr ""
|
|
247
|
+
msgstr "Izvje??taj dospjelih dugovanja kupaca"
|
|
225
248
|
|
|
226
249
|
#. module: account_financial_report
|
|
227
250
|
#: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
|
|
@@ -239,10 +262,10 @@ msgid "Aged Partner Balance XLSX"
|
|
|
239
262
|
msgstr ""
|
|
240
263
|
|
|
241
264
|
#. module: account_financial_report
|
|
265
|
+
#. odoo-python
|
|
242
266
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
243
|
-
#, python-format
|
|
244
267
|
msgid "All"
|
|
245
|
-
msgstr ""
|
|
268
|
+
msgstr "Sve"
|
|
246
269
|
|
|
247
270
|
#. module: account_financial_report
|
|
248
271
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
|
|
@@ -260,9 +283,10 @@ msgstr "Sve stavke"
|
|
|
260
283
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
|
|
261
284
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
|
|
262
285
|
msgid "All Posted Entries"
|
|
263
|
-
msgstr "Sve
|
|
286
|
+
msgstr "Sve proknji??ene stavke"
|
|
264
287
|
|
|
265
288
|
#. module: account_financial_report
|
|
289
|
+
#. odoo-python
|
|
266
290
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
267
291
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
268
292
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -271,11 +295,11 @@ msgstr "Sve proknjižene stavke"
|
|
|
271
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
272
296
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
273
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
274
|
-
#, python-format
|
|
275
298
|
msgid "All entries"
|
|
276
|
-
msgstr ""
|
|
299
|
+
msgstr "Sve stavke"
|
|
277
300
|
|
|
278
301
|
#. module: account_financial_report
|
|
302
|
+
#. odoo-python
|
|
279
303
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
280
304
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
281
305
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -284,76 +308,81 @@ msgstr ""
|
|
|
284
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
285
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
286
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
287
|
-
#, python-format
|
|
288
311
|
msgid "All posted entries"
|
|
289
|
-
msgstr ""
|
|
312
|
+
msgstr "Sve proknji??ene stavke"
|
|
290
313
|
|
|
291
314
|
#. module: account_financial_report
|
|
292
315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
293
316
|
msgid "Amount Cur."
|
|
294
|
-
msgstr ""
|
|
317
|
+
msgstr "Iznos u val."
|
|
295
318
|
|
|
296
319
|
#. module: account_financial_report
|
|
320
|
+
#. odoo-python
|
|
297
321
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
298
|
-
#, python-format
|
|
299
322
|
msgid "Amount Currency"
|
|
300
|
-
msgstr ""
|
|
323
|
+
msgstr "Iznos u valuti"
|
|
301
324
|
|
|
302
325
|
#. module: account_financial_report
|
|
326
|
+
#. odoo-python
|
|
303
327
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
304
328
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
305
|
-
#, python-format
|
|
306
329
|
msgid "Amount cur."
|
|
307
|
-
msgstr ""
|
|
330
|
+
msgstr "Iznos u val."
|
|
331
|
+
|
|
332
|
+
#. module: account_financial_report
|
|
333
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
334
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
335
|
+
msgid "Analytic Account"
|
|
336
|
+
msgstr "Analiti??ki Konto"
|
|
308
337
|
|
|
309
338
|
#. module: account_financial_report
|
|
339
|
+
#. odoo-python
|
|
310
340
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
311
341
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
msgstr "Konto"
|
|
342
|
+
msgid "Analytic Distribution"
|
|
343
|
+
msgstr "Analiti??ka distribucija"
|
|
315
344
|
|
|
316
345
|
#. module: account_financial_report
|
|
317
346
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
318
347
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
319
348
|
msgid "Balance"
|
|
320
|
-
msgstr ""
|
|
349
|
+
msgstr "Saldo"
|
|
321
350
|
|
|
322
351
|
#. module: account_financial_report
|
|
323
352
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
324
353
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
325
354
|
msgid "Base Amount"
|
|
326
|
-
msgstr ""
|
|
355
|
+
msgstr "Osnovica"
|
|
327
356
|
|
|
328
357
|
#. module: account_financial_report
|
|
358
|
+
#. odoo-python
|
|
329
359
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
330
|
-
#, python-format
|
|
331
360
|
msgid "Base Balance"
|
|
332
|
-
msgstr ""
|
|
361
|
+
msgstr "Saldo osnovica"
|
|
333
362
|
|
|
334
363
|
#. module: account_financial_report
|
|
364
|
+
#. odoo-python
|
|
335
365
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
336
|
-
#, python-format
|
|
337
366
|
msgid "Base Credit"
|
|
338
|
-
msgstr ""
|
|
367
|
+
msgstr "Osnovica Duguje"
|
|
339
368
|
|
|
340
369
|
#. module: account_financial_report
|
|
370
|
+
#. odoo-python
|
|
341
371
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
342
|
-
#, python-format
|
|
343
372
|
msgid "Base Debit"
|
|
344
|
-
msgstr ""
|
|
373
|
+
msgstr "Osnovica potra??uje"
|
|
345
374
|
|
|
346
375
|
#. module: account_financial_report
|
|
347
376
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
|
|
348
377
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
349
378
|
msgid "Based On"
|
|
350
|
-
msgstr ""
|
|
379
|
+
msgstr "Bazirano na"
|
|
351
380
|
|
|
352
381
|
#. module: account_financial_report
|
|
382
|
+
#. odoo-python
|
|
353
383
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
354
|
-
#, python-format
|
|
355
384
|
msgid "Based on"
|
|
356
|
-
msgstr ""
|
|
385
|
+
msgstr "Bazirano na"
|
|
357
386
|
|
|
358
387
|
#. module: account_financial_report
|
|
359
388
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -363,41 +392,38 @@ msgstr ""
|
|
|
363
392
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
364
393
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
365
394
|
msgid "Cancel"
|
|
366
|
-
msgstr "
|
|
395
|
+
msgstr "Otka??i"
|
|
367
396
|
|
|
368
397
|
#. module: account_financial_report
|
|
398
|
+
#. odoo-python
|
|
369
399
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
370
400
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
371
|
-
#, python-format
|
|
372
401
|
msgid "Centralize filter"
|
|
373
|
-
msgstr ""
|
|
402
|
+
msgstr "Centraliziraj filter"
|
|
374
403
|
|
|
375
404
|
#. module: account_financial_report
|
|
376
405
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
|
|
377
406
|
msgid "Centralized"
|
|
378
|
-
msgstr ""
|
|
379
|
-
|
|
380
|
-
#. module: account_financial_report
|
|
381
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
382
|
-
msgid "Child Accounts"
|
|
383
|
-
msgstr ""
|
|
407
|
+
msgstr "Centralizirano"
|
|
384
408
|
|
|
385
409
|
#. module: account_financial_report
|
|
386
410
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
387
411
|
msgid "Child Groups"
|
|
388
|
-
msgstr ""
|
|
412
|
+
msgstr "Podre??ene grupe"
|
|
389
413
|
|
|
390
414
|
#. module: account_financial_report
|
|
415
|
+
#. odoo-python
|
|
391
416
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
392
417
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
393
418
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
394
419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
395
|
-
#, python-format
|
|
396
420
|
msgid "Code"
|
|
397
|
-
msgstr ""
|
|
421
|
+
msgstr "??ifra"
|
|
398
422
|
|
|
399
423
|
#. module: account_financial_report
|
|
424
|
+
#. odoo-python
|
|
400
425
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
426
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
401
427
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
402
428
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
403
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -405,34 +431,27 @@ msgstr ""
|
|
|
405
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
406
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
407
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
408
|
-
#, python-format
|
|
409
434
|
msgid "Company"
|
|
410
435
|
msgstr "Tvrtka"
|
|
411
436
|
|
|
412
437
|
#. module: account_financial_report
|
|
413
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
|
|
414
439
|
msgid "Compute accounts"
|
|
415
|
-
msgstr ""
|
|
440
|
+
msgstr "Izra??unaj konta"
|
|
416
441
|
|
|
417
442
|
#. module: account_financial_report
|
|
418
|
-
#: model:ir.model
|
|
419
|
-
msgid "
|
|
443
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
444
|
+
msgid "Config Settings"
|
|
420
445
|
msgstr ""
|
|
421
446
|
|
|
422
447
|
#. module: account_financial_report
|
|
423
|
-
#:
|
|
424
|
-
msgid ""
|
|
425
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
426
|
-
" that represent prefixes of the actual accounts.\n"
|
|
427
|
-
"\n"
|
|
428
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
429
|
-
"\n"
|
|
430
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
431
|
-
"grouping.\n"
|
|
432
|
-
" "
|
|
448
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
449
|
+
msgid "Configurations"
|
|
433
450
|
msgstr ""
|
|
434
451
|
|
|
435
452
|
#. module: account_financial_report
|
|
453
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
454
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
436
455
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
437
456
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
438
457
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -443,6 +462,8 @@ msgid "Created by"
|
|
|
443
462
|
msgstr "Kreirao"
|
|
444
463
|
|
|
445
464
|
#. module: account_financial_report
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
446
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
447
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
448
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -453,6 +474,7 @@ msgid "Created on"
|
|
|
453
474
|
msgstr "Kreirano"
|
|
454
475
|
|
|
455
476
|
#. module: account_financial_report
|
|
477
|
+
#. odoo-python
|
|
456
478
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
457
479
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
458
480
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -461,57 +483,60 @@ msgstr "Kreirano"
|
|
|
461
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
462
484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
463
485
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
464
|
-
#, python-format
|
|
465
486
|
msgid "Credit"
|
|
466
|
-
msgstr ""
|
|
487
|
+
msgstr "Duguje"
|
|
467
488
|
|
|
468
489
|
#. module: account_financial_report
|
|
490
|
+
#. odoo-python
|
|
469
491
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
470
492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
msgstr ""
|
|
493
|
+
msgid "Cumul cur."
|
|
494
|
+
msgstr "Ukupno val."
|
|
474
495
|
|
|
475
496
|
#. module: account_financial_report
|
|
497
|
+
#. odoo-python
|
|
476
498
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
477
|
-
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
478
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
479
499
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
500
|
+
msgid "Cumul. Bal."
|
|
501
|
+
msgstr "Ukupno Sal."
|
|
502
|
+
|
|
503
|
+
#. module: account_financial_report
|
|
504
|
+
#. odoo-python
|
|
505
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
480
506
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
481
507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
482
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
483
|
-
#, python-format
|
|
484
508
|
msgid "Cur."
|
|
485
|
-
msgstr ""
|
|
509
|
+
msgstr "Val."
|
|
486
510
|
|
|
487
511
|
#. module: account_financial_report
|
|
512
|
+
#. odoo-python
|
|
488
513
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
489
514
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
490
|
-
#, python-format
|
|
491
515
|
msgid "Cur. Original"
|
|
492
|
-
msgstr ""
|
|
516
|
+
msgstr "Orig. Val."
|
|
493
517
|
|
|
494
518
|
#. module: account_financial_report
|
|
519
|
+
#. odoo-python
|
|
495
520
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
496
521
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
497
|
-
#, python-format
|
|
498
522
|
msgid "Cur. Residual"
|
|
499
523
|
msgstr ""
|
|
500
524
|
|
|
501
525
|
#. module: account_financial_report
|
|
526
|
+
#. odoo-python
|
|
502
527
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
503
|
-
#, python-format
|
|
504
528
|
msgid "Currency"
|
|
505
|
-
msgstr ""
|
|
529
|
+
msgstr "Valuta"
|
|
506
530
|
|
|
507
531
|
#. module: account_financial_report
|
|
532
|
+
#. odoo-python
|
|
508
533
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
509
534
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
510
|
-
#, python-format
|
|
511
535
|
msgid "Current"
|
|
512
536
|
msgstr ""
|
|
513
537
|
|
|
514
538
|
#. module: account_financial_report
|
|
539
|
+
#. odoo-python
|
|
515
540
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
516
541
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
517
542
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -521,7 +546,6 @@ msgstr ""
|
|
|
521
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
522
547
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
523
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
524
|
-
#, python-format
|
|
525
549
|
msgid "Date"
|
|
526
550
|
msgstr "Datum"
|
|
527
551
|
|
|
@@ -529,7 +553,7 @@ msgstr "Datum"
|
|
|
529
553
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
|
|
530
554
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
|
|
531
555
|
msgid "Date At"
|
|
532
|
-
msgstr ""
|
|
556
|
+
msgstr "Datum na"
|
|
533
557
|
|
|
534
558
|
#. module: account_financial_report
|
|
535
559
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
|
|
@@ -538,29 +562,29 @@ msgstr ""
|
|
|
538
562
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_from
|
|
539
563
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
540
564
|
msgid "Date From"
|
|
541
|
-
msgstr ""
|
|
565
|
+
msgstr "Datum od"
|
|
542
566
|
|
|
543
567
|
#. module: account_financial_report
|
|
544
568
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_to
|
|
545
569
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
|
|
546
570
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
547
571
|
msgid "Date To"
|
|
548
|
-
msgstr ""
|
|
572
|
+
msgstr "Datum do"
|
|
549
573
|
|
|
550
574
|
#. module: account_financial_report
|
|
575
|
+
#. odoo-python
|
|
551
576
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
552
577
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
553
578
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
554
579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
555
|
-
#, python-format
|
|
556
580
|
msgid "Date at filter"
|
|
557
|
-
msgstr ""
|
|
581
|
+
msgstr "Datum na filteru"
|
|
558
582
|
|
|
559
583
|
#. module: account_financial_report
|
|
584
|
+
#. odoo-python
|
|
560
585
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
561
|
-
#, python-format
|
|
562
586
|
msgid "Date from"
|
|
563
|
-
msgstr ""
|
|
587
|
+
msgstr "Datum od"
|
|
564
588
|
|
|
565
589
|
#. module: account_financial_report
|
|
566
590
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_range_id
|
|
@@ -571,22 +595,23 @@ msgid "Date range"
|
|
|
571
595
|
msgstr "Raspon datuma"
|
|
572
596
|
|
|
573
597
|
#. module: account_financial_report
|
|
598
|
+
#. odoo-python
|
|
574
599
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
575
600
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
576
601
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
577
602
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
578
603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
579
|
-
#, python-format
|
|
580
604
|
msgid "Date range filter"
|
|
581
|
-
msgstr ""
|
|
605
|
+
msgstr "Filter raspona datuma"
|
|
582
606
|
|
|
583
607
|
#. module: account_financial_report
|
|
608
|
+
#. odoo-python
|
|
584
609
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
585
|
-
#, python-format
|
|
586
610
|
msgid "Date to"
|
|
587
|
-
msgstr ""
|
|
611
|
+
msgstr "Datum do"
|
|
588
612
|
|
|
589
613
|
#. module: account_financial_report
|
|
614
|
+
#. odoo-python
|
|
590
615
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
591
616
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
592
617
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -595,51 +620,33 @@ msgstr ""
|
|
|
595
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
596
621
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
597
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
598
|
-
#, python-format
|
|
599
623
|
msgid "Debit"
|
|
600
|
-
msgstr ""
|
|
624
|
+
msgstr "Duguje"
|
|
601
625
|
|
|
602
626
|
#. module: account_financial_report
|
|
627
|
+
#. odoo-python
|
|
603
628
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
604
629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
605
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
606
|
-
#, python-format
|
|
607
631
|
msgid "Description"
|
|
608
|
-
msgstr ""
|
|
632
|
+
msgstr "Opis"
|
|
609
633
|
|
|
610
634
|
#. module: account_financial_report
|
|
611
635
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
|
|
612
636
|
msgid "Detail Taxes"
|
|
613
|
-
msgstr ""
|
|
637
|
+
msgstr "Pojedinosti poreza"
|
|
614
638
|
|
|
615
639
|
#. module: account_financial_report
|
|
616
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
617
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
618
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
619
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
640
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
641
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
620
642
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
621
643
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
622
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
623
644
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
624
645
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
625
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
626
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
627
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
628
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
629
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
630
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
631
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
632
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
634
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
635
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
639
646
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
640
647
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
641
648
|
msgid "Display Name"
|
|
642
|
-
msgstr "Naziv
|
|
649
|
+
msgstr "Naziv"
|
|
643
650
|
|
|
644
651
|
#. module: account_financial_report
|
|
645
652
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
@@ -654,7 +661,7 @@ msgstr ""
|
|
|
654
661
|
#. module: account_financial_report
|
|
655
662
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
|
|
656
663
|
msgid "Do not display parent levels"
|
|
657
|
-
msgstr ""
|
|
664
|
+
msgstr "Ne prikazuj nadre??ene razine"
|
|
658
665
|
|
|
659
666
|
#. module: account_financial_report
|
|
660
667
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
@@ -662,6 +669,8 @@ msgid ""
|
|
|
662
669
|
"Due\n"
|
|
663
670
|
" date"
|
|
664
671
|
msgstr ""
|
|
672
|
+
"Datum\n"
|
|
673
|
+
" dosp"
|
|
665
674
|
|
|
666
675
|
#. module: account_financial_report
|
|
667
676
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
@@ -669,23 +678,25 @@ msgid ""
|
|
|
669
678
|
"Due\n"
|
|
670
679
|
" date"
|
|
671
680
|
msgstr ""
|
|
681
|
+
"Datum\n"
|
|
682
|
+
" dosp"
|
|
672
683
|
|
|
673
684
|
#. module: account_financial_report
|
|
685
|
+
#. odoo-python
|
|
674
686
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
675
687
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
676
|
-
#, python-format
|
|
677
688
|
msgid "Due date"
|
|
678
|
-
msgstr ""
|
|
689
|
+
msgstr "Datum dospije??a"
|
|
679
690
|
|
|
680
691
|
#. module: account_financial_report
|
|
681
692
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
|
|
682
693
|
msgid "End Date"
|
|
683
|
-
msgstr ""
|
|
694
|
+
msgstr "Zavr??ni datum"
|
|
684
695
|
|
|
685
696
|
#. module: account_financial_report
|
|
686
697
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
|
|
687
698
|
msgid "End date"
|
|
688
|
-
msgstr ""
|
|
699
|
+
msgstr "Zavr??ni datum"
|
|
689
700
|
|
|
690
701
|
#. module: account_financial_report
|
|
691
702
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
@@ -693,6 +704,8 @@ msgid ""
|
|
|
693
704
|
"Ending\n"
|
|
694
705
|
" balance"
|
|
695
706
|
msgstr ""
|
|
707
|
+
"Zavr??ni\n"
|
|
708
|
+
" saldo"
|
|
696
709
|
|
|
697
710
|
#. module: account_financial_report
|
|
698
711
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
@@ -700,17 +713,17 @@ msgstr ""
|
|
|
700
713
|
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
701
714
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
702
715
|
msgid "Ending account in a range"
|
|
703
|
-
msgstr ""
|
|
716
|
+
msgstr "Zavr??ni konto u rasponu"
|
|
704
717
|
|
|
705
718
|
#. module: account_financial_report
|
|
719
|
+
#. odoo-python
|
|
706
720
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
707
721
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
708
722
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
709
723
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
710
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
711
|
-
#, python-format
|
|
712
725
|
msgid "Ending balance"
|
|
713
|
-
msgstr ""
|
|
726
|
+
msgstr "Zavr??ni saldo"
|
|
714
727
|
|
|
715
728
|
#. module: account_financial_report
|
|
716
729
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -718,14 +731,17 @@ msgid ""
|
|
|
718
731
|
"Ending balance\n"
|
|
719
732
|
" cur."
|
|
720
733
|
msgstr ""
|
|
734
|
+
"Zavr??ni saldo\n"
|
|
735
|
+
" val."
|
|
721
736
|
|
|
722
737
|
#. module: account_financial_report
|
|
738
|
+
#. odoo-python
|
|
723
739
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
724
|
-
#, python-format
|
|
725
740
|
msgid "Entries sorted by"
|
|
726
|
-
msgstr ""
|
|
741
|
+
msgstr "Stavke sortirane po"
|
|
727
742
|
|
|
728
743
|
#. module: account_financial_report
|
|
744
|
+
#. odoo-python
|
|
729
745
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
730
746
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
731
747
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -734,22 +750,20 @@ msgstr ""
|
|
|
734
750
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
735
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
736
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
737
|
-
#, python-format
|
|
738
753
|
msgid "Entry"
|
|
739
|
-
msgstr ""
|
|
754
|
+
msgstr "Stavka"
|
|
740
755
|
|
|
741
756
|
#. module: account_financial_report
|
|
757
|
+
#. odoo-python
|
|
742
758
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
743
|
-
#, python-format
|
|
744
759
|
msgid "Entry number"
|
|
745
|
-
msgstr ""
|
|
760
|
+
msgstr "Broj stavke"
|
|
746
761
|
|
|
747
762
|
#. module: account_financial_report
|
|
748
|
-
#.
|
|
763
|
+
#. odoo-javascript
|
|
749
764
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
750
|
-
#, python-format
|
|
751
765
|
msgid "Export"
|
|
752
|
-
msgstr ""
|
|
766
|
+
msgstr "Izvoz"
|
|
753
767
|
|
|
754
768
|
#. module: account_financial_report
|
|
755
769
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -769,7 +783,7 @@ msgstr "Izvoz PDF"
|
|
|
769
783
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
770
784
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
771
785
|
msgid "Export XLSX"
|
|
772
|
-
msgstr ""
|
|
786
|
+
msgstr "Izvoz XLSX"
|
|
773
787
|
|
|
774
788
|
#. module: account_financial_report
|
|
775
789
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
|
|
@@ -778,28 +792,22 @@ msgstr ""
|
|
|
778
792
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_ids
|
|
779
793
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
780
794
|
msgid "Filter accounts"
|
|
781
|
-
msgstr ""
|
|
795
|
+
msgstr "Filtriraj konta"
|
|
782
796
|
|
|
783
797
|
#. module: account_financial_report
|
|
784
798
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
785
799
|
msgid "Filter analytic accounts"
|
|
786
|
-
msgstr ""
|
|
787
|
-
|
|
788
|
-
#. module: account_financial_report
|
|
789
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
790
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
791
|
-
msgid "Filter analytic tags"
|
|
792
|
-
msgstr ""
|
|
800
|
+
msgstr "Filtriraj analiti??ka konta"
|
|
793
801
|
|
|
794
802
|
#. module: account_financial_report
|
|
795
803
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
796
804
|
msgid "Filter cost centers"
|
|
797
|
-
msgstr ""
|
|
805
|
+
msgstr "Filtriraj mjesta tro??ka"
|
|
798
806
|
|
|
799
807
|
#. module: account_financial_report
|
|
800
808
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
|
|
801
809
|
msgid "Filter journals"
|
|
802
|
-
msgstr ""
|
|
810
|
+
msgstr "Filtriraj dnevnike"
|
|
803
811
|
|
|
804
812
|
#. module: account_financial_report
|
|
805
813
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
|
|
@@ -808,11 +816,16 @@ msgstr ""
|
|
|
808
816
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids
|
|
809
817
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
810
818
|
msgid "Filter partners"
|
|
811
|
-
msgstr ""
|
|
819
|
+
msgstr "Filtriraj partnere"
|
|
812
820
|
|
|
813
821
|
#. module: account_financial_report
|
|
814
822
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
|
|
815
823
|
msgid "Foreign Currency"
|
|
824
|
+
msgstr "Strana valuta"
|
|
825
|
+
|
|
826
|
+
#. module: account_financial_report
|
|
827
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
828
|
+
msgid "Format"
|
|
816
829
|
msgstr ""
|
|
817
830
|
|
|
818
831
|
#. module: account_financial_report
|
|
@@ -821,46 +834,46 @@ msgstr ""
|
|
|
821
834
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
822
835
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
823
836
|
msgid "From Code"
|
|
824
|
-
msgstr ""
|
|
837
|
+
msgstr "Od ??ifre"
|
|
825
838
|
|
|
826
839
|
#. module: account_financial_report
|
|
827
840
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
828
841
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
829
842
|
msgid "From:"
|
|
830
|
-
msgstr ""
|
|
843
|
+
msgstr "Od:"
|
|
831
844
|
|
|
832
845
|
#. module: account_financial_report
|
|
846
|
+
#. odoo-python
|
|
833
847
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
834
848
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
835
849
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
msgstr ""
|
|
850
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
851
|
+
msgstr "Od: %(date_from)s do: %(date_to)s"
|
|
839
852
|
|
|
840
853
|
#. module: account_financial_report
|
|
841
854
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
842
855
|
msgid "Full Code"
|
|
843
|
-
msgstr ""
|
|
856
|
+
msgstr "Puna ??ifra"
|
|
844
857
|
|
|
845
858
|
#. module: account_financial_report
|
|
846
859
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
|
|
847
860
|
msgid "Full Name"
|
|
848
|
-
msgstr ""
|
|
861
|
+
msgstr "Puni naziv"
|
|
849
862
|
|
|
850
863
|
#. module: account_financial_report
|
|
851
864
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
|
|
852
865
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
|
|
853
866
|
msgid "Fy Start Date"
|
|
854
|
-
msgstr ""
|
|
867
|
+
msgstr "Po??etni dan Fisk god"
|
|
855
868
|
|
|
856
869
|
#. module: account_financial_report
|
|
870
|
+
#. odoo-python
|
|
857
871
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
858
872
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
859
873
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
860
874
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
861
875
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
862
876
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
863
|
-
#, python-format
|
|
864
877
|
msgid "General Ledger"
|
|
865
878
|
msgstr ""
|
|
866
879
|
|
|
@@ -899,64 +912,55 @@ msgstr ""
|
|
|
899
912
|
#. module: account_financial_report
|
|
900
913
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
901
914
|
msgid "Group entries by"
|
|
915
|
+
msgstr "Grupiraj stavke po"
|
|
916
|
+
|
|
917
|
+
#. module: account_financial_report
|
|
918
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
919
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
920
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
921
|
+
msgid "Grouped By"
|
|
922
|
+
msgstr "Grupirano po"
|
|
923
|
+
|
|
924
|
+
#. module: account_financial_report
|
|
925
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
926
|
+
msgid ""
|
|
927
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
902
928
|
msgstr ""
|
|
903
929
|
|
|
904
930
|
#. module: account_financial_report
|
|
931
|
+
#. odoo-python
|
|
905
932
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
906
933
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
907
934
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
908
935
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
909
936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
910
937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
911
|
-
#, python-format
|
|
912
938
|
msgid "Hide"
|
|
913
|
-
msgstr ""
|
|
939
|
+
msgstr "Sakrij"
|
|
914
940
|
|
|
915
941
|
#. module: account_financial_report
|
|
916
942
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
|
|
917
943
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
|
|
918
944
|
msgid "Hide account ending balance at 0"
|
|
919
|
-
msgstr ""
|
|
945
|
+
msgstr "Sakrij konta sa saldom 0"
|
|
920
946
|
|
|
921
947
|
#. module: account_financial_report
|
|
922
948
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
923
949
|
msgid "Hide accounts at 0"
|
|
924
|
-
msgstr ""
|
|
950
|
+
msgstr "Sakrij konta sa 0"
|
|
925
951
|
|
|
926
952
|
#. module: account_financial_report
|
|
927
953
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
928
954
|
msgid "Hierarchy Levels to display"
|
|
929
|
-
msgstr ""
|
|
930
|
-
|
|
931
|
-
#. module: account_financial_report
|
|
932
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
|
|
933
|
-
msgid "Hierarchy On"
|
|
934
|
-
msgstr ""
|
|
955
|
+
msgstr "Prika??i razinu strukture"
|
|
935
956
|
|
|
936
957
|
#. module: account_financial_report
|
|
937
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
938
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
939
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
940
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
|
|
958
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
959
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
941
960
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
942
961
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
943
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
944
962
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
945
963
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
946
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
947
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
948
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
949
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
950
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
951
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
952
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
953
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
954
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
955
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
956
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
957
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
958
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
960
964
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
961
965
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
962
966
|
msgid "ID"
|
|
@@ -969,12 +973,25 @@ msgid ""
|
|
|
969
973
|
"webkit one only), only centralized amounts per period."
|
|
970
974
|
msgstr ""
|
|
971
975
|
|
|
976
|
+
#. module: account_financial_report
|
|
977
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
978
|
+
msgid "Inferior Limit"
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
981
|
+
#. module: account_financial_report
|
|
982
|
+
#. odoo-python
|
|
983
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
984
|
+
msgid "Inferior Limit must be greather than zero"
|
|
985
|
+
msgstr ""
|
|
986
|
+
|
|
972
987
|
#. module: account_financial_report
|
|
973
988
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
974
989
|
msgid ""
|
|
975
990
|
"Initial\n"
|
|
976
991
|
" balance cur."
|
|
977
992
|
msgstr ""
|
|
993
|
+
"Po??etni\n"
|
|
994
|
+
" saldo val."
|
|
978
995
|
|
|
979
996
|
#. module: account_financial_report
|
|
980
997
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -982,16 +999,25 @@ msgid ""
|
|
|
982
999
|
"Initial\n"
|
|
983
1000
|
" balance"
|
|
984
1001
|
msgstr ""
|
|
1002
|
+
"Po??etni\n"
|
|
1003
|
+
" saldo"
|
|
985
1004
|
|
|
986
1005
|
#. module: account_financial_report
|
|
1006
|
+
#. odoo-python
|
|
987
1007
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
988
1008
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
989
1009
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
990
|
-
#, python-format
|
|
991
1010
|
msgid "Initial balance"
|
|
1011
|
+
msgstr "Po??etni saldo"
|
|
1012
|
+
|
|
1013
|
+
#. module: account_financial_report
|
|
1014
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1015
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1016
|
+
msgid "Intervals configuration"
|
|
992
1017
|
msgstr ""
|
|
993
1018
|
|
|
994
1019
|
#. module: account_financial_report
|
|
1020
|
+
#. odoo-python
|
|
995
1021
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
996
1022
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
997
1023
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1000,26 +1026,25 @@ msgstr ""
|
|
|
1000
1026
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1001
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1002
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1003
|
-
#, python-format
|
|
1004
1029
|
msgid "Journal"
|
|
1005
|
-
msgstr ""
|
|
1030
|
+
msgstr "Dnevnik"
|
|
1006
1031
|
|
|
1007
1032
|
#. module: account_financial_report
|
|
1008
1033
|
#: model:ir.model,name:account_financial_report.model_account_move_line
|
|
1009
1034
|
msgid "Journal Item"
|
|
1010
|
-
msgstr ""
|
|
1035
|
+
msgstr "Stavka dnevnika"
|
|
1011
1036
|
|
|
1012
1037
|
#. module: account_financial_report
|
|
1013
1038
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1014
1039
|
msgid "Journal Items Domain"
|
|
1015
|
-
msgstr ""
|
|
1040
|
+
msgstr "Domena stavaka dnevnika"
|
|
1016
1041
|
|
|
1017
1042
|
#. module: account_financial_report
|
|
1043
|
+
#. odoo-python
|
|
1018
1044
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1019
1045
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1020
1046
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1021
1047
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1022
|
-
#, python-format
|
|
1023
1048
|
msgid "Journal Ledger"
|
|
1024
1049
|
msgstr ""
|
|
1025
1050
|
|
|
@@ -1049,43 +1074,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1049
1074
|
msgstr ""
|
|
1050
1075
|
|
|
1051
1076
|
#. module: account_financial_report
|
|
1077
|
+
#. odoo-python
|
|
1052
1078
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1053
1079
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1054
1080
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1055
|
-
#, python-format
|
|
1056
1081
|
msgid "Journals"
|
|
1057
1082
|
msgstr ""
|
|
1058
1083
|
|
|
1059
1084
|
#. module: account_financial_report
|
|
1060
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1061
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1062
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1063
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1064
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1065
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1066
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1067
|
-
|
|
1068
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
|
|
1069
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1070
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1071
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1072
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1073
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1074
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1075
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1076
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1077
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1078
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1079
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1080
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1081
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1082
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1083
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1084
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1085
|
-
msgid "Last Modified on"
|
|
1085
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1086
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1087
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1088
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1089
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1090
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1092
|
+
msgid "Label Text Limit"
|
|
1086
1093
|
msgstr ""
|
|
1087
1094
|
|
|
1088
1095
|
#. module: account_financial_report
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1097
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1089
1098
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1090
1099
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1091
1100
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1096,6 +1105,8 @@ msgid "Last Updated by"
|
|
|
1096
1105
|
msgstr ""
|
|
1097
1106
|
|
|
1098
1107
|
#. module: account_financial_report
|
|
1108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1109
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1099
1110
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1100
1111
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1101
1112
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1112,19 +1123,49 @@ msgid "Level"
|
|
|
1112
1123
|
msgstr ""
|
|
1113
1124
|
|
|
1114
1125
|
#. module: account_financial_report
|
|
1126
|
+
#. odoo-python
|
|
1115
1127
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1116
|
-
#, python-format
|
|
1117
1128
|
msgid "Level %s"
|
|
1118
1129
|
msgstr ""
|
|
1119
1130
|
|
|
1120
1131
|
#. module: account_financial_report
|
|
1132
|
+
#. odoo-python
|
|
1121
1133
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1122
1134
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1123
1135
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1124
|
-
#, python-format
|
|
1125
1136
|
msgid "Limit hierarchy levels"
|
|
1126
1137
|
msgstr ""
|
|
1127
1138
|
|
|
1139
|
+
#. module: account_financial_report
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1141
|
+
msgid "Line"
|
|
1142
|
+
msgstr ""
|
|
1143
|
+
|
|
1144
|
+
#. module: account_financial_report
|
|
1145
|
+
#. odoo-python
|
|
1146
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1147
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1148
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1149
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1150
|
+
msgid "Missing Partner"
|
|
1151
|
+
msgstr ""
|
|
1152
|
+
|
|
1153
|
+
#. module: account_financial_report
|
|
1154
|
+
#. odoo-python
|
|
1155
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1156
|
+
msgid "Missing Salesperson"
|
|
1157
|
+
msgstr ""
|
|
1158
|
+
|
|
1159
|
+
#. module: account_financial_report
|
|
1160
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1161
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1162
|
+
msgstr ""
|
|
1163
|
+
|
|
1164
|
+
#. module: account_financial_report
|
|
1165
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1166
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1167
|
+
msgstr ""
|
|
1168
|
+
|
|
1128
1169
|
#. module: account_financial_report
|
|
1129
1170
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1130
1171
|
msgid "Move Target"
|
|
@@ -1136,102 +1177,120 @@ msgid "Moves"
|
|
|
1136
1177
|
msgstr ""
|
|
1137
1178
|
|
|
1138
1179
|
#. module: account_financial_report
|
|
1180
|
+
#. odoo-python
|
|
1181
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1182
|
+
msgid "Must complete Configuration Lines"
|
|
1183
|
+
msgstr ""
|
|
1184
|
+
|
|
1185
|
+
#. module: account_financial_report
|
|
1186
|
+
#. odoo-python
|
|
1139
1187
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1140
1188
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1189
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1190
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1141
1191
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1142
1192
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1143
1193
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1144
|
-
#, python-format
|
|
1145
1194
|
msgid "Name"
|
|
1195
|
+
msgstr "Naziv"
|
|
1196
|
+
|
|
1197
|
+
#. module: account_financial_report
|
|
1198
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1199
|
+
msgid "Name must be unique per report configuration"
|
|
1146
1200
|
msgstr ""
|
|
1147
1201
|
|
|
1148
1202
|
#. module: account_financial_report
|
|
1203
|
+
#. odoo-python
|
|
1149
1204
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1150
1205
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1151
|
-
#, python-format
|
|
1152
1206
|
msgid "Net"
|
|
1153
|
-
msgstr ""
|
|
1207
|
+
msgstr "Neto"
|
|
1154
1208
|
|
|
1155
1209
|
#. module: account_financial_report
|
|
1210
|
+
#. odoo-python
|
|
1156
1211
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1157
1212
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1158
1213
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1159
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1160
|
-
#, python-format
|
|
1161
1215
|
msgid "No"
|
|
1162
|
-
msgstr ""
|
|
1216
|
+
msgstr "Ne"
|
|
1163
1217
|
|
|
1164
1218
|
#. module: account_financial_report
|
|
1219
|
+
#. odoo-python
|
|
1165
1220
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1166
|
-
#, python-format
|
|
1167
1221
|
msgid "No group"
|
|
1168
|
-
msgstr ""
|
|
1169
|
-
|
|
1170
|
-
#. module: account_financial_report
|
|
1171
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
|
|
1172
|
-
msgid "No hierarchy"
|
|
1173
|
-
msgstr ""
|
|
1222
|
+
msgstr "Nema grupu"
|
|
1174
1223
|
|
|
1175
1224
|
#. module: account_financial_report
|
|
1225
|
+
#. odoo-python
|
|
1176
1226
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1177
1227
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1178
|
-
#, python-format
|
|
1179
1228
|
msgid "No limit"
|
|
1180
1229
|
msgstr ""
|
|
1181
1230
|
|
|
1182
1231
|
#. module: account_financial_report
|
|
1232
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1233
|
+
msgid "None"
|
|
1234
|
+
msgstr ""
|
|
1235
|
+
|
|
1236
|
+
#. module: account_financial_report
|
|
1237
|
+
#. odoo-python
|
|
1183
1238
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1184
|
-
#, python-format
|
|
1185
1239
|
msgid "Not Posted"
|
|
1186
|
-
msgstr ""
|
|
1240
|
+
msgstr "Nije proknji??eno"
|
|
1187
1241
|
|
|
1188
1242
|
#. module: account_financial_report
|
|
1189
1243
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1190
1244
|
msgid "Not due"
|
|
1191
|
-
msgstr ""
|
|
1245
|
+
msgstr "Nije dospjelo"
|
|
1192
1246
|
|
|
1193
1247
|
#. module: account_financial_report
|
|
1194
|
-
#:
|
|
1195
|
-
|
|
1196
|
-
msgid "Not only one unaffected earnings account"
|
|
1248
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1249
|
+
msgid "OCA Aged Report Configuration"
|
|
1197
1250
|
msgstr ""
|
|
1198
1251
|
|
|
1199
1252
|
#. module: account_financial_report
|
|
1200
1253
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1201
1254
|
msgid "OCA accounting reports"
|
|
1202
|
-
msgstr ""
|
|
1255
|
+
msgstr "OCA ra??unovodstveni izvje??taji"
|
|
1203
1256
|
|
|
1204
1257
|
#. module: account_financial_report
|
|
1258
|
+
#. odoo-python
|
|
1205
1259
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1206
1260
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1207
|
-
#, python-format
|
|
1208
1261
|
msgid "Older"
|
|
1262
|
+
msgstr "Starije"
|
|
1263
|
+
|
|
1264
|
+
#. module: account_financial_report
|
|
1265
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1266
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1267
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1209
1268
|
msgstr ""
|
|
1210
1269
|
|
|
1211
1270
|
#. module: account_financial_report
|
|
1271
|
+
#. odoo-python
|
|
1212
1272
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1213
1273
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1214
1274
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1215
1275
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1216
1276
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1217
|
-
#, python-format
|
|
1218
1277
|
msgid "Open Items"
|
|
1219
|
-
msgstr ""
|
|
1278
|
+
msgstr "Otvorene stavke"
|
|
1220
1279
|
|
|
1221
1280
|
#. module: account_financial_report
|
|
1222
1281
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
|
|
1223
1282
|
msgid "Open Items -"
|
|
1224
|
-
msgstr ""
|
|
1283
|
+
msgstr "Otvorene stavke -"
|
|
1225
1284
|
|
|
1226
1285
|
#. module: account_financial_report
|
|
1227
1286
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1228
1287
|
msgid "Open Items Partner"
|
|
1229
|
-
msgstr ""
|
|
1288
|
+
msgstr "Otvorene stavke partnera"
|
|
1230
1289
|
|
|
1231
1290
|
#. module: account_financial_report
|
|
1232
1291
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
1233
1292
|
msgid "Open Items Report"
|
|
1234
|
-
msgstr ""
|
|
1293
|
+
msgstr "Izvje??taj otvorenih stavaka"
|
|
1235
1294
|
|
|
1236
1295
|
#. module: account_financial_report
|
|
1237
1296
|
#: model:ir.model,name:account_financial_report.model_open_items_report_wizard
|
|
@@ -1254,13 +1313,14 @@ msgid "Options"
|
|
|
1254
1313
|
msgstr ""
|
|
1255
1314
|
|
|
1256
1315
|
#. module: account_financial_report
|
|
1316
|
+
#. odoo-python
|
|
1257
1317
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1258
1318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1259
|
-
#, python-format
|
|
1260
1319
|
msgid "Original"
|
|
1261
1320
|
msgstr ""
|
|
1262
1321
|
|
|
1263
1322
|
#. module: account_financial_report
|
|
1323
|
+
#. odoo-python
|
|
1264
1324
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1265
1325
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1266
1326
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1272,7 +1332,6 @@ msgstr ""
|
|
|
1272
1332
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1273
1333
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1274
1334
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1275
|
-
#, python-format
|
|
1276
1335
|
msgid "Partner"
|
|
1277
1336
|
msgstr ""
|
|
1278
1337
|
|
|
@@ -1284,26 +1343,42 @@ msgid ""
|
|
|
1284
1343
|
msgstr ""
|
|
1285
1344
|
|
|
1286
1345
|
#. module: account_financial_report
|
|
1346
|
+
#. odoo-python
|
|
1287
1347
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1288
|
-
#, python-format
|
|
1289
1348
|
msgid "Partner Initial balance"
|
|
1290
1349
|
msgstr ""
|
|
1291
1350
|
|
|
1292
1351
|
#. module: account_financial_report
|
|
1352
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1353
|
+
msgid "Partner Salesperson"
|
|
1354
|
+
msgstr ""
|
|
1355
|
+
|
|
1356
|
+
#. module: account_financial_report
|
|
1357
|
+
#. odoo-python
|
|
1293
1358
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1294
|
-
#, python-format
|
|
1295
1359
|
msgid "Partner cumul aged balance"
|
|
1296
1360
|
msgstr ""
|
|
1297
1361
|
|
|
1298
1362
|
#. module: account_financial_report
|
|
1363
|
+
#. odoo-python
|
|
1299
1364
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1300
1365
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1301
1366
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1302
1367
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1303
|
-
#, python-format
|
|
1304
1368
|
msgid "Partner ending balance"
|
|
1305
1369
|
msgstr ""
|
|
1306
1370
|
|
|
1371
|
+
#. module: account_financial_report
|
|
1372
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1373
|
+
msgid "Partner initial balance"
|
|
1374
|
+
msgstr ""
|
|
1375
|
+
|
|
1376
|
+
#. module: account_financial_report
|
|
1377
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1378
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1379
|
+
msgid "Partners"
|
|
1380
|
+
msgstr "Partneri"
|
|
1381
|
+
|
|
1307
1382
|
#. module: account_financial_report
|
|
1308
1383
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1309
1384
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1318,34 +1393,27 @@ msgid "Percents"
|
|
|
1318
1393
|
msgstr ""
|
|
1319
1394
|
|
|
1320
1395
|
#. module: account_financial_report
|
|
1396
|
+
#. odoo-python
|
|
1321
1397
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1322
1398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1323
|
-
#, python-format
|
|
1324
1399
|
msgid "Period balance"
|
|
1325
|
-
msgstr ""
|
|
1400
|
+
msgstr "Saldo perioda"
|
|
1326
1401
|
|
|
1327
1402
|
#. module: account_financial_report
|
|
1328
1403
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1329
1404
|
msgid "Periods"
|
|
1330
|
-
msgstr ""
|
|
1405
|
+
msgstr "Periodi"
|
|
1331
1406
|
|
|
1332
1407
|
#. module: account_financial_report
|
|
1408
|
+
#. odoo-python
|
|
1333
1409
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1334
|
-
#, python-format
|
|
1335
1410
|
msgid "Posted"
|
|
1336
|
-
msgstr ""
|
|
1337
|
-
|
|
1338
|
-
#. module: account_financial_report
|
|
1339
|
-
#. openerp-web
|
|
1340
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1341
|
-
#, python-format
|
|
1342
|
-
msgid "Print"
|
|
1343
|
-
msgstr ""
|
|
1411
|
+
msgstr "Proknji??eno"
|
|
1344
1412
|
|
|
1345
1413
|
#. module: account_financial_report
|
|
1414
|
+
#. odoo-python
|
|
1346
1415
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1347
1416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1348
|
-
#, python-format
|
|
1349
1417
|
msgid "Rec."
|
|
1350
1418
|
msgstr ""
|
|
1351
1419
|
|
|
@@ -1373,12 +1441,12 @@ msgid ""
|
|
|
1373
1441
|
msgstr ""
|
|
1374
1442
|
|
|
1375
1443
|
#. module: account_financial_report
|
|
1444
|
+
#. odoo-python
|
|
1376
1445
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1377
1446
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1378
1447
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1379
1448
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1380
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1381
|
-
#, python-format
|
|
1382
1450
|
msgid "Ref - Label"
|
|
1383
1451
|
msgstr ""
|
|
1384
1452
|
|
|
@@ -1388,103 +1456,103 @@ msgid "Report Action"
|
|
|
1388
1456
|
msgstr ""
|
|
1389
1457
|
|
|
1390
1458
|
#. module: account_financial_report
|
|
1459
|
+
#. odoo-python
|
|
1391
1460
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1392
1461
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1393
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1394
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1395
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1396
|
-
#, python-format
|
|
1397
1465
|
msgid "Residual"
|
|
1398
1466
|
msgstr ""
|
|
1399
1467
|
|
|
1400
1468
|
#. module: account_financial_report
|
|
1469
|
+
#. odoo-python
|
|
1401
1470
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1402
1471
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1403
|
-
#, python-format
|
|
1404
1472
|
msgid "Sequence"
|
|
1405
|
-
msgstr ""
|
|
1473
|
+
msgstr "Sekvenca"
|
|
1406
1474
|
|
|
1407
1475
|
#. module: account_financial_report
|
|
1476
|
+
#. odoo-python
|
|
1408
1477
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1409
1478
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1410
1479
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1411
1480
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1412
1481
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1413
1482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1414
|
-
#, python-format
|
|
1415
1483
|
msgid "Show"
|
|
1416
|
-
msgstr ""
|
|
1484
|
+
msgstr "Prika??i"
|
|
1417
1485
|
|
|
1418
1486
|
#. module: account_financial_report
|
|
1419
1487
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1420
1488
|
msgid "Show Analytic Account"
|
|
1421
|
-
msgstr ""
|
|
1489
|
+
msgstr "Prika??i analiti??ki konto"
|
|
1422
1490
|
|
|
1423
1491
|
#. module: account_financial_report
|
|
1424
1492
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1425
1493
|
msgid "Show Auto Sequence"
|
|
1426
|
-
msgstr ""
|
|
1494
|
+
msgstr "Prika??i auto sekvencu"
|
|
1427
1495
|
|
|
1428
1496
|
#. module: account_financial_report
|
|
1429
1497
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
1430
1498
|
msgid "Show Move Line Details"
|
|
1431
|
-
msgstr ""
|
|
1499
|
+
msgstr "Prika??i detalje stavke"
|
|
1432
1500
|
|
|
1433
1501
|
#. module: account_financial_report
|
|
1434
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1435
1502
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1436
1503
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1437
1504
|
msgid "Show Partner Details"
|
|
1438
|
-
msgstr ""
|
|
1439
|
-
|
|
1440
|
-
#. module: account_financial_report
|
|
1441
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1442
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1443
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1444
|
-
#, python-format
|
|
1445
|
-
msgid "Show analytic tags"
|
|
1446
|
-
msgstr ""
|
|
1505
|
+
msgstr "Prika??i detalje partnera"
|
|
1447
1506
|
|
|
1448
1507
|
#. module: account_financial_report
|
|
1508
|
+
#. odoo-python
|
|
1449
1509
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1450
1510
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1451
1511
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1452
1512
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1453
1513
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1454
1514
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1455
|
-
#, python-format
|
|
1456
1515
|
msgid "Show foreign currency"
|
|
1457
|
-
msgstr ""
|
|
1516
|
+
msgstr "Prika??i stranu valutu"
|
|
1517
|
+
|
|
1518
|
+
#. module: account_financial_report
|
|
1519
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1520
|
+
msgid "Show hierarchy"
|
|
1521
|
+
msgstr "Prika??i strukturu"
|
|
1458
1522
|
|
|
1459
1523
|
#. module: account_financial_report
|
|
1460
1524
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1461
1525
|
msgid "Sort entries by"
|
|
1462
|
-
msgstr ""
|
|
1526
|
+
msgstr "Sortiraj stavke po"
|
|
1463
1527
|
|
|
1464
1528
|
#. module: account_financial_report
|
|
1465
1529
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
|
|
1466
1530
|
msgid "Start Date"
|
|
1467
|
-
msgstr ""
|
|
1531
|
+
msgstr "Po??etni datum"
|
|
1468
1532
|
|
|
1469
1533
|
#. module: account_financial_report
|
|
1470
1534
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
|
|
1471
1535
|
msgid "Start date"
|
|
1472
|
-
msgstr ""
|
|
1536
|
+
msgstr "Po??etni datum"
|
|
1473
1537
|
|
|
1474
1538
|
#. module: account_financial_report
|
|
1475
1539
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1476
1540
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1477
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1478
1541
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1479
1542
|
msgid "Starting account in a range"
|
|
1543
|
+
msgstr "Po??etni konto u rasponu"
|
|
1544
|
+
|
|
1545
|
+
#. module: account_financial_report
|
|
1546
|
+
#. odoo-python
|
|
1547
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1548
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1549
|
+
msgid "TOTAL"
|
|
1480
1550
|
msgstr ""
|
|
1481
1551
|
|
|
1482
1552
|
#. module: account_financial_report
|
|
1483
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1484
1553
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1485
|
-
#, python-format
|
|
1486
1554
|
msgid "Tags"
|
|
1487
|
-
msgstr ""
|
|
1555
|
+
msgstr "Oznake"
|
|
1488
1556
|
|
|
1489
1557
|
#. module: account_financial_report
|
|
1490
1558
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
|
|
@@ -1496,6 +1564,7 @@ msgid "Target Moves"
|
|
|
1496
1564
|
msgstr "Ciljane stavke"
|
|
1497
1565
|
|
|
1498
1566
|
#. module: account_financial_report
|
|
1567
|
+
#. odoo-python
|
|
1499
1568
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1500
1569
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1501
1570
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1505,14 +1574,13 @@ msgstr "Ciljane stavke"
|
|
|
1505
1574
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1506
1575
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1507
1576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1508
|
-
#, python-format
|
|
1509
1577
|
msgid "Target moves filter"
|
|
1510
|
-
msgstr ""
|
|
1578
|
+
msgstr "Filter ciljanih stavaka"
|
|
1511
1579
|
|
|
1512
1580
|
#. module: account_financial_report
|
|
1581
|
+
#. odoo-python
|
|
1513
1582
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1514
1583
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1515
|
-
#, python-format
|
|
1516
1584
|
msgid "Tax"
|
|
1517
1585
|
msgstr "Porez"
|
|
1518
1586
|
|
|
@@ -1520,76 +1588,103 @@ msgstr "Porez"
|
|
|
1520
1588
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1521
1589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1522
1590
|
msgid "Tax Amount"
|
|
1523
|
-
msgstr ""
|
|
1591
|
+
msgstr "Iznos poreza"
|
|
1524
1592
|
|
|
1525
1593
|
#. module: account_financial_report
|
|
1594
|
+
#. odoo-python
|
|
1526
1595
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1527
|
-
#, python-format
|
|
1528
1596
|
msgid "Tax Balance"
|
|
1529
|
-
msgstr ""
|
|
1597
|
+
msgstr "Saldo poreza"
|
|
1530
1598
|
|
|
1531
1599
|
#. module: account_financial_report
|
|
1600
|
+
#. odoo-python
|
|
1532
1601
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1533
|
-
#, python-format
|
|
1534
1602
|
msgid "Tax Credit"
|
|
1535
|
-
msgstr ""
|
|
1603
|
+
msgstr "Potra??uje porez"
|
|
1536
1604
|
|
|
1537
1605
|
#. module: account_financial_report
|
|
1606
|
+
#. odoo-python
|
|
1538
1607
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1539
|
-
#, python-format
|
|
1540
1608
|
msgid "Tax Debit"
|
|
1541
|
-
msgstr ""
|
|
1609
|
+
msgstr "Duguje porez"
|
|
1542
1610
|
|
|
1543
1611
|
#. module: account_financial_report
|
|
1612
|
+
#. odoo-python
|
|
1544
1613
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1545
1614
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1546
|
-
#, python-format
|
|
1547
1615
|
msgid "Tax Groups"
|
|
1548
|
-
msgstr ""
|
|
1616
|
+
msgstr "Porezne grupe"
|
|
1617
|
+
|
|
1618
|
+
#. module: account_financial_report
|
|
1619
|
+
#. odoo-python
|
|
1620
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1621
|
+
msgid "Tax Initial balance"
|
|
1622
|
+
msgstr "Po??etni saldo poreza"
|
|
1549
1623
|
|
|
1550
1624
|
#. module: account_financial_report
|
|
1625
|
+
#. odoo-python
|
|
1551
1626
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1552
1627
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1553
|
-
#, python-format
|
|
1554
1628
|
msgid "Tax Tags"
|
|
1555
|
-
msgstr ""
|
|
1629
|
+
msgstr "Oznake poreza"
|
|
1556
1630
|
|
|
1557
1631
|
#. module: account_financial_report
|
|
1632
|
+
#. odoo-python
|
|
1633
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1634
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1635
|
+
msgid "Tax ending balance"
|
|
1636
|
+
msgstr "Zavr??ni saldo poreza"
|
|
1637
|
+
|
|
1638
|
+
#. module: account_financial_report
|
|
1639
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1640
|
+
msgid "Tax initial balance"
|
|
1641
|
+
msgstr "Po??etni saldo poreza"
|
|
1642
|
+
|
|
1643
|
+
#. module: account_financial_report
|
|
1644
|
+
#. odoo-python
|
|
1558
1645
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1559
1646
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1647
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1560
1648
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1561
1649
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1562
|
-
#, python-format
|
|
1563
1650
|
msgid "Taxes"
|
|
1564
|
-
msgstr ""
|
|
1651
|
+
msgstr "Porezi"
|
|
1565
1652
|
|
|
1566
1653
|
#. module: account_financial_report
|
|
1654
|
+
#. odoo-python
|
|
1567
1655
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1568
|
-
#, python-format
|
|
1569
1656
|
msgid ""
|
|
1570
1657
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1571
1658
|
"the same."
|
|
1572
1659
|
msgstr ""
|
|
1573
1660
|
|
|
1574
1661
|
#. module: account_financial_report
|
|
1662
|
+
#. odoo-python
|
|
1575
1663
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1576
|
-
#, python-format
|
|
1577
1664
|
msgid ""
|
|
1578
1665
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1579
1666
|
"same."
|
|
1580
1667
|
msgstr ""
|
|
1581
1668
|
|
|
1582
1669
|
#. module: account_financial_report
|
|
1670
|
+
#. odoo-python
|
|
1583
1671
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1584
|
-
#, python-format
|
|
1585
1672
|
msgid ""
|
|
1586
1673
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1587
1674
|
msgstr ""
|
|
1588
1675
|
|
|
1589
1676
|
#. module: account_financial_report
|
|
1677
|
+
#. odoo-python
|
|
1590
1678
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1591
|
-
#, python-format
|
|
1592
1679
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1680
|
+
msgstr "Razina strukture za filtriranje mora biti ve??a od 0."
|
|
1681
|
+
|
|
1682
|
+
#. module: account_financial_report
|
|
1683
|
+
#. odoo-python
|
|
1684
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1685
|
+
msgid ""
|
|
1686
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1687
|
+
"create some child group of %s."
|
|
1593
1688
|
msgstr ""
|
|
1594
1689
|
|
|
1595
1690
|
#. module: account_financial_report
|
|
@@ -1600,25 +1695,27 @@ msgstr ""
|
|
|
1600
1695
|
#. module: account_financial_report
|
|
1601
1696
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1602
1697
|
msgid "To"
|
|
1603
|
-
msgstr ""
|
|
1698
|
+
msgstr "Do"
|
|
1604
1699
|
|
|
1605
1700
|
#. module: account_financial_report
|
|
1606
1701
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1607
1702
|
msgid "To:"
|
|
1608
|
-
msgstr ""
|
|
1703
|
+
msgstr "Do:"
|
|
1609
1704
|
|
|
1610
1705
|
#. module: account_financial_report
|
|
1706
|
+
#. odoo-python
|
|
1707
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1611
1708
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1612
1709
|
msgid "Total"
|
|
1613
1710
|
msgstr "Ukupno"
|
|
1614
1711
|
|
|
1615
1712
|
#. module: account_financial_report
|
|
1713
|
+
#. odoo-python
|
|
1616
1714
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1617
1715
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1618
1716
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1619
1717
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1620
1718
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1621
|
-
#, python-format
|
|
1622
1719
|
msgid "Trial Balance"
|
|
1623
1720
|
msgstr ""
|
|
1624
1721
|
|
|
@@ -1669,18 +1766,23 @@ msgid ""
|
|
|
1669
1766
|
"balance."
|
|
1670
1767
|
msgstr ""
|
|
1671
1768
|
|
|
1769
|
+
#. module: account_financial_report
|
|
1770
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1771
|
+
msgid "Use when your account groups are hierarchical"
|
|
1772
|
+
msgstr ""
|
|
1773
|
+
|
|
1672
1774
|
#. module: account_financial_report
|
|
1673
1775
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1674
1776
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
1675
1777
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
|
|
1676
1778
|
#: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
|
|
1677
1779
|
msgid "VAT Report"
|
|
1678
|
-
msgstr ""
|
|
1780
|
+
msgstr "Porezni izvje??taj"
|
|
1679
1781
|
|
|
1680
1782
|
#. module: account_financial_report
|
|
1681
1783
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1682
1784
|
msgid "VAT Report -"
|
|
1683
|
-
msgstr ""
|
|
1785
|
+
msgstr "Porezni izvje??taj -"
|
|
1684
1786
|
|
|
1685
1787
|
#. module: account_financial_report
|
|
1686
1788
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
@@ -1698,8 +1800,8 @@ msgid "VAT Report XLSX"
|
|
|
1698
1800
|
msgstr ""
|
|
1699
1801
|
|
|
1700
1802
|
#. module: account_financial_report
|
|
1803
|
+
#. odoo-python
|
|
1701
1804
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1702
|
-
#, python-format
|
|
1703
1805
|
msgid "Vat Report"
|
|
1704
1806
|
msgstr ""
|
|
1705
1807
|
|
|
@@ -1721,7 +1823,7 @@ msgstr ""
|
|
|
1721
1823
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
1722
1824
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1723
1825
|
msgid "View"
|
|
1724
|
-
msgstr ""
|
|
1826
|
+
msgstr "Pogled"
|
|
1725
1827
|
|
|
1726
1828
|
#. module: account_financial_report
|
|
1727
1829
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
@@ -1733,25 +1835,30 @@ msgstr ""
|
|
|
1733
1835
|
#. module: account_financial_report
|
|
1734
1836
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
1735
1837
|
msgid "With Account Name"
|
|
1838
|
+
msgstr "Sa nazivom konta"
|
|
1839
|
+
|
|
1840
|
+
#. module: account_financial_report
|
|
1841
|
+
#. odoo-python
|
|
1842
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1843
|
+
msgid "Without analytic account"
|
|
1736
1844
|
msgstr ""
|
|
1737
1845
|
|
|
1738
1846
|
#. module: account_financial_report
|
|
1847
|
+
#. odoo-python
|
|
1739
1848
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1740
1849
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1741
1850
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1742
1851
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1743
|
-
#, python-format
|
|
1744
1852
|
msgid "Yes"
|
|
1745
|
-
msgstr ""
|
|
1853
|
+
msgstr "Da"
|
|
1746
1854
|
|
|
1747
1855
|
#. module: account_financial_report
|
|
1856
|
+
#. odoo-python
|
|
1748
1857
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1749
|
-
#, python-format
|
|
1750
1858
|
msgid "future"
|
|
1751
|
-
msgstr ""
|
|
1859
|
+
msgstr "budu??e"
|
|
1752
1860
|
|
|
1753
1861
|
#. module: account_financial_report
|
|
1754
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1755
1862
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1756
1863
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1757
1864
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1768,34 +1875,78 @@ msgstr ""
|
|
|
1768
1875
|
#. module: account_financial_report
|
|
1769
1876
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
1770
1877
|
msgid "to"
|
|
1771
|
-
msgstr ""
|
|
1878
|
+
msgstr "do"
|
|
1772
1879
|
|
|
1773
1880
|
#. module: account_financial_report
|
|
1774
1881
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1775
1882
|
msgid "width: 16.21%;"
|
|
1776
|
-
msgstr ""
|
|
1883
|
+
msgstr "??irina: 16.21%;"
|
|
1777
1884
|
|
|
1778
1885
|
#. module: account_financial_report
|
|
1779
1886
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1780
1887
|
msgid "width: 23.24%;"
|
|
1781
|
-
msgstr ""
|
|
1888
|
+
msgstr "??irina: 23.24%;"
|
|
1782
1889
|
|
|
1783
1890
|
#. module: account_financial_report
|
|
1784
1891
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1785
1892
|
msgid "width: 23.78%;"
|
|
1786
|
-
msgstr ""
|
|
1893
|
+
msgstr "??irina: 23.78%;"
|
|
1787
1894
|
|
|
1788
1895
|
#. module: account_financial_report
|
|
1789
1896
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1790
1897
|
msgid "width: 31.35%;"
|
|
1791
|
-
msgstr ""
|
|
1898
|
+
msgstr "??irina: 31.35%;"
|
|
1792
1899
|
|
|
1793
1900
|
#. module: account_financial_report
|
|
1794
1901
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1795
1902
|
msgid "width: 38.92%;"
|
|
1796
|
-
msgstr ""
|
|
1903
|
+
msgstr "??irina: 38.92%;"
|
|
1797
1904
|
|
|
1798
1905
|
#. module: account_financial_report
|
|
1799
1906
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1800
1907
|
msgid "width: 8.11%;"
|
|
1801
|
-
msgstr ""
|
|
1908
|
+
msgstr "??irina: 8.11%;"
|
|
1909
|
+
|
|
1910
|
+
#~ msgid ""
|
|
1911
|
+
#~ "Age ??? 120\n"
|
|
1912
|
+
#~ " d."
|
|
1913
|
+
#~ msgstr ""
|
|
1914
|
+
#~ "Dosp. ??? 120\n"
|
|
1915
|
+
#~ " d."
|
|
1916
|
+
|
|
1917
|
+
#, python-format
|
|
1918
|
+
#~ msgid "Age ??? 120 d."
|
|
1919
|
+
#~ msgstr "Dosp. ??? 120 d."
|
|
1920
|
+
|
|
1921
|
+
#~ msgid ""
|
|
1922
|
+
#~ "Age ??? 30\n"
|
|
1923
|
+
#~ " d."
|
|
1924
|
+
#~ msgstr ""
|
|
1925
|
+
#~ "Dosp. ??? 30\n"
|
|
1926
|
+
#~ " d."
|
|
1927
|
+
|
|
1928
|
+
#, python-format
|
|
1929
|
+
#~ msgid "Age ??? 30 d."
|
|
1930
|
+
#~ msgstr "Dosp. ??? 30 d."
|
|
1931
|
+
|
|
1932
|
+
#~ msgid ""
|
|
1933
|
+
#~ "Age ??? 60\n"
|
|
1934
|
+
#~ " d."
|
|
1935
|
+
#~ msgstr ""
|
|
1936
|
+
#~ "Dosp. ??? 60\n"
|
|
1937
|
+
#~ " d."
|
|
1938
|
+
|
|
1939
|
+
#, python-format
|
|
1940
|
+
#~ msgid "Age ??? 60 d."
|
|
1941
|
+
#~ msgstr "Dosp. ??? 60 d."
|
|
1942
|
+
|
|
1943
|
+
#~ msgid ""
|
|
1944
|
+
#~ "Age ??? 90\n"
|
|
1945
|
+
#~ " d."
|
|
1946
|
+
#~ msgstr ""
|
|
1947
|
+
#~ "Dosp. ??? 90\n"
|
|
1948
|
+
#~ " d."
|
|
1949
|
+
|
|
1950
|
+
#, python-format
|
|
1951
|
+
#~ msgid "Age ??? 90 d."
|
|
1952
|
+
#~ msgstr "Dosp. ??? 90 d."
|