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,623 @@
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: sk\n"
9
+
10
+ #: frontend/src/reports/errors/index.ts:6
11
+ #: frontend/src/sidebar/AsideContents.svelte:68
12
+ msgid "Errors"
13
+ msgstr "Chyby"
14
+
15
+ #: frontend/src/sidebar/FilterForm.svelte:82
16
+ msgid "Time"
17
+ msgstr "Čas"
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 "Účet"
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 "Príjemca"
33
+
34
+ #: frontend/src/reports/tree_reports/index.ts:20
35
+ msgid "Income Statement"
36
+ msgstr "Výkaz ziskov a strát"
37
+
38
+ #: frontend/src/reports/tree_reports/index.ts:27
39
+ #: frontend/src/sidebar/AsideContents.svelte:28
40
+ msgid "Balance Sheet"
41
+ msgstr "Súvaha"
42
+
43
+ #: frontend/src/reports/tree_reports/index.ts:34
44
+ #: frontend/src/sidebar/AsideContents.svelte:29
45
+ #, fuzzy
46
+ msgid "Trial Balance"
47
+ msgstr "Hrubá súvaha"
48
+
49
+ #: frontend/src/sidebar/AsideContents.svelte:30
50
+ #: src/fava/templates/journal.html:5
51
+ msgid "Journal"
52
+ msgstr "Účtovná kniha"
53
+
54
+ #: frontend/src/reports/holdings/Holdings.svelte:56
55
+ #: frontend/src/reports/query/index.ts:5
56
+ #: frontend/src/sidebar/AsideContents.svelte:31
57
+ #, fuzzy
58
+ msgid "Query"
59
+ msgstr "Dotaz"
60
+
61
+ #: frontend/src/reports/holdings/Holdings.svelte:18
62
+ #: frontend/src/reports/holdings/Holdings.svelte:20
63
+ #: frontend/src/reports/holdings/index.ts:92
64
+ #: frontend/src/sidebar/AsideContents.svelte:45
65
+ #, fuzzy
66
+ msgid "Holdings"
67
+ msgstr "Vlastníctvo"
68
+
69
+ #: frontend/src/reports/commodities/index.ts:33
70
+ #: frontend/src/sidebar/AsideContents.svelte:46
71
+ msgid "Commodities"
72
+ msgstr "Komodity"
73
+
74
+ #: frontend/src/reports/events/Events.svelte:16
75
+ #: frontend/src/reports/events/index.ts:17
76
+ #: frontend/src/sidebar/AsideContents.svelte:50
77
+ msgid "Events"
78
+ msgstr "Udalosti"
79
+
80
+ #: frontend/src/reports/editor/index.ts:33
81
+ #: frontend/src/sidebar/AsideContents.svelte:57
82
+ msgid "Editor"
83
+ msgstr "Editor"
84
+
85
+ #: frontend/src/reports/options/index.ts:15
86
+ #: frontend/src/sidebar/AsideContents.svelte:75
87
+ msgid "Options"
88
+ msgstr "Možnosti"
89
+
90
+ #: frontend/src/sidebar/AsideContents.svelte:54
91
+ #: src/fava/templates/statistics.html:6
92
+ msgid "Statistics"
93
+ msgstr "Štatistiky"
94
+
95
+ #: frontend/src/sidebar/AsideContents.svelte:76 src/fava/templates/help.html:3
96
+ msgid "Help"
97
+ msgstr "Pomoc"
98
+
99
+ #: frontend/src/reports/commodities/CommodityTable.svelte:18
100
+ #: frontend/src/reports/documents/Table.svelte:26
101
+ #: frontend/src/reports/events/EventTable.svelte:14
102
+ #: src/fava/templates/_journal_table.html:48
103
+ msgid "Date"
104
+ msgstr "Dátum"
105
+
106
+ #: src/fava/templates/_journal_table.html:49
107
+ #, fuzzy
108
+ msgid "F"
109
+ msgstr "V"
110
+
111
+ #: frontend/src/reports/commodities/CommodityTable.svelte:19
112
+ #: src/fava/templates/_journal_table.html:53
113
+ msgid "Price"
114
+ msgstr "Cena"
115
+
116
+ #: src/fava/templates/_journal_table.html:52
117
+ msgid "Cost"
118
+ msgstr "Výdavok"
119
+
120
+ #: src/fava/templates/_journal_table.html:52
121
+ msgid "Change"
122
+ msgstr "Zmena"
123
+
124
+ #: frontend/src/entry-forms/Balance.svelte:29
125
+ #: frontend/src/modals/AddEntry.svelte:15
126
+ #: src/fava/templates/_journal_table.html:53
127
+ #: src/fava/templates/statistics.html:30
128
+ msgid "Balance"
129
+ msgstr "Zostatok"
130
+
131
+ #: frontend/src/editor/SaveButton.svelte:14
132
+ #: frontend/src/modals/AddEntry.svelte:66
133
+ #: frontend/src/reports/import/Extract.svelte:116
134
+ msgid "Save"
135
+ msgstr "Uložiť"
136
+
137
+ #: frontend/src/editor/SaveButton.svelte:14
138
+ msgid "Saving..."
139
+ msgstr "Ukladá sa..."
140
+
141
+ #: frontend/src/main.ts:82
142
+ msgid "File change detected. Click to reload."
143
+ msgstr "Súbor bol zmenený. Kliknutie obnoví stránku."
144
+
145
+ #: frontend/src/tree-table/AccountCellHeader.svelte:34
146
+ msgid "Expand all accounts"
147
+ msgstr "Rozšíriť všetky účty"
148
+
149
+ #: frontend/src/tree-table/AccountCellHeader.svelte:39
150
+ msgid "Expand all"
151
+ msgstr "Rozšíriť všetko"
152
+
153
+ #: frontend/src/reports/accounts/AccountReport.svelte:46
154
+ #, fuzzy
155
+ msgid "Account Journal"
156
+ msgstr "Register účtu"
157
+
158
+ #: frontend/src/reports/accounts/AccountReport.svelte:52
159
+ #: frontend/src/reports/accounts/AccountReport.svelte:55
160
+ #: src/fava/json_api.py:722
161
+ msgid "Changes"
162
+ msgstr "Zmeny"
163
+
164
+ #: frontend/src/reports/accounts/AccountReport.svelte:61
165
+ #: frontend/src/reports/accounts/AccountReport.svelte:64
166
+ msgid "Balances"
167
+ msgstr "Zostatky"
168
+
169
+ #: frontend/src/reports/errors/Errors.svelte:48
170
+ msgid "Show source %(file)s:%(lineno)s"
171
+ msgstr "Ukázať zdroj %(file)s:%(lineno)s"
172
+
173
+ #: frontend/src/reports/editor/EditorMenu.svelte:43
174
+ #: frontend/src/reports/errors/Errors.svelte:22
175
+ msgid "File"
176
+ msgstr "Súbor"
177
+
178
+ #: frontend/src/reports/errors/Errors.svelte:23
179
+ #: frontend/src/reports/import/Extract.svelte:122
180
+ msgid "Line"
181
+ msgstr "Riadok"
182
+
183
+ #: frontend/src/reports/errors/Errors.svelte:24
184
+ #: frontend/src/reports/route.ts:93
185
+ msgid "Error"
186
+ msgstr "Chyba"
187
+
188
+ #: frontend/src/reports/errors/Errors.svelte:75
189
+ msgid "No errors."
190
+ msgstr "Žiadne chyby."
191
+
192
+ #: frontend/src/reports/events/Events.svelte:31
193
+ msgid "Event: %(type)s"
194
+ msgstr "Udalosť: %(type)s"
195
+
196
+ #: frontend/src/reports/events/EventTable.svelte:15
197
+ msgid "Description"
198
+ msgstr "Popis"
199
+
200
+ #: src/fava/templates/help.html:8
201
+ #, fuzzy
202
+ msgid "Help pages"
203
+ msgstr "Pomocné stránky"
204
+
205
+ #: frontend/src/entry-forms/Balance.svelte:56
206
+ #: frontend/src/reports/holdings/Holdings.svelte:35
207
+ #: frontend/src/reports/holdings/Holdings.svelte:39
208
+ msgid "Currency"
209
+ msgstr "Mena"
210
+
211
+ #: frontend/src/reports/holdings/Holdings.svelte:45
212
+ #: frontend/src/reports/holdings/Holdings.svelte:49
213
+ msgid "Cost currency"
214
+ msgstr "Mena výdavku"
215
+
216
+ #: frontend/src/reports/holdings/Holdings.svelte:25
217
+ #: frontend/src/reports/holdings/Holdings.svelte:28
218
+ #: frontend/src/reports/holdings/Holdings.svelte:35
219
+ #: frontend/src/reports/holdings/Holdings.svelte:38
220
+ #: frontend/src/reports/holdings/Holdings.svelte:45
221
+ #: frontend/src/reports/holdings/Holdings.svelte:48
222
+ msgid "Holdings by"
223
+ msgstr "Majetok podľa"
224
+
225
+ #: frontend/src/stores/accounts.ts:109 src/fava/json_api.py:604
226
+ #: src/fava/json_api.py:624
227
+ msgid "Net Profit"
228
+ msgstr "Čistý zisk"
229
+
230
+ #: src/fava/json_api.py:610
231
+ msgid "Income"
232
+ msgstr "Príjem"
233
+
234
+ #: src/fava/json_api.py:616
235
+ msgid "Expenses"
236
+ msgstr "Výdavky"
237
+
238
+ #: frontend/src/entry-forms/EntryMetadata.svelte:29
239
+ #: frontend/src/reports/options/OptionsTable.svelte:14
240
+ msgid "Key"
241
+ msgstr "Kľúč"
242
+
243
+ #: frontend/src/entry-forms/EntryMetadata.svelte:39
244
+ #: frontend/src/reports/options/OptionsTable.svelte:15
245
+ msgid "Value"
246
+ msgstr "Hodnota"
247
+
248
+ #: frontend/src/reports/query/QueryLinks.svelte:21
249
+ msgid "Download as"
250
+ msgstr "Stiahnuť ako"
251
+
252
+ #: src/fava/templates/statistics.html:12
253
+ msgid "Postings per Account"
254
+ msgstr "Položky na účte"
255
+
256
+ #: src/fava/templates/statistics.html:80
257
+ msgid "Total"
258
+ msgstr "Súhrn"
259
+
260
+ #: src/fava/templates/statistics.html:20
261
+ msgid "Update Activity"
262
+ msgstr "Aktualizovať aktivitu"
263
+
264
+ #: src/fava/templates/statistics.html:21
265
+ msgid "Click to copy balance directives for accounts (except green ones) to the clipboard."
266
+ msgstr "Kliknutie skopíruje vyrovnávacie príkazy pre účty (okrem účtov oznčených zelenou farbou)."
267
+
268
+ #: src/fava/templates/statistics.html:22
269
+ msgid "Copy balance directives"
270
+ msgstr "Kopírovať vyrovnávacie príkazy"
271
+
272
+ #: src/fava/templates/statistics.html:29
273
+ msgid "Last Entry"
274
+ msgstr "Posledný zápis"
275
+
276
+ #: src/fava/templates/statistics.html:62
277
+ msgid "Entries per Type"
278
+ msgstr "Zápisy podľa typu"
279
+
280
+ #: src/fava/templates/statistics.html:66
281
+ msgid "Type"
282
+ msgstr "Typ"
283
+
284
+ #: src/fava/templates/statistics.html:67
285
+ msgid "# Entries"
286
+ msgstr "Počet zápisov"
287
+
288
+ #: frontend/src/entry-forms/Transaction.svelte:125
289
+ #: frontend/src/entry-forms/Transaction.svelte:128
290
+ #: src/fava/templates/_journal_table.html:50
291
+ msgid "Narration"
292
+ msgstr "Popis"
293
+
294
+ #: frontend/src/entry-forms/Balance.svelte:44
295
+ msgid "Number"
296
+ msgstr "Číslo"
297
+
298
+ #: frontend/src/reports/import/Extract.svelte:58
299
+ #: frontend/src/reports/import/index.ts:59
300
+ msgid "Import"
301
+ msgstr "Importovať"
302
+
303
+ #: frontend/src/journal/JournalFilters.svelte:42
304
+ msgid "Budget entries"
305
+ msgstr "Zápisý rozpočtov"
306
+
307
+ #: frontend/src/reports/import/Extract.svelte:121
308
+ msgid "Source"
309
+ msgstr "Zdroj"
310
+
311
+ #: frontend/src/reports/import/FileList.svelte:94
312
+ msgid "Extract"
313
+ msgstr "Extraktovať"
314
+
315
+ #: frontend/src/reports/query/QueryEditor.svelte:19
316
+ msgid "...enter a BQL query. 'help' to list available commands."
317
+ msgstr "...zadajte BQL dotaz. 'help' zobrazí všetky dostupné príkazy."
318
+
319
+ #: frontend/src/journal/JournalFilters.svelte:43
320
+ msgid "Metadata"
321
+ msgstr "Metadáta"
322
+
323
+ #: frontend/src/entry-forms/AddMetadataButton.svelte:19
324
+ #: frontend/src/entry-forms/EntryMetadata.svelte:52
325
+ msgid "Add metadata"
326
+ msgstr "Pridať metadáta"
327
+
328
+ #: frontend/src/entry-forms/Note.svelte:28
329
+ #: frontend/src/modals/AddEntry.svelte:16
330
+ msgid "Note"
331
+ msgstr "Poznámka"
332
+
333
+ #: frontend/src/modals/EntryContext.svelte:17
334
+ msgid "Location"
335
+ msgstr "Poloha"
336
+
337
+ #: frontend/src/modals/Context.svelte:39
338
+ #: frontend/src/modals/EntryContext.svelte:28
339
+ msgid "Context"
340
+ msgstr "Kontext"
341
+
342
+ #: frontend/src/modals/EntryContext.svelte:34
343
+ msgid "Balances before entry"
344
+ msgstr "Zostatky pred zápisom"
345
+
346
+ #: frontend/src/modals/EntryContext.svelte:54
347
+ msgid "Balances after entry"
348
+ msgstr "Zostatky po zápise"
349
+
350
+ #: frontend/src/journal/JournalFilters.svelte:25
351
+ msgid "Cleared transactions"
352
+ msgstr "Vyriešené transakcie"
353
+
354
+ #: frontend/src/journal/JournalFilters.svelte:26
355
+ msgid "Pending transactions"
356
+ msgstr "Nevyriešené transakcie"
357
+
358
+ #: frontend/src/journal/JournalFilters.svelte:27
359
+ msgid "Other transactions"
360
+ msgstr "Ostatné transakcie"
361
+
362
+ #: frontend/src/journal/JournalFilters.svelte:34
363
+ msgid "Documents with a #discovered tag"
364
+ msgstr "Dokumenty s tagom #discovered (objavené)"
365
+
366
+ #: frontend/src/entry-forms/Transaction.svelte:155
367
+ #: frontend/src/journal/JournalFilters.svelte:44
368
+ msgid "Postings"
369
+ msgstr "Položky"
370
+
371
+ #: frontend/src/modals/DocumentUpload.svelte:48
372
+ msgid "Upload file(s)"
373
+ msgstr "Nahrať súbor-y"
374
+
375
+ #: frontend/src/modals/DocumentUpload.svelte:70
376
+ #: frontend/src/reports/import/ImportFileUpload.svelte:35
377
+ msgid "Upload"
378
+ msgstr "Nahrať"
379
+
380
+ #: frontend/src/reports/editor/EditorMenu.svelte:57
381
+ msgid "Align Amounts"
382
+ msgstr "Zarovnať hodnoty"
383
+
384
+ #: frontend/src/reports/editor/EditorMenu.svelte:63
385
+ msgid "Toggle Comment (selection)"
386
+ msgstr "Prepnúť kommentár (výber)"
387
+
388
+ #: frontend/src/reports/editor/EditorMenu.svelte:69
389
+ msgid "Open all folds"
390
+ msgstr "Rozšíriť všetko"
391
+
392
+ #: frontend/src/reports/editor/EditorMenu.svelte:75
393
+ msgid "Close all folds"
394
+ msgstr "Zhrnúť všetko"
395
+
396
+ #: frontend/src/reports/options/Options.svelte:20
397
+ msgid "Fava options"
398
+ msgstr "Fava možnosti"
399
+
400
+ #: frontend/src/reports/options/Options.svelte:21
401
+ msgid "help"
402
+ msgstr "pomoc"
403
+
404
+ #: frontend/src/reports/options/Options.svelte:25
405
+ msgid "Beancount options"
406
+ msgstr "Beancount možnosti"
407
+
408
+ #: frontend/src/reports/query/QueryEditor.svelte:38
409
+ msgid "Submit"
410
+ msgstr "Potvrdiť"
411
+
412
+ #: frontend/src/tree-table/AccountCellHeader.svelte:23
413
+ msgid "Hold Shift while clicking to expand all children.\n"
414
+ "Hold Ctrl or Cmd while clicking to expand one level."
415
+ msgstr "Držte Shift počas kliknutia na rožšírenie všetkých podpodložiek. Držte Ctrl alebo Cmd počas kliknutia na rožirenie jedného stupňa."
416
+
417
+ #: frontend/src/modals/Export.svelte:13
418
+ msgid "Export"
419
+ msgstr "Exportovať"
420
+
421
+ #: frontend/src/sidebar/FilterForm.svelte:104
422
+ msgid "Filter by tag, payee, ..."
423
+ msgstr "Filtrovať podľa tagu, príjemcu, ..."
424
+
425
+ #: frontend/src/modals/Export.svelte:15
426
+ msgid "Download currently filtered entries as a Beancount file"
427
+ msgstr "Stiahnuť aktuálne filtrované zápisy ako Beancount súbor"
428
+
429
+ #: frontend/src/lib/interval.ts:22 src/fava/util/date.py:123
430
+ msgid "Yearly"
431
+ msgstr "Ročne"
432
+
433
+ #: frontend/src/lib/interval.ts:23 src/fava/util/date.py:143
434
+ msgid "Quarterly"
435
+ msgstr "Kvartálne"
436
+
437
+ #: frontend/src/lib/interval.ts:24 src/fava/util/date.py:169
438
+ msgid "Monthly"
439
+ msgstr "Mesačne"
440
+
441
+ #: frontend/src/lib/interval.ts:25 src/fava/util/date.py:191
442
+ msgid "Weekly"
443
+ msgstr "Týždenne"
444
+
445
+ #: frontend/src/lib/interval.ts:26 src/fava/util/date.py:215
446
+ msgid "Daily"
447
+ msgstr "Denne"
448
+
449
+ #: frontend/src/reports/editor/EditorMenu.svelte:55
450
+ msgid "Edit"
451
+ msgstr "Upraviť"
452
+
453
+ #: frontend/src/entry-forms/Posting.svelte:101
454
+ msgid "Amount"
455
+ msgstr "Suma"
456
+
457
+ #: frontend/src/journal/JournalFilters.svelte:38
458
+ msgid "Documents with a #linked tag"
459
+ msgstr "Dokumenty s tagom #linked"
460
+
461
+ #: frontend/src/charts/ConversionAndInterval.svelte:12
462
+ msgid "At Cost"
463
+ msgstr ""
464
+
465
+ #: frontend/src/charts/ConversionAndInterval.svelte:14
466
+ msgid "At Market Value"
467
+ msgstr ""
468
+
469
+ #: frontend/src/charts/ConversionAndInterval.svelte:16
470
+ #: src/fava/templates/_journal_table.html:51
471
+ msgid "Units"
472
+ msgstr ""
473
+
474
+ #: frontend/src/stores/chart.ts:28
475
+ msgid "Treemap"
476
+ msgstr ""
477
+
478
+ #: frontend/src/stores/chart.ts:29
479
+ msgid "Sunburst"
480
+ msgstr ""
481
+
482
+ #: frontend/src/entry-forms/AccountInput.svelte:32
483
+ msgid "Should be one of the declared accounts"
484
+ msgstr ""
485
+
486
+ #: frontend/src/charts/ChartSwitcher.svelte:25
487
+ #: frontend/src/reports/import/Extract.svelte:101
488
+ msgid "Previous"
489
+ msgstr ""
490
+
491
+ #: frontend/src/charts/ChartSwitcher.svelte:32
492
+ #: frontend/src/reports/import/Extract.svelte:106
493
+ msgid "Next"
494
+ msgstr ""
495
+
496
+ #: frontend/src/modals/AddEntry.svelte:14
497
+ msgid "Transaction"
498
+ msgstr ""
499
+
500
+ #: frontend/src/modals/AddEntry.svelte:43
501
+ msgid "Add"
502
+ msgstr ""
503
+
504
+ #: frontend/src/reports/documents/Documents.svelte:75
505
+ msgid "Move or rename document"
506
+ msgstr ""
507
+
508
+ #: frontend/src/reports/documents/Table.svelte:27
509
+ msgid "Name"
510
+ msgstr ""
511
+
512
+ #: frontend/src/reports/documents/index.ts:19
513
+ #: frontend/src/sidebar/AsideContents.svelte:47
514
+ msgid "Documents"
515
+ msgstr ""
516
+
517
+ #: frontend/src/editor/DeleteButton.svelte:11
518
+ #: frontend/src/editor/DeleteButton.svelte:14
519
+ #: frontend/src/reports/import/FileList.svelte:47
520
+ msgid "Delete"
521
+ msgstr ""
522
+
523
+ #: frontend/src/stores/chart.ts:43
524
+ msgid "Line chart"
525
+ msgstr ""
526
+
527
+ #: frontend/src/stores/chart.ts:44
528
+ msgid "Area chart"
529
+ msgstr ""
530
+
531
+ #: frontend/src/reports/import/FileList.svelte:94
532
+ msgid "Continue"
533
+ msgstr ""
534
+
535
+ #: frontend/src/reports/import/FileList.svelte:103
536
+ msgid "Clear"
537
+ msgstr ""
538
+
539
+ #: frontend/src/sidebar/AccountSelector.svelte:22
540
+ msgid "Go to account"
541
+ msgstr ""
542
+
543
+ #: frontend/src/reports/import/Import.svelte:69
544
+ msgid "Delete this file?"
545
+ msgstr ""
546
+
547
+ #: frontend/src/reports/import/Import.svelte:134
548
+ msgid "No files were found for import."
549
+ msgstr ""
550
+
551
+ #: frontend/src/journal/JournalFilters.svelte:8
552
+ msgid "Toggle %(type)s entries"
553
+ msgstr ""
554
+
555
+ #: frontend/src/charts/ConversionAndInterval.svelte:18
556
+ msgid "Converted to %(currency)s"
557
+ msgstr ""
558
+
559
+ #: frontend/src/stores/chart.ts:57
560
+ msgid "Stacked Bars"
561
+ msgstr ""
562
+
563
+ #: frontend/src/stores/chart.ts:58
564
+ msgid "Single Bars"
565
+ msgstr ""
566
+
567
+ #: frontend/src/charts/HierarchyContainer.svelte:33
568
+ msgid "Chart is empty."
569
+ msgstr ""
570
+
571
+ #: frontend/src/journal/JournalFilters.svelte:43
572
+ msgid "Toggle metadata"
573
+ msgstr ""
574
+
575
+ #: frontend/src/journal/JournalFilters.svelte:44
576
+ msgid "Toggle postings"
577
+ msgstr ""
578
+
579
+ #: src/fava/internal_api.py:223
580
+ msgid "Net Worth"
581
+ msgstr ""
582
+
583
+ #: src/fava/internal_api.py:172
584
+ msgid "Account Balance"
585
+ msgstr ""
586
+
587
+ #: frontend/src/editor/SliceEditor.svelte:96
588
+ msgid "reload"
589
+ msgstr ""
590
+
591
+ #: frontend/src/modals/AddEntry.svelte:64
592
+ msgid "continue"
593
+ msgstr ""
594
+
595
+ #: frontend/src/editor/DeleteButton.svelte:11
596
+ msgid "Deleting..."
597
+ msgstr ""
598
+
599
+ #: frontend/src/sidebar/AsideContents.svelte:61
600
+ msgid "Add Journal Entry"
601
+ msgstr ""
602
+
603
+ #: frontend/src/reports/documents/Documents.svelte:80
604
+ #: frontend/src/reports/import/FileList.svelte:83
605
+ msgid "Move"
606
+ msgstr ""
607
+
608
+ #: frontend/src/reports/import/Extract.svelte:76
609
+ msgid "ignore duplicate"
610
+ msgstr ""
611
+
612
+ #: frontend/src/reports/import/ImportFileUpload.svelte:33
613
+ msgid "Upload files for import"
614
+ msgstr ""
615
+
616
+ #: frontend/src/reports/options/Options.svelte:13
617
+ msgid "Color scheme"
618
+ msgstr ""
619
+
620
+ #: frontend/src/stores/chart.ts:30
621
+ msgid "Icicle"
622
+ msgstr ""
623
+