rustfava 0.1.0__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.
Files changed (187) hide show
  1. rustfava/__init__.py +30 -0
  2. rustfava/_ctx_globals_class.py +55 -0
  3. rustfava/api_models.py +36 -0
  4. rustfava/application.py +534 -0
  5. rustfava/beans/__init__.py +6 -0
  6. rustfava/beans/abc.py +327 -0
  7. rustfava/beans/account.py +79 -0
  8. rustfava/beans/create.py +377 -0
  9. rustfava/beans/flags.py +20 -0
  10. rustfava/beans/funcs.py +38 -0
  11. rustfava/beans/helpers.py +52 -0
  12. rustfava/beans/ingest.py +75 -0
  13. rustfava/beans/load.py +31 -0
  14. rustfava/beans/prices.py +151 -0
  15. rustfava/beans/protocols.py +82 -0
  16. rustfava/beans/str.py +454 -0
  17. rustfava/beans/types.py +63 -0
  18. rustfava/cli.py +187 -0
  19. rustfava/context.py +13 -0
  20. rustfava/core/__init__.py +729 -0
  21. rustfava/core/accounts.py +161 -0
  22. rustfava/core/attributes.py +145 -0
  23. rustfava/core/budgets.py +207 -0
  24. rustfava/core/charts.py +301 -0
  25. rustfava/core/commodities.py +37 -0
  26. rustfava/core/conversion.py +229 -0
  27. rustfava/core/documents.py +87 -0
  28. rustfava/core/extensions.py +132 -0
  29. rustfava/core/fava_options.py +255 -0
  30. rustfava/core/file.py +542 -0
  31. rustfava/core/filters.py +484 -0
  32. rustfava/core/group_entries.py +97 -0
  33. rustfava/core/ingest.py +509 -0
  34. rustfava/core/inventory.py +167 -0
  35. rustfava/core/misc.py +105 -0
  36. rustfava/core/module_base.py +18 -0
  37. rustfava/core/number.py +106 -0
  38. rustfava/core/query.py +180 -0
  39. rustfava/core/query_shell.py +301 -0
  40. rustfava/core/tree.py +265 -0
  41. rustfava/core/watcher.py +219 -0
  42. rustfava/ext/__init__.py +232 -0
  43. rustfava/ext/auto_commit.py +61 -0
  44. rustfava/ext/portfolio_list/PortfolioList.js +34 -0
  45. rustfava/ext/portfolio_list/__init__.py +29 -0
  46. rustfava/ext/portfolio_list/templates/PortfolioList.html +15 -0
  47. rustfava/ext/rustfava_ext_test/RustfavaExtTest.js +42 -0
  48. rustfava/ext/rustfava_ext_test/__init__.py +207 -0
  49. rustfava/ext/rustfava_ext_test/templates/RustfavaExtTest.html +45 -0
  50. rustfava/ext/rustfava_ext_test/templates/RustfavaExtTestInclude.html +1 -0
  51. rustfava/help/__init__.py +15 -0
  52. rustfava/help/_index.md +29 -0
  53. rustfava/help/beancount_syntax.md +156 -0
  54. rustfava/help/budgets.md +31 -0
  55. rustfava/help/conversion.md +29 -0
  56. rustfava/help/extensions.md +111 -0
  57. rustfava/help/features.md +179 -0
  58. rustfava/help/filters.md +103 -0
  59. rustfava/help/import.md +27 -0
  60. rustfava/help/options.md +289 -0
  61. rustfava/helpers.py +30 -0
  62. rustfava/internal_api.py +221 -0
  63. rustfava/json_api.py +952 -0
  64. rustfava/plugins/__init__.py +3 -0
  65. rustfava/plugins/link_documents.py +107 -0
  66. rustfava/plugins/tag_discovered_documents.py +44 -0
  67. rustfava/py.typed +0 -0
  68. rustfava/rustledger/__init__.py +31 -0
  69. rustfava/rustledger/constants.py +76 -0
  70. rustfava/rustledger/engine.py +485 -0
  71. rustfava/rustledger/loader.py +273 -0
  72. rustfava/rustledger/options.py +202 -0
  73. rustfava/rustledger/query.py +331 -0
  74. rustfava/rustledger/types.py +830 -0
  75. rustfava/serialisation.py +220 -0
  76. rustfava/static/app.css +2988 -0
  77. rustfava/static/app.css.map +7 -0
  78. rustfava/static/app.js +12854 -0
  79. rustfava/static/app.js.map +7 -0
  80. rustfava/static/beancount-JFV44ZVZ.css +5 -0
  81. rustfava/static/beancount-JFV44ZVZ.css.map +7 -0
  82. rustfava/static/beancount-VTTKRGSK.js +4642 -0
  83. rustfava/static/beancount-VTTKRGSK.js.map +7 -0
  84. rustfava/static/bql-MGFRUMBP.js +333 -0
  85. rustfava/static/bql-MGFRUMBP.js.map +7 -0
  86. rustfava/static/chunk-E7ZF4ASL.js +23061 -0
  87. rustfava/static/chunk-E7ZF4ASL.js.map +7 -0
  88. rustfava/static/chunk-V24TLQHT.js +12673 -0
  89. rustfava/static/chunk-V24TLQHT.js.map +7 -0
  90. rustfava/static/favicon.ico +0 -0
  91. rustfava/static/fira-mono-cyrillic-400-normal-BLAGXRCE.woff2 +0 -0
  92. rustfava/static/fira-mono-cyrillic-500-normal-EN7JUAAW.woff2 +0 -0
  93. rustfava/static/fira-mono-cyrillic-ext-400-normal-EX7VARTS.woff2 +0 -0
  94. rustfava/static/fira-mono-cyrillic-ext-500-normal-ZDPTUPRR.woff2 +0 -0
  95. rustfava/static/fira-mono-greek-400-normal-COGHKMOA.woff2 +0 -0
  96. rustfava/static/fira-mono-greek-500-normal-4EN2PKZT.woff2 +0 -0
  97. rustfava/static/fira-mono-greek-ext-400-normal-DYEQIJH7.woff2 +0 -0
  98. rustfava/static/fira-mono-greek-ext-500-normal-SG73CVKQ.woff2 +0 -0
  99. rustfava/static/fira-mono-latin-400-normal-NA3VLV7E.woff2 +0 -0
  100. rustfava/static/fira-mono-latin-500-normal-YC77GFWD.woff2 +0 -0
  101. rustfava/static/fira-mono-latin-ext-400-normal-DIKTZ5PW.woff2 +0 -0
  102. rustfava/static/fira-mono-latin-ext-500-normal-ZWY4UO4V.woff2 +0 -0
  103. rustfava/static/fira-mono-symbols2-400-normal-UITXT77Q.woff2 +0 -0
  104. rustfava/static/fira-mono-symbols2-500-normal-VWPC2EFN.woff2 +0 -0
  105. rustfava/static/fira-sans-cyrillic-400-normal-KLQMBCA6.woff2 +0 -0
  106. rustfava/static/fira-sans-cyrillic-500-normal-NFG7UD6J.woff2 +0 -0
  107. rustfava/static/fira-sans-cyrillic-ext-400-normal-GWO44OPC.woff2 +0 -0
  108. rustfava/static/fira-sans-cyrillic-ext-500-normal-SP47E5SC.woff2 +0 -0
  109. rustfava/static/fira-sans-greek-400-normal-UMQBTLC3.woff2 +0 -0
  110. rustfava/static/fira-sans-greek-500-normal-4ZKHN4FQ.woff2 +0 -0
  111. rustfava/static/fira-sans-greek-ext-400-normal-O2DVJAJZ.woff2 +0 -0
  112. rustfava/static/fira-sans-greek-ext-500-normal-SK6GNWGO.woff2 +0 -0
  113. rustfava/static/fira-sans-latin-400-normal-OYYTPMAV.woff2 +0 -0
  114. rustfava/static/fira-sans-latin-500-normal-SMQPZW5A.woff2 +0 -0
  115. rustfava/static/fira-sans-latin-ext-400-normal-OAUP3WK5.woff2 +0 -0
  116. rustfava/static/fira-sans-latin-ext-500-normal-LY3YDR5Y.woff2 +0 -0
  117. rustfava/static/fira-sans-vietnamese-400-normal-OBMQ72MR.woff2 +0 -0
  118. rustfava/static/fira-sans-vietnamese-500-normal-Y4NZR5EU.woff2 +0 -0
  119. rustfava/static/source-code-pro-cyrillic-400-normal-TO22V6M3.woff2 +0 -0
  120. rustfava/static/source-code-pro-cyrillic-500-normal-OGBWWWYW.woff2 +0 -0
  121. rustfava/static/source-code-pro-cyrillic-ext-400-normal-XH44UCIA.woff2 +0 -0
  122. rustfava/static/source-code-pro-cyrillic-ext-500-normal-3Z6MMVM6.woff2 +0 -0
  123. rustfava/static/source-code-pro-greek-400-normal-OUXXUQWK.woff2 +0 -0
  124. rustfava/static/source-code-pro-greek-500-normal-JA2Z5UXO.woff2 +0 -0
  125. rustfava/static/source-code-pro-greek-ext-400-normal-WCDKMX7U.woff2 +0 -0
  126. rustfava/static/source-code-pro-greek-ext-500-normal-ZHVI4VKW.woff2 +0 -0
  127. rustfava/static/source-code-pro-latin-400-normal-QOGTXED5.woff2 +0 -0
  128. rustfava/static/source-code-pro-latin-500-normal-X57QEOLQ.woff2 +0 -0
  129. rustfava/static/source-code-pro-latin-ext-400-normal-QXC74NBF.woff2 +0 -0
  130. rustfava/static/source-code-pro-latin-ext-500-normal-QGOY7MTT.woff2 +0 -0
  131. rustfava/static/source-code-pro-vietnamese-400-normal-NPDCDTBA.woff2 +0 -0
  132. rustfava/static/source-code-pro-vietnamese-500-normal-M6PJKTR5.woff2 +0 -0
  133. rustfava/static/tree-sitter-beancount-MLXFQBZ5.wasm +0 -0
  134. rustfava/static/web-tree-sitter-RNOQ6E74.wasm +0 -0
  135. rustfava/template_filters.py +64 -0
  136. rustfava/templates/_journal_table.html +156 -0
  137. rustfava/templates/_layout.html +26 -0
  138. rustfava/templates/_query_table.html +88 -0
  139. rustfava/templates/beancount_file +18 -0
  140. rustfava/templates/help.html +23 -0
  141. rustfava/templates/macros/_account_macros.html +5 -0
  142. rustfava/templates/macros/_commodity_macros.html +13 -0
  143. rustfava/translations/bg/LC_MESSAGES/messages.mo +0 -0
  144. rustfava/translations/bg/LC_MESSAGES/messages.po +618 -0
  145. rustfava/translations/ca/LC_MESSAGES/messages.mo +0 -0
  146. rustfava/translations/ca/LC_MESSAGES/messages.po +618 -0
  147. rustfava/translations/de/LC_MESSAGES/messages.mo +0 -0
  148. rustfava/translations/de/LC_MESSAGES/messages.po +618 -0
  149. rustfava/translations/es/LC_MESSAGES/messages.mo +0 -0
  150. rustfava/translations/es/LC_MESSAGES/messages.po +619 -0
  151. rustfava/translations/fa/LC_MESSAGES/messages.mo +0 -0
  152. rustfava/translations/fa/LC_MESSAGES/messages.po +618 -0
  153. rustfava/translations/fr/LC_MESSAGES/messages.mo +0 -0
  154. rustfava/translations/fr/LC_MESSAGES/messages.po +618 -0
  155. rustfava/translations/ja/LC_MESSAGES/messages.mo +0 -0
  156. rustfava/translations/ja/LC_MESSAGES/messages.po +618 -0
  157. rustfava/translations/nl/LC_MESSAGES/messages.mo +0 -0
  158. rustfava/translations/nl/LC_MESSAGES/messages.po +617 -0
  159. rustfava/translations/pt/LC_MESSAGES/messages.mo +0 -0
  160. rustfava/translations/pt/LC_MESSAGES/messages.po +617 -0
  161. rustfava/translations/pt_BR/LC_MESSAGES/messages.mo +0 -0
  162. rustfava/translations/pt_BR/LC_MESSAGES/messages.po +618 -0
  163. rustfava/translations/ru/LC_MESSAGES/messages.mo +0 -0
  164. rustfava/translations/ru/LC_MESSAGES/messages.po +617 -0
  165. rustfava/translations/sk/LC_MESSAGES/messages.mo +0 -0
  166. rustfava/translations/sk/LC_MESSAGES/messages.po +623 -0
  167. rustfava/translations/sv/LC_MESSAGES/messages.mo +0 -0
  168. rustfava/translations/sv/LC_MESSAGES/messages.po +618 -0
  169. rustfava/translations/uk/LC_MESSAGES/messages.mo +0 -0
  170. rustfava/translations/uk/LC_MESSAGES/messages.po +618 -0
  171. rustfava/translations/zh/LC_MESSAGES/messages.mo +0 -0
  172. rustfava/translations/zh/LC_MESSAGES/messages.po +618 -0
  173. rustfava/translations/zh_Hant_TW/LC_MESSAGES/messages.mo +0 -0
  174. rustfava/translations/zh_Hant_TW/LC_MESSAGES/messages.po +618 -0
  175. rustfava/util/__init__.py +157 -0
  176. rustfava/util/date.py +576 -0
  177. rustfava/util/excel.py +118 -0
  178. rustfava/util/ranking.py +79 -0
  179. rustfava/util/sets.py +18 -0
  180. rustfava/util/unreachable.py +20 -0
  181. rustfava-0.1.0.dist-info/METADATA +102 -0
  182. rustfava-0.1.0.dist-info/RECORD +187 -0
  183. rustfava-0.1.0.dist-info/WHEEL +5 -0
  184. rustfava-0.1.0.dist-info/entry_points.txt +2 -0
  185. rustfava-0.1.0.dist-info/licenses/AUTHORS +11 -0
  186. rustfava-0.1.0.dist-info/licenses/LICENSE +21 -0
  187. rustfava-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,618 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "MIME-Version: 1.0\n"
4
+ "Content-Type: text/plain; charset=UTF-8\n"
5
+ "Content-Transfer-Encoding: 8bit\n"
6
+ "X-Generator: POEditor.com\n"
7
+ "Project-Id-Version: Fava\n"
8
+ "Language: de\n"
9
+
10
+ #: frontend/src/reports/errors/index.ts:6
11
+ #: frontend/src/sidebar/AsideContents.svelte:68
12
+ msgid "Errors"
13
+ msgstr "Fehler"
14
+
15
+ #: frontend/src/sidebar/FilterForm.svelte:82
16
+ msgid "Time"
17
+ msgstr "Zeitraum"
18
+
19
+ #: frontend/src/entry-forms/AccountInput.svelte:47
20
+ #: frontend/src/modals/DocumentUpload.svelte:66
21
+ #: frontend/src/reports/holdings/Holdings.svelte:25
22
+ #: frontend/src/reports/holdings/Holdings.svelte:29
23
+ #: frontend/src/sidebar/FilterForm.svelte:93
24
+ #: src/fava/templates/statistics.html:26
25
+ msgid "Account"
26
+ msgstr "Konto"
27
+
28
+ #: frontend/src/entry-forms/Transaction.svelte:110
29
+ #: frontend/src/entry-forms/Transaction.svelte:113
30
+ #: src/fava/templates/_journal_table.html:50
31
+ msgid "Payee"
32
+ msgstr "Empfänger"
33
+
34
+ #: frontend/src/reports/tree_reports/index.ts:20
35
+ msgid "Income Statement"
36
+ msgstr "Gewinn- und Verlustrechnung"
37
+
38
+ #: frontend/src/reports/tree_reports/index.ts:27
39
+ #: frontend/src/sidebar/AsideContents.svelte:28
40
+ msgid "Balance Sheet"
41
+ msgstr "Bilanz"
42
+
43
+ #: frontend/src/reports/tree_reports/index.ts:34
44
+ #: frontend/src/sidebar/AsideContents.svelte:29
45
+ msgid "Trial Balance"
46
+ msgstr "Zwischenbilanz"
47
+
48
+ #: frontend/src/sidebar/AsideContents.svelte:30
49
+ #: src/fava/templates/journal.html:5
50
+ msgid "Journal"
51
+ msgstr "Journal"
52
+
53
+ #: frontend/src/reports/holdings/Holdings.svelte:56
54
+ #: frontend/src/reports/query/index.ts:5
55
+ #: frontend/src/sidebar/AsideContents.svelte:31
56
+ msgid "Query"
57
+ msgstr "Abfrage"
58
+
59
+ #: frontend/src/reports/holdings/Holdings.svelte:18
60
+ #: frontend/src/reports/holdings/Holdings.svelte:20
61
+ #: frontend/src/reports/holdings/index.ts:92
62
+ #: frontend/src/sidebar/AsideContents.svelte:45
63
+ msgid "Holdings"
64
+ msgstr "Bestände"
65
+
66
+ #: frontend/src/reports/commodities/index.ts:33
67
+ #: frontend/src/sidebar/AsideContents.svelte:46
68
+ msgid "Commodities"
69
+ msgstr "Währungen"
70
+
71
+ #: frontend/src/reports/events/Events.svelte:16
72
+ #: frontend/src/reports/events/index.ts:17
73
+ #: frontend/src/sidebar/AsideContents.svelte:50
74
+ msgid "Events"
75
+ msgstr "Ereignisse"
76
+
77
+ #: frontend/src/reports/editor/index.ts:33
78
+ #: frontend/src/sidebar/AsideContents.svelte:57
79
+ msgid "Editor"
80
+ msgstr "Editor"
81
+
82
+ #: frontend/src/reports/options/index.ts:15
83
+ #: frontend/src/sidebar/AsideContents.svelte:75
84
+ msgid "Options"
85
+ msgstr "Optionen"
86
+
87
+ #: frontend/src/sidebar/AsideContents.svelte:54
88
+ #: src/fava/templates/statistics.html:6
89
+ msgid "Statistics"
90
+ msgstr "Statistiken"
91
+
92
+ #: frontend/src/sidebar/AsideContents.svelte:76 src/fava/templates/help.html:3
93
+ msgid "Help"
94
+ msgstr "Hilfe"
95
+
96
+ #: frontend/src/reports/commodities/CommodityTable.svelte:18
97
+ #: frontend/src/reports/documents/Table.svelte:26
98
+ #: frontend/src/reports/events/EventTable.svelte:14
99
+ #: src/fava/templates/_journal_table.html:48
100
+ msgid "Date"
101
+ msgstr "Datum"
102
+
103
+ #: src/fava/templates/_journal_table.html:49
104
+ msgid "F"
105
+ msgstr "M"
106
+
107
+ #: frontend/src/reports/commodities/CommodityTable.svelte:19
108
+ #: src/fava/templates/_journal_table.html:53
109
+ msgid "Price"
110
+ msgstr "Preis"
111
+
112
+ #: src/fava/templates/_journal_table.html:52
113
+ msgid "Cost"
114
+ msgstr "Kosten"
115
+
116
+ #: src/fava/templates/_journal_table.html:52
117
+ msgid "Change"
118
+ msgstr "Änderung"
119
+
120
+ #: frontend/src/entry-forms/Balance.svelte:29
121
+ #: frontend/src/modals/AddEntry.svelte:15
122
+ #: src/fava/templates/_journal_table.html:53
123
+ #: src/fava/templates/statistics.html:30
124
+ msgid "Balance"
125
+ msgstr "Saldo"
126
+
127
+ #: frontend/src/editor/SaveButton.svelte:14
128
+ #: frontend/src/modals/AddEntry.svelte:66
129
+ #: frontend/src/reports/import/Extract.svelte:116
130
+ msgid "Save"
131
+ msgstr "Speichern"
132
+
133
+ #: frontend/src/editor/SaveButton.svelte:14
134
+ msgid "Saving..."
135
+ msgstr "Wird gespeichert …"
136
+
137
+ #: frontend/src/main.ts:82
138
+ msgid "File change detected. Click to reload."
139
+ msgstr "Änderung in Quelldatei entdeckt. Klicken, um neu zu laden."
140
+
141
+ #: frontend/src/tree-table/AccountCellHeader.svelte:34
142
+ msgid "Expand all accounts"
143
+ msgstr "Alle Konten erweitern"
144
+
145
+ #: frontend/src/tree-table/AccountCellHeader.svelte:39
146
+ msgid "Expand all"
147
+ msgstr "Alle erweitern"
148
+
149
+ #: frontend/src/reports/accounts/AccountReport.svelte:46
150
+ msgid "Account Journal"
151
+ msgstr "Konto-Journal"
152
+
153
+ #: frontend/src/reports/accounts/AccountReport.svelte:52
154
+ #: frontend/src/reports/accounts/AccountReport.svelte:55
155
+ #: src/fava/json_api.py:722
156
+ msgid "Changes"
157
+ msgstr "Änderungen"
158
+
159
+ #: frontend/src/reports/accounts/AccountReport.svelte:61
160
+ #: frontend/src/reports/accounts/AccountReport.svelte:64
161
+ msgid "Balances"
162
+ msgstr "Salden"
163
+
164
+ #: frontend/src/reports/errors/Errors.svelte:48
165
+ msgid "Show source %(file)s:%(lineno)s"
166
+ msgstr "Quelldatei anzeigen: %(file)s:%(lineno)s"
167
+
168
+ #: frontend/src/reports/editor/EditorMenu.svelte:43
169
+ #: frontend/src/reports/errors/Errors.svelte:22
170
+ msgid "File"
171
+ msgstr "Datei"
172
+
173
+ #: frontend/src/reports/errors/Errors.svelte:23
174
+ #: frontend/src/reports/import/Extract.svelte:122
175
+ msgid "Line"
176
+ msgstr "Zeile"
177
+
178
+ #: frontend/src/reports/errors/Errors.svelte:24
179
+ #: frontend/src/reports/route.ts:93
180
+ msgid "Error"
181
+ msgstr "Fehler"
182
+
183
+ #: frontend/src/reports/errors/Errors.svelte:75
184
+ msgid "No errors."
185
+ msgstr "Keine Fehler."
186
+
187
+ #: frontend/src/reports/events/Events.svelte:31
188
+ msgid "Event: %(type)s"
189
+ msgstr "Ereignis: %(type)s"
190
+
191
+ #: frontend/src/reports/events/EventTable.svelte:15
192
+ msgid "Description"
193
+ msgstr "Beschreibung"
194
+
195
+ #: src/fava/templates/help.html:8
196
+ msgid "Help pages"
197
+ msgstr "Hilfeseiten"
198
+
199
+ #: frontend/src/entry-forms/Balance.svelte:56
200
+ #: frontend/src/reports/holdings/Holdings.svelte:35
201
+ #: frontend/src/reports/holdings/Holdings.svelte:39
202
+ msgid "Currency"
203
+ msgstr "Währung"
204
+
205
+ #: frontend/src/reports/holdings/Holdings.svelte:45
206
+ #: frontend/src/reports/holdings/Holdings.svelte:49
207
+ msgid "Cost currency"
208
+ msgstr "Kostenwährung"
209
+
210
+ #: frontend/src/reports/holdings/Holdings.svelte:25
211
+ #: frontend/src/reports/holdings/Holdings.svelte:28
212
+ #: frontend/src/reports/holdings/Holdings.svelte:35
213
+ #: frontend/src/reports/holdings/Holdings.svelte:38
214
+ #: frontend/src/reports/holdings/Holdings.svelte:45
215
+ #: frontend/src/reports/holdings/Holdings.svelte:48
216
+ msgid "Holdings by"
217
+ msgstr "Bestände nach"
218
+
219
+ #: frontend/src/stores/accounts.ts:109 src/fava/json_api.py:604
220
+ #: src/fava/json_api.py:624
221
+ msgid "Net Profit"
222
+ msgstr "Reingewinn"
223
+
224
+ #: src/fava/json_api.py:610
225
+ msgid "Income"
226
+ msgstr "Einkommen"
227
+
228
+ #: src/fava/json_api.py:616
229
+ msgid "Expenses"
230
+ msgstr "Ausgaben"
231
+
232
+ #: frontend/src/entry-forms/EntryMetadata.svelte:29
233
+ #: frontend/src/reports/options/OptionsTable.svelte:14
234
+ msgid "Key"
235
+ msgstr "Schlüssel"
236
+
237
+ #: frontend/src/entry-forms/EntryMetadata.svelte:39
238
+ #: frontend/src/reports/options/OptionsTable.svelte:15
239
+ msgid "Value"
240
+ msgstr "Wert"
241
+
242
+ #: frontend/src/reports/query/QueryLinks.svelte:21
243
+ msgid "Download as"
244
+ msgstr "Herunterladen als"
245
+
246
+ #: src/fava/templates/statistics.html:12
247
+ msgid "Postings per Account"
248
+ msgstr "Einträge pro Konto"
249
+
250
+ #: src/fava/templates/statistics.html:80
251
+ msgid "Total"
252
+ msgstr "Gesamt"
253
+
254
+ #: src/fava/templates/statistics.html:20
255
+ msgid "Update Activity"
256
+ msgstr "Aktualisierungs-Aktivität"
257
+
258
+ #: src/fava/templates/statistics.html:21
259
+ msgid "Click to copy balance directives for accounts (except green ones) to the clipboard."
260
+ msgstr "Klicken, um Saldo-Einträge für Konten (außer den grünen) in die Zwischenablage zu kopieren."
261
+
262
+ #: src/fava/templates/statistics.html:22
263
+ msgid "Copy balance directives"
264
+ msgstr "Saldo-Einträge kopieren"
265
+
266
+ #: src/fava/templates/statistics.html:29
267
+ msgid "Last Entry"
268
+ msgstr "Letzter Eintrag"
269
+
270
+ #: src/fava/templates/statistics.html:62
271
+ msgid "Entries per Type"
272
+ msgstr "Einträge pro Art"
273
+
274
+ #: src/fava/templates/statistics.html:66
275
+ msgid "Type"
276
+ msgstr "Art"
277
+
278
+ #: src/fava/templates/statistics.html:67
279
+ msgid "# Entries"
280
+ msgstr "Anzahl Einträge"
281
+
282
+ #: frontend/src/entry-forms/Transaction.svelte:125
283
+ #: frontend/src/entry-forms/Transaction.svelte:128
284
+ #: src/fava/templates/_journal_table.html:50
285
+ msgid "Narration"
286
+ msgstr "Beschreibung"
287
+
288
+ #: frontend/src/entry-forms/Balance.svelte:44
289
+ msgid "Number"
290
+ msgstr "Zahl"
291
+
292
+ #: frontend/src/reports/import/Extract.svelte:58
293
+ #: frontend/src/reports/import/index.ts:59
294
+ msgid "Import"
295
+ msgstr "Importieren"
296
+
297
+ #: frontend/src/journal/JournalFilters.svelte:42
298
+ msgid "Budget entries"
299
+ msgstr "Budget-Einträge"
300
+
301
+ #: frontend/src/reports/import/Extract.svelte:121
302
+ msgid "Source"
303
+ msgstr "Quellcode"
304
+
305
+ #: frontend/src/reports/import/FileList.svelte:94
306
+ msgid "Extract"
307
+ msgstr "Extrahieren"
308
+
309
+ #: frontend/src/reports/query/QueryEditor.svelte:19
310
+ msgid "...enter a BQL query. 'help' to list available commands."
311
+ msgstr "… eine BQL-Abfrage eingeben. »help«, um verfügbare Befehle aufzulisten."
312
+
313
+ #: frontend/src/journal/JournalFilters.svelte:43
314
+ msgid "Metadata"
315
+ msgstr "Metadaten"
316
+
317
+ #: frontend/src/entry-forms/AddMetadataButton.svelte:19
318
+ #: frontend/src/entry-forms/EntryMetadata.svelte:52
319
+ msgid "Add metadata"
320
+ msgstr "Metadaten hinzufügen"
321
+
322
+ #: frontend/src/entry-forms/Note.svelte:28
323
+ #: frontend/src/modals/AddEntry.svelte:16
324
+ msgid "Note"
325
+ msgstr "Notiz"
326
+
327
+ #: frontend/src/modals/EntryContext.svelte:17
328
+ msgid "Location"
329
+ msgstr "Speicherort"
330
+
331
+ #: frontend/src/modals/Context.svelte:39
332
+ #: frontend/src/modals/EntryContext.svelte:28
333
+ msgid "Context"
334
+ msgstr "Kontext"
335
+
336
+ #: frontend/src/modals/EntryContext.svelte:34
337
+ msgid "Balances before entry"
338
+ msgstr "Salden vor dem Eintrag"
339
+
340
+ #: frontend/src/modals/EntryContext.svelte:54
341
+ msgid "Balances after entry"
342
+ msgstr "Salden nach dem Eintrag"
343
+
344
+ #: frontend/src/journal/JournalFilters.svelte:25
345
+ msgid "Cleared transactions"
346
+ msgstr "Erledigte Transaktionen"
347
+
348
+ #: frontend/src/journal/JournalFilters.svelte:26
349
+ msgid "Pending transactions"
350
+ msgstr "Unerledigte Transaktionen"
351
+
352
+ #: frontend/src/journal/JournalFilters.svelte:27
353
+ msgid "Other transactions"
354
+ msgstr "Andere Transaktionen"
355
+
356
+ #: frontend/src/journal/JournalFilters.svelte:34
357
+ msgid "Documents with a #discovered tag"
358
+ msgstr "Dokumente mit der Markierung #discovered"
359
+
360
+ #: frontend/src/entry-forms/Transaction.svelte:155
361
+ #: frontend/src/journal/JournalFilters.svelte:44
362
+ msgid "Postings"
363
+ msgstr "Einträge"
364
+
365
+ #: frontend/src/modals/DocumentUpload.svelte:48
366
+ msgid "Upload file(s)"
367
+ msgstr "Datei(en) hochladen"
368
+
369
+ #: frontend/src/modals/DocumentUpload.svelte:70
370
+ #: frontend/src/reports/import/ImportFileUpload.svelte:35
371
+ msgid "Upload"
372
+ msgstr "Hochladen"
373
+
374
+ #: frontend/src/reports/editor/EditorMenu.svelte:57
375
+ msgid "Align Amounts"
376
+ msgstr "Beträge bündig ausrichten"
377
+
378
+ #: frontend/src/reports/editor/EditorMenu.svelte:63
379
+ msgid "Toggle Comment (selection)"
380
+ msgstr "Kommentar umschalten (für die Auswahl)"
381
+
382
+ #: frontend/src/reports/editor/EditorMenu.svelte:69
383
+ msgid "Open all folds"
384
+ msgstr "Alle eingeklappten Bereiche öffnen"
385
+
386
+ #: frontend/src/reports/editor/EditorMenu.svelte:75
387
+ msgid "Close all folds"
388
+ msgstr "Alle ausgeklappten Bereiche schließen"
389
+
390
+ #: frontend/src/reports/options/Options.svelte:20
391
+ msgid "Fava options"
392
+ msgstr "Optionen für Fava"
393
+
394
+ #: frontend/src/reports/options/Options.svelte:21
395
+ msgid "help"
396
+ msgstr "Hilfe"
397
+
398
+ #: frontend/src/reports/options/Options.svelte:25
399
+ msgid "Beancount options"
400
+ msgstr "Optionen für Beancount"
401
+
402
+ #: frontend/src/reports/query/QueryEditor.svelte:38
403
+ msgid "Submit"
404
+ msgstr "Abschicken"
405
+
406
+ #: frontend/src/tree-table/AccountCellHeader.svelte:23
407
+ msgid "Hold Shift while clicking to expand all children.\n"
408
+ "Hold Ctrl or Cmd while clicking to expand one level."
409
+ msgstr "Halten Sie beim Klicken die Umschalt-Taste gedrückt, um alle Unterkonten aufzuklappen.\n"
410
+ "Halten Sie beim Klicken die Strg- oder Cmd-Taste gedrückt, um eine Ebene aufzuklappen."
411
+
412
+ #: frontend/src/modals/Export.svelte:13
413
+ msgid "Export"
414
+ msgstr "Exportieren"
415
+
416
+ #: frontend/src/sidebar/FilterForm.svelte:104
417
+ msgid "Filter by tag, payee, ..."
418
+ msgstr "Filtern nach Markierung, Empfänger, …"
419
+
420
+ #: frontend/src/modals/Export.svelte:15
421
+ msgid "Download currently filtered entries as a Beancount file"
422
+ msgstr "Die aktuell gefilterten Einträge als Beancount-Datei herunterladen"
423
+
424
+ #: frontend/src/lib/interval.ts:22 src/fava/util/date.py:123
425
+ msgid "Yearly"
426
+ msgstr "Jährlich"
427
+
428
+ #: frontend/src/lib/interval.ts:23 src/fava/util/date.py:143
429
+ msgid "Quarterly"
430
+ msgstr "Quartalsweise"
431
+
432
+ #: frontend/src/lib/interval.ts:24 src/fava/util/date.py:169
433
+ msgid "Monthly"
434
+ msgstr "Monatlich"
435
+
436
+ #: frontend/src/lib/interval.ts:25 src/fava/util/date.py:191
437
+ msgid "Weekly"
438
+ msgstr "Wöchentlich"
439
+
440
+ #: frontend/src/lib/interval.ts:26 src/fava/util/date.py:215
441
+ msgid "Daily"
442
+ msgstr "Täglich"
443
+
444
+ #: frontend/src/reports/editor/EditorMenu.svelte:55
445
+ msgid "Edit"
446
+ msgstr "Bearbeiten"
447
+
448
+ #: frontend/src/entry-forms/Posting.svelte:101
449
+ msgid "Amount"
450
+ msgstr "Betrag"
451
+
452
+ #: frontend/src/journal/JournalFilters.svelte:38
453
+ msgid "Documents with a #linked tag"
454
+ msgstr "Dokumente mit der Markierung #linked"
455
+
456
+ #: frontend/src/charts/ConversionAndInterval.svelte:12
457
+ msgid "At Cost"
458
+ msgstr "Einkaufspreis"
459
+
460
+ #: frontend/src/charts/ConversionAndInterval.svelte:14
461
+ msgid "At Market Value"
462
+ msgstr "Marktwert"
463
+
464
+ #: frontend/src/charts/ConversionAndInterval.svelte:16
465
+ #: src/fava/templates/_journal_table.html:51
466
+ msgid "Units"
467
+ msgstr "Einheiten"
468
+
469
+ #: frontend/src/stores/chart.ts:28
470
+ msgid "Treemap"
471
+ msgstr "Kacheldiagramm"
472
+
473
+ #: frontend/src/stores/chart.ts:29
474
+ msgid "Sunburst"
475
+ msgstr "Sunburst"
476
+
477
+ #: frontend/src/entry-forms/AccountInput.svelte:32
478
+ msgid "Should be one of the declared accounts"
479
+ msgstr "Muss eines der deklarierten Konten sein"
480
+
481
+ #: frontend/src/charts/ChartSwitcher.svelte:25
482
+ #: frontend/src/reports/import/Extract.svelte:101
483
+ msgid "Previous"
484
+ msgstr "Zurück"
485
+
486
+ #: frontend/src/charts/ChartSwitcher.svelte:32
487
+ #: frontend/src/reports/import/Extract.svelte:106
488
+ msgid "Next"
489
+ msgstr "Weiter"
490
+
491
+ #: frontend/src/modals/AddEntry.svelte:14
492
+ msgid "Transaction"
493
+ msgstr "Transaktion"
494
+
495
+ #: frontend/src/modals/AddEntry.svelte:43
496
+ msgid "Add"
497
+ msgstr "Hinzufügen"
498
+
499
+ #: frontend/src/reports/documents/Documents.svelte:75
500
+ msgid "Move or rename document"
501
+ msgstr "Dokument verschieben oder umbenennen"
502
+
503
+ #: frontend/src/reports/documents/Table.svelte:27
504
+ msgid "Name"
505
+ msgstr "Name"
506
+
507
+ #: frontend/src/reports/documents/index.ts:19
508
+ #: frontend/src/sidebar/AsideContents.svelte:47
509
+ msgid "Documents"
510
+ msgstr "Dokumente"
511
+
512
+ #: frontend/src/editor/DeleteButton.svelte:11
513
+ #: frontend/src/editor/DeleteButton.svelte:14
514
+ #: frontend/src/reports/import/FileList.svelte:47
515
+ msgid "Delete"
516
+ msgstr "Entfernen"
517
+
518
+ #: frontend/src/stores/chart.ts:43
519
+ msgid "Line chart"
520
+ msgstr "Liniendiagramm"
521
+
522
+ #: frontend/src/stores/chart.ts:44
523
+ msgid "Area chart"
524
+ msgstr "Flächendiagramm"
525
+
526
+ #: frontend/src/reports/import/FileList.svelte:94
527
+ msgid "Continue"
528
+ msgstr "Fortsetzen"
529
+
530
+ #: frontend/src/reports/import/FileList.svelte:103
531
+ msgid "Clear"
532
+ msgstr "Leeren"
533
+
534
+ #: frontend/src/sidebar/AccountSelector.svelte:22
535
+ msgid "Go to account"
536
+ msgstr "Zum Konto"
537
+
538
+ #: frontend/src/reports/import/Import.svelte:69
539
+ msgid "Delete this file?"
540
+ msgstr "Diese Datei entfernen?"
541
+
542
+ #: frontend/src/reports/import/Import.svelte:134
543
+ msgid "No files were found for import."
544
+ msgstr "Keine Dateien zum Importieren gefunden."
545
+
546
+ #: frontend/src/journal/JournalFilters.svelte:8
547
+ msgid "Toggle %(type)s entries"
548
+ msgstr "%(type)s Einträge umschalten"
549
+
550
+ #: frontend/src/charts/ConversionAndInterval.svelte:18
551
+ msgid "Converted to %(currency)s"
552
+ msgstr "Umgerechnet in %(currency)s"
553
+
554
+ #: frontend/src/stores/chart.ts:57
555
+ msgid "Stacked Bars"
556
+ msgstr "Gestapeltes Säulendiagramm"
557
+
558
+ #: frontend/src/stores/chart.ts:58
559
+ msgid "Single Bars"
560
+ msgstr "Einfaches Säulendiagramm"
561
+
562
+ #: frontend/src/charts/HierarchyContainer.svelte:33
563
+ msgid "Chart is empty."
564
+ msgstr "Leeres Diagramm"
565
+
566
+ #: frontend/src/journal/JournalFilters.svelte:43
567
+ msgid "Toggle metadata"
568
+ msgstr "Metadaten umschalten"
569
+
570
+ #: frontend/src/journal/JournalFilters.svelte:44
571
+ msgid "Toggle postings"
572
+ msgstr "Einträge umschalten"
573
+
574
+ #: src/fava/internal_api.py:223
575
+ msgid "Net Worth"
576
+ msgstr "Reinvermögen"
577
+
578
+ #: src/fava/internal_api.py:172
579
+ msgid "Account Balance"
580
+ msgstr "Saldo"
581
+
582
+ #: frontend/src/editor/SliceEditor.svelte:96
583
+ msgid "reload"
584
+ msgstr "neu laden"
585
+
586
+ #: frontend/src/modals/AddEntry.svelte:64
587
+ msgid "continue"
588
+ msgstr "weiter"
589
+
590
+ #: frontend/src/editor/DeleteButton.svelte:11
591
+ msgid "Deleting..."
592
+ msgstr "Wird gelöscht..."
593
+
594
+ #: frontend/src/sidebar/AsideContents.svelte:61
595
+ msgid "Add Journal Entry"
596
+ msgstr "Journal-Eintrag hinzufügen"
597
+
598
+ #: frontend/src/reports/documents/Documents.svelte:80
599
+ #: frontend/src/reports/import/FileList.svelte:83
600
+ msgid "Move"
601
+ msgstr "Verschieben"
602
+
603
+ #: frontend/src/reports/import/Extract.svelte:76
604
+ msgid "ignore duplicate"
605
+ msgstr "Duplikat ignorieren"
606
+
607
+ #: frontend/src/reports/import/ImportFileUpload.svelte:33
608
+ msgid "Upload files for import"
609
+ msgstr "Dateien zum Importieren hochladen"
610
+
611
+ #: frontend/src/reports/options/Options.svelte:13
612
+ msgid "Color scheme"
613
+ msgstr ""
614
+
615
+ #: frontend/src/stores/chart.ts:30
616
+ msgid "Icicle"
617
+ msgstr ""
618
+