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
|
@@ -0,0 +1,1997 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * account_financial_report
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 16.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"PO-Revision-Date: 2025-09-19 08:42+0000\n"
|
|
10
|
+
"Last-Translator: jakobkrabbe <jakob@syscare.se>\n"
|
|
11
|
+
"Language-Team: none\n"
|
|
12
|
+
"Language: sv\n"
|
|
13
|
+
"MIME-Version: 1.0\n"
|
|
14
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
15
|
+
"Content-Transfer-Encoding: \n"
|
|
16
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
17
|
+
"X-Generator: Weblate 5.10.4\n"
|
|
18
|
+
|
|
19
|
+
#. module: account_financial_report
|
|
20
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
21
|
+
msgid "> 120 d."
|
|
22
|
+
msgstr "> 120 d."
|
|
23
|
+
|
|
24
|
+
#. module: account_financial_report
|
|
25
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
26
|
+
msgid "1 - 30 d."
|
|
27
|
+
msgstr "1 - 30 d."
|
|
28
|
+
|
|
29
|
+
#. module: account_financial_report
|
|
30
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
31
|
+
msgid "10"
|
|
32
|
+
msgstr "10"
|
|
33
|
+
|
|
34
|
+
#. module: account_financial_report
|
|
35
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
36
|
+
msgid "31 - 60 d."
|
|
37
|
+
msgstr "31 - 60 d."
|
|
38
|
+
|
|
39
|
+
#. module: account_financial_report
|
|
40
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
41
|
+
msgid "61 - 90 d."
|
|
42
|
+
msgstr "61 - 90 d."
|
|
43
|
+
|
|
44
|
+
#. module: account_financial_report
|
|
45
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
46
|
+
msgid "91 - 120 d."
|
|
47
|
+
msgstr "91 - 120 d."
|
|
48
|
+
|
|
49
|
+
#. module: account_financial_report
|
|
50
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
51
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
52
|
+
msgid "<b>Taxes summary</b>"
|
|
53
|
+
msgstr "<b>Skatter sammanfattning</b>"
|
|
54
|
+
|
|
55
|
+
#. module: account_financial_report
|
|
56
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
57
|
+
msgid ""
|
|
58
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
59
|
+
" Duplicate amounts may be shown because more than one "
|
|
60
|
+
"analytical account may be defined in the journal items."
|
|
61
|
+
msgstr ""
|
|
62
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
63
|
+
" Dubbletter kan visas eftersom fler än ett analyskonto "
|
|
64
|
+
"kan definieras i journalposterna."
|
|
65
|
+
|
|
66
|
+
#. module: account_financial_report
|
|
67
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
68
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
69
|
+
msgstr "<span class=\"o_form_label\">Intervallkonfiguration</span>"
|
|
70
|
+
|
|
71
|
+
#. module: account_financial_report
|
|
72
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
73
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
74
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
75
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
76
|
+
msgid "<span class=\"oe_inline\">To</span>"
|
|
77
|
+
msgstr "<span class=\"oe_inline\">Till</span>"
|
|
78
|
+
|
|
79
|
+
#. module: account_financial_report
|
|
80
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
|
|
81
|
+
msgid "Abstract Report"
|
|
82
|
+
msgstr "Abstrakt rapport"
|
|
83
|
+
|
|
84
|
+
#. module: account_financial_report
|
|
85
|
+
#: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
|
|
86
|
+
msgid "Abstract Wizard"
|
|
87
|
+
msgstr "Abstrakt guide"
|
|
88
|
+
|
|
89
|
+
#. module: account_financial_report
|
|
90
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
|
|
91
|
+
msgid "Abstract XLSX Account Financial Report"
|
|
92
|
+
msgstr "Sammanfattning XLSX Konto Finansiell Rapport"
|
|
93
|
+
|
|
94
|
+
#. module: account_financial_report
|
|
95
|
+
#. odoo-python
|
|
96
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
97
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
98
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
99
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
100
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
101
|
+
#: model:ir.model,name:account_financial_report.model_account_account
|
|
102
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
103
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
104
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
105
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
106
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
107
|
+
msgid "Account"
|
|
108
|
+
msgstr "Konto"
|
|
109
|
+
|
|
110
|
+
#. module: account_financial_report
|
|
111
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
112
|
+
msgid "Account Age Report Config"
|
|
113
|
+
msgstr "Konto Åldersrapport Konfig"
|
|
114
|
+
|
|
115
|
+
#. module: account_financial_report
|
|
116
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
119
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
120
|
+
msgid "Account Code From"
|
|
121
|
+
msgstr "Konto kod från"
|
|
122
|
+
|
|
123
|
+
#. module: account_financial_report
|
|
124
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
125
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_to
|
|
126
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
127
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
128
|
+
msgid "Account Code To"
|
|
129
|
+
msgstr "Konto kod till"
|
|
130
|
+
|
|
131
|
+
#. module: account_financial_report
|
|
132
|
+
#: model:ir.model,name:account_financial_report.model_account_group
|
|
133
|
+
msgid "Account Group"
|
|
134
|
+
msgstr "Konto grupp"
|
|
135
|
+
|
|
136
|
+
#. module: account_financial_report
|
|
137
|
+
#. odoo-python
|
|
138
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
139
|
+
msgid "Account Name"
|
|
140
|
+
msgstr "Konto namn"
|
|
141
|
+
|
|
142
|
+
#. module: account_financial_report
|
|
143
|
+
#. odoo-python
|
|
144
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
145
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
146
|
+
msgid "Account at 0 filter"
|
|
147
|
+
msgstr "Konto vid 0 filter"
|
|
148
|
+
|
|
149
|
+
#. module: account_financial_report
|
|
150
|
+
#. odoo-python
|
|
151
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
152
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
153
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
154
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
155
|
+
msgid "Account balance at 0 filter"
|
|
156
|
+
msgstr "Kontosaldo vid 0 filter"
|
|
157
|
+
|
|
158
|
+
#. module: account_financial_report
|
|
159
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
|
|
160
|
+
msgid "Accounts"
|
|
161
|
+
msgstr "Konton"
|
|
162
|
+
|
|
163
|
+
#. module: account_financial_report
|
|
164
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
|
|
165
|
+
msgid "Activate centralization"
|
|
166
|
+
msgstr "Aktivera centralisering"
|
|
167
|
+
|
|
168
|
+
#. module: account_financial_report
|
|
169
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
170
|
+
msgid "Additional Filtering"
|
|
171
|
+
msgstr "Ytterligare filtrering"
|
|
172
|
+
|
|
173
|
+
#. module: account_financial_report
|
|
174
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
175
|
+
msgid "Age Partner Report Configuration"
|
|
176
|
+
msgstr "Konfiguration av ålderspartnerrapport"
|
|
177
|
+
|
|
178
|
+
#. module: account_financial_report
|
|
179
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
180
|
+
msgid ""
|
|
181
|
+
"Age ≤ 120\n"
|
|
182
|
+
" d."
|
|
183
|
+
msgstr ""
|
|
184
|
+
"Ålder ≤ 120 år\n"
|
|
185
|
+
" d."
|
|
186
|
+
|
|
187
|
+
#. module: account_financial_report
|
|
188
|
+
#. odoo-python
|
|
189
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
190
|
+
msgid "Age ≤ 120 d."
|
|
191
|
+
msgstr "Ålder ≤ 120 d."
|
|
192
|
+
|
|
193
|
+
#. module: account_financial_report
|
|
194
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
195
|
+
msgid ""
|
|
196
|
+
"Age ≤ 30\n"
|
|
197
|
+
" d."
|
|
198
|
+
msgstr ""
|
|
199
|
+
"Ålder ≤ 30 år\n"
|
|
200
|
+
" d."
|
|
201
|
+
|
|
202
|
+
#. module: account_financial_report
|
|
203
|
+
#. odoo-python
|
|
204
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
205
|
+
msgid "Age ≤ 30 d."
|
|
206
|
+
msgstr "Ålder ≤ 30 d."
|
|
207
|
+
|
|
208
|
+
#. module: account_financial_report
|
|
209
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
210
|
+
msgid ""
|
|
211
|
+
"Age ≤ 60\n"
|
|
212
|
+
" d."
|
|
213
|
+
msgstr ""
|
|
214
|
+
"Ålder ≤ 60 år\n"
|
|
215
|
+
" d."
|
|
216
|
+
|
|
217
|
+
#. module: account_financial_report
|
|
218
|
+
#. odoo-python
|
|
219
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
220
|
+
msgid "Age ≤ 60 d."
|
|
221
|
+
msgstr "Ålder ≤ 60 d."
|
|
222
|
+
|
|
223
|
+
#. module: account_financial_report
|
|
224
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
225
|
+
msgid ""
|
|
226
|
+
"Age ≤ 90\n"
|
|
227
|
+
" d."
|
|
228
|
+
msgstr ""
|
|
229
|
+
"Ålder ≤ 90 år\n"
|
|
230
|
+
" d."
|
|
231
|
+
|
|
232
|
+
#. module: account_financial_report
|
|
233
|
+
#. odoo-python
|
|
234
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
235
|
+
msgid "Age ≤ 90 d."
|
|
236
|
+
msgstr "Ålder ≤ 90 d."
|
|
237
|
+
|
|
238
|
+
#. module: account_financial_report
|
|
239
|
+
#. odoo-python
|
|
240
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
241
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
242
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
243
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
244
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
245
|
+
msgid "Aged Partner Balance"
|
|
246
|
+
msgstr "Äldre kontakter balans"
|
|
247
|
+
|
|
248
|
+
#. module: account_financial_report
|
|
249
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
|
|
250
|
+
msgid "Aged Partner Balance -"
|
|
251
|
+
msgstr "Äldre kontakter balans -"
|
|
252
|
+
|
|
253
|
+
#. module: account_financial_report
|
|
254
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
|
|
255
|
+
msgid "Aged Partner Balance Report"
|
|
256
|
+
msgstr "Äldre kontakt balansrapport"
|
|
257
|
+
|
|
258
|
+
#. module: account_financial_report
|
|
259
|
+
#: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
|
|
260
|
+
msgid "Aged Partner Balance Wizard"
|
|
261
|
+
msgstr "Äldre kontakt balans guide"
|
|
262
|
+
|
|
263
|
+
#. module: account_financial_report
|
|
264
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
|
|
265
|
+
msgid "Aged Partner Balance XLSL Report"
|
|
266
|
+
msgstr "Äldre kontakt balans XLSL rapport"
|
|
267
|
+
|
|
268
|
+
#. module: account_financial_report
|
|
269
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx
|
|
270
|
+
msgid "Aged Partner Balance XLSX"
|
|
271
|
+
msgstr "Äldre kontakt balans XLSX"
|
|
272
|
+
|
|
273
|
+
#. module: account_financial_report
|
|
274
|
+
#. odoo-python
|
|
275
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
276
|
+
msgid "All"
|
|
277
|
+
msgstr "Alla"
|
|
278
|
+
|
|
279
|
+
#. module: account_financial_report
|
|
280
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
|
|
281
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__all
|
|
282
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__all
|
|
283
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__all
|
|
284
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__all
|
|
285
|
+
msgid "All Entries"
|
|
286
|
+
msgstr "Alla verifikat"
|
|
287
|
+
|
|
288
|
+
#. module: account_financial_report
|
|
289
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__posted
|
|
290
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__posted
|
|
291
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__posted
|
|
292
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
|
|
293
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
|
|
294
|
+
msgid "All Posted Entries"
|
|
295
|
+
msgstr "Alla bokförda verifikat"
|
|
296
|
+
|
|
297
|
+
#. module: account_financial_report
|
|
298
|
+
#. odoo-python
|
|
299
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
300
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
301
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
302
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
303
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
304
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
305
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
306
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
307
|
+
msgid "All entries"
|
|
308
|
+
msgstr "Alla verifikat"
|
|
309
|
+
|
|
310
|
+
#. module: account_financial_report
|
|
311
|
+
#. odoo-python
|
|
312
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
313
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
314
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
315
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
316
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
317
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
318
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
319
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
320
|
+
msgid "All posted entries"
|
|
321
|
+
msgstr "Alla bokförda verifikat"
|
|
322
|
+
|
|
323
|
+
#. module: account_financial_report
|
|
324
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
325
|
+
msgid "Amount Cur."
|
|
326
|
+
msgstr "Belopp val."
|
|
327
|
+
|
|
328
|
+
#. module: account_financial_report
|
|
329
|
+
#. odoo-python
|
|
330
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
331
|
+
msgid "Amount Currency"
|
|
332
|
+
msgstr "Belopp valuta"
|
|
333
|
+
|
|
334
|
+
#. module: account_financial_report
|
|
335
|
+
#. odoo-python
|
|
336
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
337
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
338
|
+
msgid "Amount cur."
|
|
339
|
+
msgstr "Belopp val."
|
|
340
|
+
|
|
341
|
+
#. module: account_financial_report
|
|
342
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
343
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
344
|
+
msgid "Analytic Account"
|
|
345
|
+
msgstr "Objekt konto"
|
|
346
|
+
|
|
347
|
+
#. module: account_financial_report
|
|
348
|
+
#. odoo-python
|
|
349
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
350
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
351
|
+
msgid "Analytic Distribution"
|
|
352
|
+
msgstr "Objekt distribution"
|
|
353
|
+
|
|
354
|
+
#. module: account_financial_report
|
|
355
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
356
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
357
|
+
msgid "Balance"
|
|
358
|
+
msgstr "Balans"
|
|
359
|
+
|
|
360
|
+
#. module: account_financial_report
|
|
361
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
362
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
363
|
+
msgid "Base Amount"
|
|
364
|
+
msgstr "Basbelopp"
|
|
365
|
+
|
|
366
|
+
#. module: account_financial_report
|
|
367
|
+
#. odoo-python
|
|
368
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
369
|
+
msgid "Base Balance"
|
|
370
|
+
msgstr "Brundbalans"
|
|
371
|
+
|
|
372
|
+
#. module: account_financial_report
|
|
373
|
+
#. odoo-python
|
|
374
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
375
|
+
msgid "Base Credit"
|
|
376
|
+
msgstr "Baskredit"
|
|
377
|
+
|
|
378
|
+
#. module: account_financial_report
|
|
379
|
+
#. odoo-python
|
|
380
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
381
|
+
msgid "Base Debit"
|
|
382
|
+
msgstr "Grunddebitering"
|
|
383
|
+
|
|
384
|
+
#. module: account_financial_report
|
|
385
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
|
|
386
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
387
|
+
msgid "Based On"
|
|
388
|
+
msgstr "Baserat på"
|
|
389
|
+
|
|
390
|
+
#. module: account_financial_report
|
|
391
|
+
#. odoo-python
|
|
392
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
393
|
+
msgid "Based on"
|
|
394
|
+
msgstr "Baserat på"
|
|
395
|
+
|
|
396
|
+
#. module: account_financial_report
|
|
397
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
398
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
399
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
400
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
401
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
402
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
403
|
+
msgid "Cancel"
|
|
404
|
+
msgstr "Avbryt"
|
|
405
|
+
|
|
406
|
+
#. module: account_financial_report
|
|
407
|
+
#. odoo-python
|
|
408
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
409
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
410
|
+
msgid "Centralize filter"
|
|
411
|
+
msgstr "Centralisera filtret"
|
|
412
|
+
|
|
413
|
+
#. module: account_financial_report
|
|
414
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
|
|
415
|
+
msgid "Centralized"
|
|
416
|
+
msgstr "Centralisera"
|
|
417
|
+
|
|
418
|
+
#. module: account_financial_report
|
|
419
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
420
|
+
msgid "Child Groups"
|
|
421
|
+
msgstr "Undergrupper"
|
|
422
|
+
|
|
423
|
+
#. module: account_financial_report
|
|
424
|
+
#. odoo-python
|
|
425
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
426
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
427
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
428
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
429
|
+
msgid "Code"
|
|
430
|
+
msgstr "Kod"
|
|
431
|
+
|
|
432
|
+
#. module: account_financial_report
|
|
433
|
+
#. odoo-python
|
|
434
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
435
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
436
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
437
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
438
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
439
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__company_id
|
|
440
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
441
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
442
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
443
|
+
msgid "Company"
|
|
444
|
+
msgstr "Företag"
|
|
445
|
+
|
|
446
|
+
#. module: account_financial_report
|
|
447
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
|
|
448
|
+
msgid "Compute accounts"
|
|
449
|
+
msgstr "Beräkna redovisningar"
|
|
450
|
+
|
|
451
|
+
#. module: account_financial_report
|
|
452
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
453
|
+
msgid "Config Settings"
|
|
454
|
+
msgstr "Konfigureringsinställningar"
|
|
455
|
+
|
|
456
|
+
#. module: account_financial_report
|
|
457
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
458
|
+
msgid "Configurations"
|
|
459
|
+
msgstr "Konfigurationer"
|
|
460
|
+
|
|
461
|
+
#. module: account_financial_report
|
|
462
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
463
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
467
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_uid
|
|
468
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
|
|
469
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
|
|
470
|
+
msgid "Created by"
|
|
471
|
+
msgstr "Skapat av"
|
|
472
|
+
|
|
473
|
+
#. module: account_financial_report
|
|
474
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
475
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
479
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_date
|
|
480
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
|
|
481
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
|
|
482
|
+
msgid "Created on"
|
|
483
|
+
msgstr "Skapat den"
|
|
484
|
+
|
|
485
|
+
#. module: account_financial_report
|
|
486
|
+
#. odoo-python
|
|
487
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
488
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
489
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
490
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
491
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
492
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
493
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
494
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
495
|
+
msgid "Credit"
|
|
496
|
+
msgstr "Kredit"
|
|
497
|
+
|
|
498
|
+
#. module: account_financial_report
|
|
499
|
+
#. odoo-python
|
|
500
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
501
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
502
|
+
msgid "Cumul cur."
|
|
503
|
+
msgstr "Kumulativ cur."
|
|
504
|
+
|
|
505
|
+
#. module: account_financial_report
|
|
506
|
+
#. odoo-python
|
|
507
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
508
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
509
|
+
msgid "Cumul. Bal."
|
|
510
|
+
msgstr "Cumulation. Bal."
|
|
511
|
+
|
|
512
|
+
#. module: account_financial_report
|
|
513
|
+
#. odoo-python
|
|
514
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
515
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
516
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
517
|
+
msgid "Cur."
|
|
518
|
+
msgstr "Valuta"
|
|
519
|
+
|
|
520
|
+
#. module: account_financial_report
|
|
521
|
+
#. odoo-python
|
|
522
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
523
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
524
|
+
msgid "Cur. Original"
|
|
525
|
+
msgstr "Valuta original"
|
|
526
|
+
|
|
527
|
+
#. module: account_financial_report
|
|
528
|
+
#. odoo-python
|
|
529
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
530
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
531
|
+
msgid "Cur. Residual"
|
|
532
|
+
msgstr "Valuta, resterande"
|
|
533
|
+
|
|
534
|
+
#. module: account_financial_report
|
|
535
|
+
#. odoo-python
|
|
536
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
537
|
+
msgid "Currency"
|
|
538
|
+
msgstr "Valuta"
|
|
539
|
+
|
|
540
|
+
#. module: account_financial_report
|
|
541
|
+
#. odoo-python
|
|
542
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
543
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
544
|
+
msgid "Current"
|
|
545
|
+
msgstr "Nuvarande"
|
|
546
|
+
|
|
547
|
+
#. module: account_financial_report
|
|
548
|
+
#. odoo-python
|
|
549
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
550
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
551
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
552
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
553
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
554
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
555
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
556
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
557
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
558
|
+
msgid "Date"
|
|
559
|
+
msgstr "Datum"
|
|
560
|
+
|
|
561
|
+
#. module: account_financial_report
|
|
562
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
|
|
563
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
|
|
564
|
+
msgid "Date At"
|
|
565
|
+
msgstr "Datum, klockslag"
|
|
566
|
+
|
|
567
|
+
#. module: account_financial_report
|
|
568
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
|
|
569
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_from
|
|
570
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_from
|
|
571
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_from
|
|
572
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
573
|
+
msgid "Date From"
|
|
574
|
+
msgstr "Datum, från och med"
|
|
575
|
+
|
|
576
|
+
#. module: account_financial_report
|
|
577
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_to
|
|
578
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
|
|
579
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
580
|
+
msgid "Date To"
|
|
581
|
+
msgstr "Datum, till och med"
|
|
582
|
+
|
|
583
|
+
#. module: account_financial_report
|
|
584
|
+
#. odoo-python
|
|
585
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
586
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
587
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
588
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
589
|
+
msgid "Date at filter"
|
|
590
|
+
msgstr "Datumfilter"
|
|
591
|
+
|
|
592
|
+
#. module: account_financial_report
|
|
593
|
+
#. odoo-python
|
|
594
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
595
|
+
msgid "Date from"
|
|
596
|
+
msgstr "Datum, från"
|
|
597
|
+
|
|
598
|
+
#. module: account_financial_report
|
|
599
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_range_id
|
|
600
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_range_id
|
|
601
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
|
|
602
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
|
|
603
|
+
msgid "Date range"
|
|
604
|
+
msgstr "Datumintervall"
|
|
605
|
+
|
|
606
|
+
#. module: account_financial_report
|
|
607
|
+
#. odoo-python
|
|
608
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
609
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
610
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
611
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
612
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
613
|
+
msgid "Date range filter"
|
|
614
|
+
msgstr "Datumintervall filter"
|
|
615
|
+
|
|
616
|
+
#. module: account_financial_report
|
|
617
|
+
#. odoo-python
|
|
618
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
619
|
+
msgid "Date to"
|
|
620
|
+
msgstr "Datum till"
|
|
621
|
+
|
|
622
|
+
#. module: account_financial_report
|
|
623
|
+
#. odoo-python
|
|
624
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
625
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
626
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
627
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
628
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
629
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
630
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
631
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
632
|
+
msgid "Debit"
|
|
633
|
+
msgstr "Debitera"
|
|
634
|
+
|
|
635
|
+
#. module: account_financial_report
|
|
636
|
+
#. odoo-python
|
|
637
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
638
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
639
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
640
|
+
msgid "Description"
|
|
641
|
+
msgstr "Beskrivning"
|
|
642
|
+
|
|
643
|
+
#. module: account_financial_report
|
|
644
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
|
|
645
|
+
msgid "Detail Taxes"
|
|
646
|
+
msgstr "Skattedetaljer"
|
|
647
|
+
|
|
648
|
+
#. module: account_financial_report
|
|
649
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
650
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
651
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
652
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
653
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
654
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
655
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
656
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
657
|
+
msgid "Display Name"
|
|
658
|
+
msgstr "Visningsnamn"
|
|
659
|
+
|
|
660
|
+
#. module: account_financial_report
|
|
661
|
+
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
662
|
+
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
663
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
664
|
+
msgid ""
|
|
665
|
+
"Display foreign currency for move lines, unless account currency is not "
|
|
666
|
+
"setup through chart of accounts will display initial and final balance in "
|
|
667
|
+
"that currency."
|
|
668
|
+
msgstr ""
|
|
669
|
+
"Visa utländsk valuta för \"move lines\". Såvida inte kontovalutan ställs in "
|
|
670
|
+
"via kontoplanen kommer den att visa initialt och slutligt saldo i den "
|
|
671
|
+
"valutan."
|
|
672
|
+
|
|
673
|
+
#. module: account_financial_report
|
|
674
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
|
|
675
|
+
msgid "Do not display parent levels"
|
|
676
|
+
msgstr "Visa inte överliggande nivåer"
|
|
677
|
+
|
|
678
|
+
#. module: account_financial_report
|
|
679
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
680
|
+
msgid ""
|
|
681
|
+
"Due\n"
|
|
682
|
+
" date"
|
|
683
|
+
msgstr ""
|
|
684
|
+
"Förfallodatum\n"
|
|
685
|
+
" datum"
|
|
686
|
+
|
|
687
|
+
#. module: account_financial_report
|
|
688
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
689
|
+
msgid ""
|
|
690
|
+
"Due\n"
|
|
691
|
+
" date"
|
|
692
|
+
msgstr ""
|
|
693
|
+
"Förfallodatum\n"
|
|
694
|
+
" datum"
|
|
695
|
+
|
|
696
|
+
#. module: account_financial_report
|
|
697
|
+
#. odoo-python
|
|
698
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
699
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
700
|
+
msgid "Due date"
|
|
701
|
+
msgstr "Förfallodatum"
|
|
702
|
+
|
|
703
|
+
#. module: account_financial_report
|
|
704
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
|
|
705
|
+
msgid "End Date"
|
|
706
|
+
msgstr "Slutdatum"
|
|
707
|
+
|
|
708
|
+
#. module: account_financial_report
|
|
709
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
|
|
710
|
+
msgid "End date"
|
|
711
|
+
msgstr "Slutdatum"
|
|
712
|
+
|
|
713
|
+
#. module: account_financial_report
|
|
714
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
715
|
+
msgid ""
|
|
716
|
+
"Ending\n"
|
|
717
|
+
" balance"
|
|
718
|
+
msgstr ""
|
|
719
|
+
"Utgående\n"
|
|
720
|
+
" balans"
|
|
721
|
+
|
|
722
|
+
#. module: account_financial_report
|
|
723
|
+
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
724
|
+
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_to
|
|
725
|
+
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
726
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
727
|
+
msgid "Ending account in a range"
|
|
728
|
+
msgstr "Slutkonto i ett intervall"
|
|
729
|
+
|
|
730
|
+
#. module: account_financial_report
|
|
731
|
+
#. odoo-python
|
|
732
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
733
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
734
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
735
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
736
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
737
|
+
msgid "Ending balance"
|
|
738
|
+
msgstr "Utgående balans"
|
|
739
|
+
|
|
740
|
+
#. module: account_financial_report
|
|
741
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
742
|
+
msgid ""
|
|
743
|
+
"Ending balance\n"
|
|
744
|
+
" cur."
|
|
745
|
+
msgstr ""
|
|
746
|
+
"Utgående balans\n"
|
|
747
|
+
" valuta"
|
|
748
|
+
|
|
749
|
+
#. module: account_financial_report
|
|
750
|
+
#. odoo-python
|
|
751
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
752
|
+
msgid "Entries sorted by"
|
|
753
|
+
msgstr "Inlägg sorterade efter"
|
|
754
|
+
|
|
755
|
+
#. module: account_financial_report
|
|
756
|
+
#. odoo-python
|
|
757
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
758
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
759
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
760
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
761
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
762
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
763
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
764
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
765
|
+
msgid "Entry"
|
|
766
|
+
msgstr "Inlägg"
|
|
767
|
+
|
|
768
|
+
#. module: account_financial_report
|
|
769
|
+
#. odoo-python
|
|
770
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
771
|
+
msgid "Entry number"
|
|
772
|
+
msgstr "Ingångsnummer"
|
|
773
|
+
|
|
774
|
+
#. module: account_financial_report
|
|
775
|
+
#. odoo-javascript
|
|
776
|
+
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
777
|
+
msgid "Export"
|
|
778
|
+
msgstr "Exportera"
|
|
779
|
+
|
|
780
|
+
#. module: account_financial_report
|
|
781
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
782
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
783
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
784
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
785
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
786
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
787
|
+
msgid "Export PDF"
|
|
788
|
+
msgstr "Exportera PDF"
|
|
789
|
+
|
|
790
|
+
#. module: account_financial_report
|
|
791
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
792
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
793
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
794
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
795
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
796
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
797
|
+
msgid "Export XLSX"
|
|
798
|
+
msgstr "Exportera XLSX"
|
|
799
|
+
|
|
800
|
+
#. module: account_financial_report
|
|
801
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
|
|
802
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_ids
|
|
803
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_ids
|
|
804
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_ids
|
|
805
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
806
|
+
msgid "Filter accounts"
|
|
807
|
+
msgstr "Filtrera konton"
|
|
808
|
+
|
|
809
|
+
#. module: account_financial_report
|
|
810
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
811
|
+
msgid "Filter analytic accounts"
|
|
812
|
+
msgstr "Filtrera analytiska konton"
|
|
813
|
+
|
|
814
|
+
#. module: account_financial_report
|
|
815
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
816
|
+
msgid "Filter cost centers"
|
|
817
|
+
msgstr "Filtrera kostnadsställen"
|
|
818
|
+
|
|
819
|
+
#. module: account_financial_report
|
|
820
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
|
|
821
|
+
msgid "Filter journals"
|
|
822
|
+
msgstr "Filtrera journaler"
|
|
823
|
+
|
|
824
|
+
#. module: account_financial_report
|
|
825
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
|
|
826
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ids
|
|
827
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__partner_ids
|
|
828
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids
|
|
829
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
830
|
+
msgid "Filter partners"
|
|
831
|
+
msgstr "Filtrera partners"
|
|
832
|
+
|
|
833
|
+
#. module: account_financial_report
|
|
834
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
|
|
835
|
+
msgid "Foreign Currency"
|
|
836
|
+
msgstr "Utländsk valuta"
|
|
837
|
+
|
|
838
|
+
#. module: account_financial_report
|
|
839
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
840
|
+
msgid "Format"
|
|
841
|
+
msgstr ""
|
|
842
|
+
|
|
843
|
+
#. module: account_financial_report
|
|
844
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
845
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
846
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
847
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
848
|
+
msgid "From Code"
|
|
849
|
+
msgstr "Från kod"
|
|
850
|
+
|
|
851
|
+
#. module: account_financial_report
|
|
852
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
853
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
854
|
+
msgid "From:"
|
|
855
|
+
msgstr "Från:"
|
|
856
|
+
|
|
857
|
+
#. module: account_financial_report
|
|
858
|
+
#. odoo-python
|
|
859
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
860
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
861
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
862
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
863
|
+
msgstr "Från: %(date_from)s Till: %(date_to)s"
|
|
864
|
+
|
|
865
|
+
#. module: account_financial_report
|
|
866
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
867
|
+
msgid "Full Code"
|
|
868
|
+
msgstr "Fullständig kod"
|
|
869
|
+
|
|
870
|
+
#. module: account_financial_report
|
|
871
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
|
|
872
|
+
msgid "Full Name"
|
|
873
|
+
msgstr "Fullständigt namn"
|
|
874
|
+
|
|
875
|
+
#. module: account_financial_report
|
|
876
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
|
|
877
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
|
|
878
|
+
msgid "Fy Start Date"
|
|
879
|
+
msgstr "Startdatum"
|
|
880
|
+
|
|
881
|
+
#. module: account_financial_report
|
|
882
|
+
#. odoo-python
|
|
883
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
884
|
+
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
885
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
886
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
887
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
888
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
889
|
+
msgid "General Ledger"
|
|
890
|
+
msgstr "Huvudbok"
|
|
891
|
+
|
|
892
|
+
#. module: account_financial_report
|
|
893
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_base
|
|
894
|
+
msgid "General Ledger -"
|
|
895
|
+
msgstr "Huvudbok -"
|
|
896
|
+
|
|
897
|
+
#. module: account_financial_report
|
|
898
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
|
|
899
|
+
msgid "General Ledger Report"
|
|
900
|
+
msgstr "Redovisningsrapport"
|
|
901
|
+
|
|
902
|
+
#. module: account_financial_report
|
|
903
|
+
#: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
|
|
904
|
+
msgid "General Ledger Report Wizard"
|
|
905
|
+
msgstr "Guide för huvudbokrapport"
|
|
906
|
+
|
|
907
|
+
#. module: account_financial_report
|
|
908
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
|
|
909
|
+
msgid "General Ledger XLSL Report"
|
|
910
|
+
msgstr "Huvudbok XLSL Rapport"
|
|
911
|
+
|
|
912
|
+
#. module: account_financial_report
|
|
913
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
|
|
914
|
+
msgid "General Ledger XLSX"
|
|
915
|
+
msgstr "Huvudbok XLSX"
|
|
916
|
+
|
|
917
|
+
#. module: account_financial_report
|
|
918
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
919
|
+
msgid ""
|
|
920
|
+
"General Ledger can be computed only if selected company have\n"
|
|
921
|
+
" only one unaffected earnings account."
|
|
922
|
+
msgstr ""
|
|
923
|
+
"Huvudbok kan endast beräknas om valt företag har\n"
|
|
924
|
+
" endast ett opåverkat inkomstkonto."
|
|
925
|
+
|
|
926
|
+
#. module: account_financial_report
|
|
927
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
928
|
+
msgid "Group entries by"
|
|
929
|
+
msgstr "Gruppinlägg efter"
|
|
930
|
+
|
|
931
|
+
#. module: account_financial_report
|
|
932
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
933
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
934
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
935
|
+
msgid "Grouped By"
|
|
936
|
+
msgstr "Grupperad efter"
|
|
937
|
+
|
|
938
|
+
#. module: account_financial_report
|
|
939
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
940
|
+
msgid ""
|
|
941
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
942
|
+
msgstr ""
|
|
943
|
+
"Här kan du ställa in de intervall som ska visas på Aged Partner Balance."
|
|
944
|
+
|
|
945
|
+
#. module: account_financial_report
|
|
946
|
+
#. odoo-python
|
|
947
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
948
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
949
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
950
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
951
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
952
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
953
|
+
msgid "Hide"
|
|
954
|
+
msgstr "Dölja"
|
|
955
|
+
|
|
956
|
+
#. module: account_financial_report
|
|
957
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
|
|
958
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
|
|
959
|
+
msgid "Hide account ending balance at 0"
|
|
960
|
+
msgstr "Dölj kontots slutsaldo vid 0"
|
|
961
|
+
|
|
962
|
+
#. module: account_financial_report
|
|
963
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
964
|
+
msgid "Hide accounts at 0"
|
|
965
|
+
msgstr "Dölj konton på 0"
|
|
966
|
+
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
969
|
+
msgid "Hierarchy Levels to display"
|
|
970
|
+
msgstr "Hierarkinivåer att visa"
|
|
971
|
+
|
|
972
|
+
#. module: account_financial_report
|
|
973
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
974
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
975
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
976
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
977
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
978
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
979
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
980
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
981
|
+
msgid "ID"
|
|
982
|
+
msgstr "ID"
|
|
983
|
+
|
|
984
|
+
#. module: account_financial_report
|
|
985
|
+
#: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
|
|
986
|
+
msgid ""
|
|
987
|
+
"If flagged, no details will be displayed in the General Ledger report (the "
|
|
988
|
+
"webkit one only), only centralized amounts per period."
|
|
989
|
+
msgstr ""
|
|
990
|
+
"Om den är flaggad kommer inga detaljer att visas i huvudboksrapporten "
|
|
991
|
+
"(endast webkit), endast centraliserade belopp per period."
|
|
992
|
+
|
|
993
|
+
#. module: account_financial_report
|
|
994
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
995
|
+
msgid "Inferior Limit"
|
|
996
|
+
msgstr "Nedre gräns"
|
|
997
|
+
|
|
998
|
+
#. module: account_financial_report
|
|
999
|
+
#. odoo-python
|
|
1000
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1001
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1002
|
+
msgstr "Inferior Limit måste vara större än noll"
|
|
1003
|
+
|
|
1004
|
+
#. module: account_financial_report
|
|
1005
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1006
|
+
msgid ""
|
|
1007
|
+
"Initial\n"
|
|
1008
|
+
" balance cur."
|
|
1009
|
+
msgstr ""
|
|
1010
|
+
"Initial\n"
|
|
1011
|
+
" balans val."
|
|
1012
|
+
|
|
1013
|
+
#. module: account_financial_report
|
|
1014
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1015
|
+
msgid ""
|
|
1016
|
+
"Initial\n"
|
|
1017
|
+
" balance"
|
|
1018
|
+
msgstr ""
|
|
1019
|
+
"Initial\n"
|
|
1020
|
+
" balans"
|
|
1021
|
+
|
|
1022
|
+
#. module: account_financial_report
|
|
1023
|
+
#. odoo-python
|
|
1024
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1025
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1026
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1027
|
+
msgid "Initial balance"
|
|
1028
|
+
msgstr "Initial balans"
|
|
1029
|
+
|
|
1030
|
+
#. module: account_financial_report
|
|
1031
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1032
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1033
|
+
msgid "Intervals configuration"
|
|
1034
|
+
msgstr "Konfiguration av intervall"
|
|
1035
|
+
|
|
1036
|
+
#. module: account_financial_report
|
|
1037
|
+
#. odoo-python
|
|
1038
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1039
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1040
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1041
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1042
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__journal_ids
|
|
1043
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1044
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1045
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1046
|
+
msgid "Journal"
|
|
1047
|
+
msgstr "Verifikat"
|
|
1048
|
+
|
|
1049
|
+
#. module: account_financial_report
|
|
1050
|
+
#: model:ir.model,name:account_financial_report.model_account_move_line
|
|
1051
|
+
msgid "Journal Item"
|
|
1052
|
+
msgstr "Verifikat"
|
|
1053
|
+
|
|
1054
|
+
#. module: account_financial_report
|
|
1055
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1056
|
+
msgid "Journal Items Domain"
|
|
1057
|
+
msgstr "Domän för verifikat"
|
|
1058
|
+
|
|
1059
|
+
#. module: account_financial_report
|
|
1060
|
+
#. odoo-python
|
|
1061
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1062
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1063
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1064
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1065
|
+
msgid "Journal Ledger"
|
|
1066
|
+
msgstr "Journalreskontra"
|
|
1067
|
+
|
|
1068
|
+
#. module: account_financial_report
|
|
1069
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base
|
|
1070
|
+
msgid "Journal Ledger -"
|
|
1071
|
+
msgstr "Journalreskontra -"
|
|
1072
|
+
|
|
1073
|
+
#. module: account_financial_report
|
|
1074
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
|
|
1075
|
+
msgid "Journal Ledger Report"
|
|
1076
|
+
msgstr "Journalreskontrarapport"
|
|
1077
|
+
|
|
1078
|
+
#. module: account_financial_report
|
|
1079
|
+
#: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
|
|
1080
|
+
msgid "Journal Ledger Report Wizard"
|
|
1081
|
+
msgstr "Journalreskontrarapportguide"
|
|
1082
|
+
|
|
1083
|
+
#. module: account_financial_report
|
|
1084
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx
|
|
1085
|
+
msgid "Journal Ledger XLSX"
|
|
1086
|
+
msgstr "Journalreskontra XLSX"
|
|
1087
|
+
|
|
1088
|
+
#. module: account_financial_report
|
|
1089
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
|
|
1090
|
+
msgid "Journal Ledger XLSX Report"
|
|
1091
|
+
msgstr "Journalreskontra XLSX Rapport"
|
|
1092
|
+
|
|
1093
|
+
#. module: account_financial_report
|
|
1094
|
+
#. odoo-python
|
|
1095
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1097
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1098
|
+
msgid "Journals"
|
|
1099
|
+
msgstr "Journaler"
|
|
1100
|
+
|
|
1101
|
+
#. module: account_financial_report
|
|
1102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1103
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1104
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1105
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1106
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1107
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1109
|
+
msgid "Label Text Limit"
|
|
1110
|
+
msgstr ""
|
|
1111
|
+
|
|
1112
|
+
#. module: account_financial_report
|
|
1113
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1114
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1115
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1116
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
1118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_uid
|
|
1119
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
|
|
1120
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
|
|
1121
|
+
msgid "Last Updated by"
|
|
1122
|
+
msgstr "Senast uppdaterad av"
|
|
1123
|
+
|
|
1124
|
+
#. module: account_financial_report
|
|
1125
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1126
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1127
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1128
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
1130
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_date
|
|
1131
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
|
|
1132
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
|
|
1133
|
+
msgid "Last Updated on"
|
|
1134
|
+
msgstr "Senast uppdaterad den"
|
|
1135
|
+
|
|
1136
|
+
#. module: account_financial_report
|
|
1137
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
|
|
1138
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1139
|
+
msgid "Level"
|
|
1140
|
+
msgstr "Nivå"
|
|
1141
|
+
|
|
1142
|
+
#. module: account_financial_report
|
|
1143
|
+
#. odoo-python
|
|
1144
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1145
|
+
msgid "Level %s"
|
|
1146
|
+
msgstr "Nivå%s"
|
|
1147
|
+
|
|
1148
|
+
#. module: account_financial_report
|
|
1149
|
+
#. odoo-python
|
|
1150
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1151
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1152
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1153
|
+
msgid "Limit hierarchy levels"
|
|
1154
|
+
msgstr "Begränsa hierarkinivåer"
|
|
1155
|
+
|
|
1156
|
+
#. module: account_financial_report
|
|
1157
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1158
|
+
msgid "Line"
|
|
1159
|
+
msgstr "Linje"
|
|
1160
|
+
|
|
1161
|
+
#. module: account_financial_report
|
|
1162
|
+
#. odoo-python
|
|
1163
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1164
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1165
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1166
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1167
|
+
msgid "Missing Partner"
|
|
1168
|
+
msgstr "Saknad partner"
|
|
1169
|
+
|
|
1170
|
+
#. module: account_financial_report
|
|
1171
|
+
#. odoo-python
|
|
1172
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1173
|
+
msgid "Missing Salesperson"
|
|
1174
|
+
msgstr ""
|
|
1175
|
+
|
|
1176
|
+
#. module: account_financial_report
|
|
1177
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1178
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1179
|
+
msgstr "Modell för att ställa in intervallinjer för Age partner-saldorapport"
|
|
1180
|
+
|
|
1181
|
+
#. module: account_financial_report
|
|
1182
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1183
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1184
|
+
msgstr "Modell för att ställa in intervall för Age Partner-saldorapport"
|
|
1185
|
+
|
|
1186
|
+
#. module: account_financial_report
|
|
1187
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1188
|
+
msgid "Move Target"
|
|
1189
|
+
msgstr "Flytta verifikat"
|
|
1190
|
+
|
|
1191
|
+
#. module: account_financial_report
|
|
1192
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
1193
|
+
msgid "Moves"
|
|
1194
|
+
msgstr "Rörelser"
|
|
1195
|
+
|
|
1196
|
+
#. module: account_financial_report
|
|
1197
|
+
#. odoo-python
|
|
1198
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1199
|
+
msgid "Must complete Configuration Lines"
|
|
1200
|
+
msgstr "Måste komplettera konfigurationslinjerna"
|
|
1201
|
+
|
|
1202
|
+
#. module: account_financial_report
|
|
1203
|
+
#. odoo-python
|
|
1204
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1205
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1206
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1207
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1208
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1209
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1210
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1211
|
+
msgid "Name"
|
|
1212
|
+
msgstr "Namn"
|
|
1213
|
+
|
|
1214
|
+
#. module: account_financial_report
|
|
1215
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1216
|
+
msgid "Name must be unique per report configuration"
|
|
1217
|
+
msgstr "Namnet måste vara unikt för varje rapportkonfiguration"
|
|
1218
|
+
|
|
1219
|
+
#. module: account_financial_report
|
|
1220
|
+
#. odoo-python
|
|
1221
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1222
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1223
|
+
msgid "Net"
|
|
1224
|
+
msgstr "Nät"
|
|
1225
|
+
|
|
1226
|
+
#. module: account_financial_report
|
|
1227
|
+
#. odoo-python
|
|
1228
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1229
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1230
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1231
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1232
|
+
msgid "No"
|
|
1233
|
+
msgstr "Nej"
|
|
1234
|
+
|
|
1235
|
+
#. module: account_financial_report
|
|
1236
|
+
#. odoo-python
|
|
1237
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1238
|
+
msgid "No group"
|
|
1239
|
+
msgstr "Ingen grupp"
|
|
1240
|
+
|
|
1241
|
+
#. module: account_financial_report
|
|
1242
|
+
#. odoo-python
|
|
1243
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1244
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1245
|
+
msgid "No limit"
|
|
1246
|
+
msgstr "Utan begränsning"
|
|
1247
|
+
|
|
1248
|
+
#. module: account_financial_report
|
|
1249
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1250
|
+
msgid "None"
|
|
1251
|
+
msgstr "Ingen"
|
|
1252
|
+
|
|
1253
|
+
#. module: account_financial_report
|
|
1254
|
+
#. odoo-python
|
|
1255
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1256
|
+
msgid "Not Posted"
|
|
1257
|
+
msgstr "Inte bokförd"
|
|
1258
|
+
|
|
1259
|
+
#. module: account_financial_report
|
|
1260
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1261
|
+
msgid "Not due"
|
|
1262
|
+
msgstr "Ej förfallen"
|
|
1263
|
+
|
|
1264
|
+
#. module: account_financial_report
|
|
1265
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1266
|
+
msgid "OCA Aged Report Configuration"
|
|
1267
|
+
msgstr "Konfiguration av OCA-åldersrapport"
|
|
1268
|
+
|
|
1269
|
+
#. module: account_financial_report
|
|
1270
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1271
|
+
msgid "OCA accounting reports"
|
|
1272
|
+
msgstr "OCA bokföringsrapporter"
|
|
1273
|
+
|
|
1274
|
+
#. module: account_financial_report
|
|
1275
|
+
#. odoo-python
|
|
1276
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1277
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1278
|
+
msgid "Older"
|
|
1279
|
+
msgstr "Äldre"
|
|
1280
|
+
|
|
1281
|
+
#. module: account_financial_report
|
|
1282
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1283
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1284
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1285
|
+
msgstr "Endast ett intäktskonto som inte påverkas"
|
|
1286
|
+
|
|
1287
|
+
#. module: account_financial_report
|
|
1288
|
+
#. odoo-python
|
|
1289
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1290
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1291
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1292
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1293
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1294
|
+
msgid "Open Items"
|
|
1295
|
+
msgstr "Öppna föremål"
|
|
1296
|
+
|
|
1297
|
+
#. module: account_financial_report
|
|
1298
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
|
|
1299
|
+
msgid "Open Items -"
|
|
1300
|
+
msgstr "Öppna föremål -"
|
|
1301
|
+
|
|
1302
|
+
#. module: account_financial_report
|
|
1303
|
+
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1304
|
+
msgid "Open Items Partner"
|
|
1305
|
+
msgstr "Öppna artiklar Partner"
|
|
1306
|
+
|
|
1307
|
+
#. module: account_financial_report
|
|
1308
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
1309
|
+
msgid "Open Items Report"
|
|
1310
|
+
msgstr "Rapport om öppna punkter"
|
|
1311
|
+
|
|
1312
|
+
#. module: account_financial_report
|
|
1313
|
+
#: model:ir.model,name:account_financial_report.model_open_items_report_wizard
|
|
1314
|
+
msgid "Open Items Report Wizard"
|
|
1315
|
+
msgstr "Guiden för rapport om öppna objekt"
|
|
1316
|
+
|
|
1317
|
+
#. module: account_financial_report
|
|
1318
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx
|
|
1319
|
+
msgid "Open Items XLSX"
|
|
1320
|
+
msgstr "Öppna poster XLSX"
|
|
1321
|
+
|
|
1322
|
+
#. module: account_financial_report
|
|
1323
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
|
|
1324
|
+
msgid "Open Items XLSX Report"
|
|
1325
|
+
msgstr "Öppna objekt XLSX-rapport"
|
|
1326
|
+
|
|
1327
|
+
#. module: account_financial_report
|
|
1328
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1329
|
+
msgid "Options"
|
|
1330
|
+
msgstr "Alternativ"
|
|
1331
|
+
|
|
1332
|
+
#. module: account_financial_report
|
|
1333
|
+
#. odoo-python
|
|
1334
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1335
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1336
|
+
msgid "Original"
|
|
1337
|
+
msgstr "Original"
|
|
1338
|
+
|
|
1339
|
+
#. module: account_financial_report
|
|
1340
|
+
#. odoo-python
|
|
1341
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1342
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1343
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1344
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1345
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1346
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1347
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1348
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1349
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1350
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1351
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1352
|
+
msgid "Partner"
|
|
1353
|
+
msgstr "Kund"
|
|
1354
|
+
|
|
1355
|
+
#. module: account_financial_report
|
|
1356
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
|
|
1357
|
+
msgid ""
|
|
1358
|
+
"Partner\n"
|
|
1359
|
+
" cumul aged balance"
|
|
1360
|
+
msgstr ""
|
|
1361
|
+
"Kund\n"
|
|
1362
|
+
" Ackumulerad balans"
|
|
1363
|
+
|
|
1364
|
+
#. module: account_financial_report
|
|
1365
|
+
#. odoo-python
|
|
1366
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1367
|
+
msgid "Partner Initial balance"
|
|
1368
|
+
msgstr "Kund initial balans"
|
|
1369
|
+
|
|
1370
|
+
#. module: account_financial_report
|
|
1371
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1372
|
+
msgid "Partner Salesperson"
|
|
1373
|
+
msgstr ""
|
|
1374
|
+
|
|
1375
|
+
#. module: account_financial_report
|
|
1376
|
+
#. odoo-python
|
|
1377
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1378
|
+
msgid "Partner cumul aged balance"
|
|
1379
|
+
msgstr "Partner ackumulerat åldrat saldo"
|
|
1380
|
+
|
|
1381
|
+
#. module: account_financial_report
|
|
1382
|
+
#. odoo-python
|
|
1383
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1384
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1385
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1386
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1387
|
+
msgid "Partner ending balance"
|
|
1388
|
+
msgstr "Partner utgående balans"
|
|
1389
|
+
|
|
1390
|
+
#. module: account_financial_report
|
|
1391
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1392
|
+
msgid "Partner initial balance"
|
|
1393
|
+
msgstr "Partnerns initiala balans"
|
|
1394
|
+
|
|
1395
|
+
#. module: account_financial_report
|
|
1396
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1397
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1398
|
+
msgid "Partners"
|
|
1399
|
+
msgstr "Partner"
|
|
1400
|
+
|
|
1401
|
+
#. module: account_financial_report
|
|
1402
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1403
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
1404
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
|
|
1405
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
|
|
1406
|
+
msgid "Payable Accounts Only"
|
|
1407
|
+
msgstr "Endast leverantörsskulder"
|
|
1408
|
+
|
|
1409
|
+
#. module: account_financial_report
|
|
1410
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1411
|
+
msgid "Percents"
|
|
1412
|
+
msgstr "Procent"
|
|
1413
|
+
|
|
1414
|
+
#. module: account_financial_report
|
|
1415
|
+
#. odoo-python
|
|
1416
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1417
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1418
|
+
msgid "Period balance"
|
|
1419
|
+
msgstr "Periodsaldo"
|
|
1420
|
+
|
|
1421
|
+
#. module: account_financial_report
|
|
1422
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1423
|
+
msgid "Periods"
|
|
1424
|
+
msgstr "Perioder"
|
|
1425
|
+
|
|
1426
|
+
#. module: account_financial_report
|
|
1427
|
+
#. odoo-python
|
|
1428
|
+
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1429
|
+
msgid "Posted"
|
|
1430
|
+
msgstr "Bokförd"
|
|
1431
|
+
|
|
1432
|
+
#. module: account_financial_report
|
|
1433
|
+
#. odoo-python
|
|
1434
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1435
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1436
|
+
msgid "Rec."
|
|
1437
|
+
msgstr "Rec."
|
|
1438
|
+
|
|
1439
|
+
#. module: account_financial_report
|
|
1440
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__receivable_accounts_only
|
|
1441
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__receivable_accounts_only
|
|
1442
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
|
|
1443
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
|
|
1444
|
+
msgid "Receivable Accounts Only"
|
|
1445
|
+
msgstr "Endast kundfodringar"
|
|
1446
|
+
|
|
1447
|
+
#. module: account_financial_report
|
|
1448
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1449
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1450
|
+
msgid ""
|
|
1451
|
+
"Ref -\n"
|
|
1452
|
+
" Label"
|
|
1453
|
+
msgstr ""
|
|
1454
|
+
"Ref -\n"
|
|
1455
|
+
" etikett"
|
|
1456
|
+
|
|
1457
|
+
#. module: account_financial_report
|
|
1458
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1459
|
+
msgid ""
|
|
1460
|
+
"Ref -\n"
|
|
1461
|
+
" Label"
|
|
1462
|
+
msgstr ""
|
|
1463
|
+
"Ref -\n"
|
|
1464
|
+
" Etikett"
|
|
1465
|
+
|
|
1466
|
+
#. module: account_financial_report
|
|
1467
|
+
#. odoo-python
|
|
1468
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1469
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1470
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1471
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1472
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1473
|
+
msgid "Ref - Label"
|
|
1474
|
+
msgstr "Ref - etikett"
|
|
1475
|
+
|
|
1476
|
+
#. module: account_financial_report
|
|
1477
|
+
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1478
|
+
msgid "Report Action"
|
|
1479
|
+
msgstr "Rapportera åtgärd"
|
|
1480
|
+
|
|
1481
|
+
#. module: account_financial_report
|
|
1482
|
+
#. odoo-python
|
|
1483
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1484
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1485
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1486
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1487
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1488
|
+
msgid "Residual"
|
|
1489
|
+
msgstr "Återstående"
|
|
1490
|
+
|
|
1491
|
+
#. module: account_financial_report
|
|
1492
|
+
#. odoo-python
|
|
1493
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1494
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1495
|
+
msgid "Sequence"
|
|
1496
|
+
msgstr "Sekvens"
|
|
1497
|
+
|
|
1498
|
+
#. module: account_financial_report
|
|
1499
|
+
#. odoo-python
|
|
1500
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1501
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1502
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1503
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1504
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1505
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1506
|
+
msgid "Show"
|
|
1507
|
+
msgstr "Visa"
|
|
1508
|
+
|
|
1509
|
+
#. module: account_financial_report
|
|
1510
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1511
|
+
msgid "Show Analytic Account"
|
|
1512
|
+
msgstr "Visa objektkonto"
|
|
1513
|
+
|
|
1514
|
+
#. module: account_financial_report
|
|
1515
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1516
|
+
msgid "Show Auto Sequence"
|
|
1517
|
+
msgstr "Visa automatisk sekvens"
|
|
1518
|
+
|
|
1519
|
+
#. module: account_financial_report
|
|
1520
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
1521
|
+
msgid "Show Move Line Details"
|
|
1522
|
+
msgstr "Visa detaljer om \"move line\""
|
|
1523
|
+
|
|
1524
|
+
#. module: account_financial_report
|
|
1525
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1526
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1527
|
+
msgid "Show Partner Details"
|
|
1528
|
+
msgstr "Visa partnerdetaljer"
|
|
1529
|
+
|
|
1530
|
+
#. module: account_financial_report
|
|
1531
|
+
#. odoo-python
|
|
1532
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1533
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1534
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1535
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1536
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1537
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1538
|
+
msgid "Show foreign currency"
|
|
1539
|
+
msgstr "Visa utländsk valuta"
|
|
1540
|
+
|
|
1541
|
+
#. module: account_financial_report
|
|
1542
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1543
|
+
msgid "Show hierarchy"
|
|
1544
|
+
msgstr "Visa hierarki"
|
|
1545
|
+
|
|
1546
|
+
#. module: account_financial_report
|
|
1547
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1548
|
+
msgid "Sort entries by"
|
|
1549
|
+
msgstr "Sortera verifikat efter"
|
|
1550
|
+
|
|
1551
|
+
#. module: account_financial_report
|
|
1552
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
|
|
1553
|
+
msgid "Start Date"
|
|
1554
|
+
msgstr "Startdatum"
|
|
1555
|
+
|
|
1556
|
+
#. module: account_financial_report
|
|
1557
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
|
|
1558
|
+
msgid "Start date"
|
|
1559
|
+
msgstr "Startdatum"
|
|
1560
|
+
|
|
1561
|
+
#. module: account_financial_report
|
|
1562
|
+
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1563
|
+
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1564
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1565
|
+
msgid "Starting account in a range"
|
|
1566
|
+
msgstr "Påbörjar ett konto inom ett intervall"
|
|
1567
|
+
|
|
1568
|
+
#. module: account_financial_report
|
|
1569
|
+
#. odoo-python
|
|
1570
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1571
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1572
|
+
msgid "TOTAL"
|
|
1573
|
+
msgstr "TOTALT"
|
|
1574
|
+
|
|
1575
|
+
#. module: account_financial_report
|
|
1576
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1577
|
+
msgid "Tags"
|
|
1578
|
+
msgstr "Taggar"
|
|
1579
|
+
|
|
1580
|
+
#. module: account_financial_report
|
|
1581
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
|
|
1582
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__target_move
|
|
1583
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__target_move
|
|
1584
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
|
|
1585
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
|
|
1586
|
+
msgid "Target Moves"
|
|
1587
|
+
msgstr "Målrörelser"
|
|
1588
|
+
|
|
1589
|
+
#. module: account_financial_report
|
|
1590
|
+
#. odoo-python
|
|
1591
|
+
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1592
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1593
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1594
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1595
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1596
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
1597
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1598
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1599
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1600
|
+
msgid "Target moves filter"
|
|
1601
|
+
msgstr "Mål flyttar filter"
|
|
1602
|
+
|
|
1603
|
+
#. module: account_financial_report
|
|
1604
|
+
#. odoo-python
|
|
1605
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1606
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1607
|
+
msgid "Tax"
|
|
1608
|
+
msgstr "Skatt"
|
|
1609
|
+
|
|
1610
|
+
#. module: account_financial_report
|
|
1611
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1612
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1613
|
+
msgid "Tax Amount"
|
|
1614
|
+
msgstr "Skattesats"
|
|
1615
|
+
|
|
1616
|
+
#. module: account_financial_report
|
|
1617
|
+
#. odoo-python
|
|
1618
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1619
|
+
msgid "Tax Balance"
|
|
1620
|
+
msgstr "Skattebalans"
|
|
1621
|
+
|
|
1622
|
+
#. module: account_financial_report
|
|
1623
|
+
#. odoo-python
|
|
1624
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1625
|
+
msgid "Tax Credit"
|
|
1626
|
+
msgstr "Skattekreditering"
|
|
1627
|
+
|
|
1628
|
+
#. module: account_financial_report
|
|
1629
|
+
#. odoo-python
|
|
1630
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1631
|
+
msgid "Tax Debit"
|
|
1632
|
+
msgstr "Skattedebitering"
|
|
1633
|
+
|
|
1634
|
+
#. module: account_financial_report
|
|
1635
|
+
#. odoo-python
|
|
1636
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1637
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1638
|
+
msgid "Tax Groups"
|
|
1639
|
+
msgstr "Skattegrupper"
|
|
1640
|
+
|
|
1641
|
+
#. module: account_financial_report
|
|
1642
|
+
#. odoo-python
|
|
1643
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1644
|
+
msgid "Tax Initial balance"
|
|
1645
|
+
msgstr "Skatt, ingående balans"
|
|
1646
|
+
|
|
1647
|
+
#. module: account_financial_report
|
|
1648
|
+
#. odoo-python
|
|
1649
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1650
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1651
|
+
msgid "Tax Tags"
|
|
1652
|
+
msgstr "Skattetaggar"
|
|
1653
|
+
|
|
1654
|
+
#. module: account_financial_report
|
|
1655
|
+
#. odoo-python
|
|
1656
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1657
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1658
|
+
msgid "Tax ending balance"
|
|
1659
|
+
msgstr "Slutskatt"
|
|
1660
|
+
|
|
1661
|
+
#. module: account_financial_report
|
|
1662
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1663
|
+
msgid "Tax initial balance"
|
|
1664
|
+
msgstr "Skatt, ingående balans"
|
|
1665
|
+
|
|
1666
|
+
#. module: account_financial_report
|
|
1667
|
+
#. odoo-python
|
|
1668
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1669
|
+
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1670
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1671
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1672
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1673
|
+
msgid "Taxes"
|
|
1674
|
+
msgstr "Skatter"
|
|
1675
|
+
|
|
1676
|
+
#. module: account_financial_report
|
|
1677
|
+
#. odoo-python
|
|
1678
|
+
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1679
|
+
msgid ""
|
|
1680
|
+
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1681
|
+
"the same."
|
|
1682
|
+
msgstr ""
|
|
1683
|
+
"Företaget i guiden för huvudbokrapporten och i datumintervallet måste vara "
|
|
1684
|
+
"detsamma."
|
|
1685
|
+
|
|
1686
|
+
#. module: account_financial_report
|
|
1687
|
+
#. odoo-python
|
|
1688
|
+
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1689
|
+
msgid ""
|
|
1690
|
+
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1691
|
+
"same."
|
|
1692
|
+
msgstr ""
|
|
1693
|
+
"Företaget i guiden får en provbalansrapport och i datumintervall måste vara "
|
|
1694
|
+
"detsamma."
|
|
1695
|
+
|
|
1696
|
+
#. module: account_financial_report
|
|
1697
|
+
#. odoo-python
|
|
1698
|
+
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1699
|
+
msgid ""
|
|
1700
|
+
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1701
|
+
msgstr ""
|
|
1702
|
+
"Företaget i momsrapportsguiden och i datumintervallet måste vara samma."
|
|
1703
|
+
|
|
1704
|
+
#. module: account_financial_report
|
|
1705
|
+
#. odoo-python
|
|
1706
|
+
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1707
|
+
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1708
|
+
msgstr "Hierarkinivån att filtrera på måste vara större än 0."
|
|
1709
|
+
|
|
1710
|
+
#. module: account_financial_report
|
|
1711
|
+
#. odoo-python
|
|
1712
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1713
|
+
msgid ""
|
|
1714
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1715
|
+
"create some child group of %s."
|
|
1716
|
+
msgstr ""
|
|
1717
|
+
"Det finns ett problem med kontogruppernas struktur. Du kan behöva skapa en "
|
|
1718
|
+
"undergrupp till %s."
|
|
1719
|
+
|
|
1720
|
+
#. module: account_financial_report
|
|
1721
|
+
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1722
|
+
msgid "This domain will be used to select specific domain for Journal Items"
|
|
1723
|
+
msgstr ""
|
|
1724
|
+
"Den här domänen kommer att användas för att välja specifik domän för är "
|
|
1725
|
+
"journalföremål"
|
|
1726
|
+
|
|
1727
|
+
#. module: account_financial_report
|
|
1728
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1729
|
+
msgid "To"
|
|
1730
|
+
msgstr "Till"
|
|
1731
|
+
|
|
1732
|
+
#. module: account_financial_report
|
|
1733
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1734
|
+
msgid "To:"
|
|
1735
|
+
msgstr "Till:"
|
|
1736
|
+
|
|
1737
|
+
#. module: account_financial_report
|
|
1738
|
+
#. odoo-python
|
|
1739
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1740
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1741
|
+
msgid "Total"
|
|
1742
|
+
msgstr "Total"
|
|
1743
|
+
|
|
1744
|
+
#. module: account_financial_report
|
|
1745
|
+
#. odoo-python
|
|
1746
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1747
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1748
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1749
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1750
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1751
|
+
msgid "Trial Balance"
|
|
1752
|
+
msgstr "Provbalans"
|
|
1753
|
+
|
|
1754
|
+
#. module: account_financial_report
|
|
1755
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
|
|
1756
|
+
msgid "Trial Balance -"
|
|
1757
|
+
msgstr "Provbalans -"
|
|
1758
|
+
|
|
1759
|
+
#. module: account_financial_report
|
|
1760
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1761
|
+
msgid "Trial Balance Report"
|
|
1762
|
+
msgstr "Balansrapport för försök"
|
|
1763
|
+
|
|
1764
|
+
#. module: account_financial_report
|
|
1765
|
+
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
1766
|
+
msgid "Trial Balance Report Wizard"
|
|
1767
|
+
msgstr "Guide för balansrapport för försök"
|
|
1768
|
+
|
|
1769
|
+
#. module: account_financial_report
|
|
1770
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx
|
|
1771
|
+
msgid "Trial Balance XLSX"
|
|
1772
|
+
msgstr "Balansrapport XLSX"
|
|
1773
|
+
|
|
1774
|
+
#. module: account_financial_report
|
|
1775
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1776
|
+
msgid "Trial Balance XLSX Report"
|
|
1777
|
+
msgstr "Balansrapport XLSX för försök"
|
|
1778
|
+
|
|
1779
|
+
#. module: account_financial_report
|
|
1780
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
1781
|
+
msgid ""
|
|
1782
|
+
"Trial Balance can be computed only if selected company have only\n"
|
|
1783
|
+
" one unaffected earnings account."
|
|
1784
|
+
msgstr ""
|
|
1785
|
+
"Provsaldo kan endast beräknas om det valda företaget endast har det\n"
|
|
1786
|
+
" ett opåverkat inkomstkonto."
|
|
1787
|
+
|
|
1788
|
+
#. module: account_financial_report
|
|
1789
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
|
|
1790
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
|
|
1791
|
+
msgid "Unaffected Earnings Account"
|
|
1792
|
+
msgstr "Opåverkat inkomstkonto"
|
|
1793
|
+
|
|
1794
|
+
#. module: account_financial_report
|
|
1795
|
+
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
|
|
1796
|
+
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__hide_account_at_0
|
|
1797
|
+
msgid ""
|
|
1798
|
+
"Use this filter to hide an account or a partner with an ending balance at 0. "
|
|
1799
|
+
"If partners are filtered, debits and credits totals will not match the trial "
|
|
1800
|
+
"balance."
|
|
1801
|
+
msgstr ""
|
|
1802
|
+
"Använd det här filtret för att dölja ett konto eller en partner med ett "
|
|
1803
|
+
"slutsaldo på0 kronor. Om partner filtreras kommer debet- och kreditsummor "
|
|
1804
|
+
"inte att matcha provbalansen."
|
|
1805
|
+
|
|
1806
|
+
#. module: account_financial_report
|
|
1807
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1808
|
+
msgid "Use when your account groups are hierarchical"
|
|
1809
|
+
msgstr "Använd när dina kontogrupperär hierarkiska"
|
|
1810
|
+
|
|
1811
|
+
#. module: account_financial_report
|
|
1812
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1813
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
1814
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
|
|
1815
|
+
#: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
|
|
1816
|
+
msgid "VAT Report"
|
|
1817
|
+
msgstr "Momsrapport"
|
|
1818
|
+
|
|
1819
|
+
#. module: account_financial_report
|
|
1820
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1821
|
+
msgid "VAT Report -"
|
|
1822
|
+
msgstr "Momsrapport -"
|
|
1823
|
+
|
|
1824
|
+
#. module: account_financial_report
|
|
1825
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1826
|
+
msgid "VAT Report Options"
|
|
1827
|
+
msgstr "Alternativ för momsrapport"
|
|
1828
|
+
|
|
1829
|
+
#. module: account_financial_report
|
|
1830
|
+
#: model:ir.model,name:account_financial_report.model_vat_report_wizard
|
|
1831
|
+
msgid "VAT Report Wizard"
|
|
1832
|
+
msgstr "Momsrapportguiden"
|
|
1833
|
+
|
|
1834
|
+
#. module: account_financial_report
|
|
1835
|
+
#: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
|
|
1836
|
+
msgid "VAT Report XLSX"
|
|
1837
|
+
msgstr "Momsrapport XLSX"
|
|
1838
|
+
|
|
1839
|
+
#. module: account_financial_report
|
|
1840
|
+
#. odoo-python
|
|
1841
|
+
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1842
|
+
msgid "Vat Report"
|
|
1843
|
+
msgstr "Momsrapport"
|
|
1844
|
+
|
|
1845
|
+
#. module: account_financial_report
|
|
1846
|
+
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
|
|
1847
|
+
msgid "Vat Report Report"
|
|
1848
|
+
msgstr "Momsrapport"
|
|
1849
|
+
|
|
1850
|
+
#. module: account_financial_report
|
|
1851
|
+
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
|
|
1852
|
+
msgid "Vat Report XLSX Report"
|
|
1853
|
+
msgstr "Momsrapport XLSX"
|
|
1854
|
+
|
|
1855
|
+
#. module: account_financial_report
|
|
1856
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1857
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1858
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1859
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
1860
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
1861
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1862
|
+
msgid "View"
|
|
1863
|
+
msgstr "Vy"
|
|
1864
|
+
|
|
1865
|
+
#. module: account_financial_report
|
|
1866
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
1867
|
+
msgid ""
|
|
1868
|
+
"When this option is enabled, the trial balance will not display accounts "
|
|
1869
|
+
"that have initial balance = debit = credit = end balance = 0"
|
|
1870
|
+
msgstr ""
|
|
1871
|
+
"När det här alternativetär aktiverat kommer inte provsaldot att visa konton "
|
|
1872
|
+
"som har initialt saldo = debet = kredit = slutsaldo = 0"
|
|
1873
|
+
|
|
1874
|
+
#. module: account_financial_report
|
|
1875
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
1876
|
+
msgid "With Account Name"
|
|
1877
|
+
msgstr "Med kontonamn"
|
|
1878
|
+
|
|
1879
|
+
#. module: account_financial_report
|
|
1880
|
+
#. odoo-python
|
|
1881
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1882
|
+
msgid "Without analytic account"
|
|
1883
|
+
msgstr "Utan objektkonto"
|
|
1884
|
+
|
|
1885
|
+
#. module: account_financial_report
|
|
1886
|
+
#. odoo-python
|
|
1887
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1888
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1889
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1890
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1891
|
+
msgid "Yes"
|
|
1892
|
+
msgstr "Ja"
|
|
1893
|
+
|
|
1894
|
+
#. module: account_financial_report
|
|
1895
|
+
#. odoo-python
|
|
1896
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1897
|
+
msgid "future"
|
|
1898
|
+
msgstr "framtid"
|
|
1899
|
+
|
|
1900
|
+
#. module: account_financial_report
|
|
1901
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1902
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1903
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
1904
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
1905
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1906
|
+
msgid "or"
|
|
1907
|
+
msgstr "eller"
|
|
1908
|
+
|
|
1909
|
+
#. module: account_financial_report
|
|
1910
|
+
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
|
|
1911
|
+
msgid "ournal Ledger"
|
|
1912
|
+
msgstr "ournal Huvudbok"
|
|
1913
|
+
|
|
1914
|
+
#. module: account_financial_report
|
|
1915
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
1916
|
+
msgid "to"
|
|
1917
|
+
msgstr "till"
|
|
1918
|
+
|
|
1919
|
+
#. module: account_financial_report
|
|
1920
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1921
|
+
msgid "width: 16.21%;"
|
|
1922
|
+
msgstr "bredd: 16,21%;"
|
|
1923
|
+
|
|
1924
|
+
#. module: account_financial_report
|
|
1925
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1926
|
+
msgid "width: 23.24%;"
|
|
1927
|
+
msgstr "bredd: 23,24%;"
|
|
1928
|
+
|
|
1929
|
+
#. module: account_financial_report
|
|
1930
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1931
|
+
msgid "width: 23.78%;"
|
|
1932
|
+
msgstr "bredd: 23,78 procent;"
|
|
1933
|
+
|
|
1934
|
+
#. module: account_financial_report
|
|
1935
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1936
|
+
msgid "width: 31.35%;"
|
|
1937
|
+
msgstr "bredd: 31,35%;"
|
|
1938
|
+
|
|
1939
|
+
#. module: account_financial_report
|
|
1940
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1941
|
+
msgid "width: 38.92%;"
|
|
1942
|
+
msgstr "bredd: 38,92%;"
|
|
1943
|
+
|
|
1944
|
+
#. module: account_financial_report
|
|
1945
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1946
|
+
msgid "width: 8.11%;"
|
|
1947
|
+
msgstr "bredd: 8,11%;"
|
|
1948
|
+
|
|
1949
|
+
#~ msgid ""
|
|
1950
|
+
#~ "Age ??? 120\n"
|
|
1951
|
+
#~ " d."
|
|
1952
|
+
#~ msgstr ""
|
|
1953
|
+
#~ "??lder ??? 120\n"
|
|
1954
|
+
#~ " d."
|
|
1955
|
+
|
|
1956
|
+
#, python-format
|
|
1957
|
+
#~ msgid "Age ??? 120 d."
|
|
1958
|
+
#~ msgstr "??lder ??? 120 d."
|
|
1959
|
+
|
|
1960
|
+
#~ msgid ""
|
|
1961
|
+
#~ "Age ??? 30\n"
|
|
1962
|
+
#~ " d."
|
|
1963
|
+
#~ msgstr ""
|
|
1964
|
+
#~ "??lder ??? 30\n"
|
|
1965
|
+
#~ " d."
|
|
1966
|
+
|
|
1967
|
+
#, python-format
|
|
1968
|
+
#~ msgid "Age ??? 30 d."
|
|
1969
|
+
#~ msgstr "??lder ??? 30 d."
|
|
1970
|
+
|
|
1971
|
+
#~ msgid ""
|
|
1972
|
+
#~ "Age ??? 60\n"
|
|
1973
|
+
#~ " d."
|
|
1974
|
+
#~ msgstr ""
|
|
1975
|
+
#~ "??lder ??? 60\n"
|
|
1976
|
+
#~ " d."
|
|
1977
|
+
|
|
1978
|
+
#, python-format
|
|
1979
|
+
#~ msgid "Age ??? 60 d."
|
|
1980
|
+
#~ msgstr "??lder ??? 60 d."
|
|
1981
|
+
|
|
1982
|
+
#~ msgid ""
|
|
1983
|
+
#~ "Age ??? 90\n"
|
|
1984
|
+
#~ " d."
|
|
1985
|
+
#~ msgstr ""
|
|
1986
|
+
#~ "??lder ??? 90\n"
|
|
1987
|
+
#~ " d."
|
|
1988
|
+
|
|
1989
|
+
#, python-format
|
|
1990
|
+
#~ msgid "Age ??? 90 d."
|
|
1991
|
+
#~ msgstr "??lder ??? 90 d."
|
|
1992
|
+
|
|
1993
|
+
#~ msgid "Last Modified on"
|
|
1994
|
+
#~ msgstr "Senast ??ndrad den"
|
|
1995
|
+
|
|
1996
|
+
#~ msgid "Not Only One Unaffected Earnings Account"
|
|
1997
|
+
#~ msgstr "Inte bara ett op??verkat inkomstkonto"
|