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,619 @@
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: es\n"
9
+
10
+ #: frontend/src/reports/errors/index.ts:6
11
+ #: frontend/src/sidebar/AsideContents.svelte:68
12
+ msgid "Errors"
13
+ msgstr "Errores"
14
+
15
+ #: frontend/src/sidebar/FilterForm.svelte:82
16
+ msgid "Time"
17
+ msgstr "Hora"
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 "Cuenta"
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 "Beneficiario"
33
+
34
+ #: frontend/src/reports/tree_reports/index.ts:20
35
+ msgid "Income Statement"
36
+ msgstr "Cuenta de resultados"
37
+
38
+ #: frontend/src/reports/tree_reports/index.ts:27
39
+ #: frontend/src/sidebar/AsideContents.svelte:28
40
+ msgid "Balance Sheet"
41
+ msgstr "Hoja de balance"
42
+
43
+ #: frontend/src/reports/tree_reports/index.ts:34
44
+ #: frontend/src/sidebar/AsideContents.svelte:29
45
+ msgid "Trial Balance"
46
+ msgstr "Balance de comprobación"
47
+
48
+ #: frontend/src/sidebar/AsideContents.svelte:30
49
+ #: src/fava/templates/journal.html:5
50
+ msgid "Journal"
51
+ msgstr "Diario"
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 "Consulta"
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 "Valores en cartera"
65
+
66
+ #: frontend/src/reports/commodities/index.ts:33
67
+ #: frontend/src/sidebar/AsideContents.svelte:46
68
+ msgid "Commodities"
69
+ msgstr "Productos"
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 "Eventos"
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 "Opciones"
86
+
87
+ #: frontend/src/sidebar/AsideContents.svelte:54
88
+ #: src/fava/templates/statistics.html:6
89
+ msgid "Statistics"
90
+ msgstr "Estadísticas"
91
+
92
+ #: frontend/src/sidebar/AsideContents.svelte:76 src/fava/templates/help.html:3
93
+ msgid "Help"
94
+ msgstr "Ayuda"
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 "Fecha"
102
+
103
+ #: src/fava/templates/_journal_table.html:49
104
+ #, fuzzy
105
+ msgid "F"
106
+ msgstr "M"
107
+
108
+ #: frontend/src/reports/commodities/CommodityTable.svelte:19
109
+ #: src/fava/templates/_journal_table.html:53
110
+ msgid "Price"
111
+ msgstr "Precio"
112
+
113
+ #: src/fava/templates/_journal_table.html:52
114
+ msgid "Cost"
115
+ msgstr "Costo"
116
+
117
+ #: src/fava/templates/_journal_table.html:52
118
+ #, fuzzy
119
+ msgid "Change"
120
+ msgstr "Cambio"
121
+
122
+ #: frontend/src/entry-forms/Balance.svelte:29
123
+ #: frontend/src/modals/AddEntry.svelte:15
124
+ #: src/fava/templates/_journal_table.html:53
125
+ #: src/fava/templates/statistics.html:30
126
+ msgid "Balance"
127
+ msgstr "Saldo"
128
+
129
+ #: frontend/src/editor/SaveButton.svelte:14
130
+ #: frontend/src/modals/AddEntry.svelte:66
131
+ #: frontend/src/reports/import/Extract.svelte:116
132
+ msgid "Save"
133
+ msgstr "Guardar"
134
+
135
+ #: frontend/src/editor/SaveButton.svelte:14
136
+ msgid "Saving..."
137
+ msgstr "Guardando..."
138
+
139
+ #: frontend/src/main.ts:82
140
+ msgid "File change detected. Click to reload."
141
+ msgstr "Modificación del fichero detectada. Haga clic para recargar."
142
+
143
+ #: frontend/src/tree-table/AccountCellHeader.svelte:34
144
+ msgid "Expand all accounts"
145
+ msgstr "Expandir todas las cuentas"
146
+
147
+ #: frontend/src/tree-table/AccountCellHeader.svelte:39
148
+ msgid "Expand all"
149
+ msgstr "Expandir todo"
150
+
151
+ #: frontend/src/reports/accounts/AccountReport.svelte:46
152
+ msgid "Account Journal"
153
+ msgstr "Diario de la cuenta"
154
+
155
+ #: frontend/src/reports/accounts/AccountReport.svelte:52
156
+ #: frontend/src/reports/accounts/AccountReport.svelte:55
157
+ #: src/fava/json_api.py:722
158
+ msgid "Changes"
159
+ msgstr "Cambios"
160
+
161
+ #: frontend/src/reports/accounts/AccountReport.svelte:61
162
+ #: frontend/src/reports/accounts/AccountReport.svelte:64
163
+ msgid "Balances"
164
+ msgstr "Saldos"
165
+
166
+ #: frontend/src/reports/errors/Errors.svelte:48
167
+ msgid "Show source %(file)s:%(lineno)s"
168
+ msgstr "Mostrar origen %(file)s:%(lineno)s"
169
+
170
+ #: frontend/src/reports/editor/EditorMenu.svelte:43
171
+ #: frontend/src/reports/errors/Errors.svelte:22
172
+ msgid "File"
173
+ msgstr "Fichero"
174
+
175
+ #: frontend/src/reports/errors/Errors.svelte:23
176
+ #: frontend/src/reports/import/Extract.svelte:122
177
+ msgid "Line"
178
+ msgstr "Línea"
179
+
180
+ #: frontend/src/reports/errors/Errors.svelte:24
181
+ #: frontend/src/reports/route.ts:93
182
+ msgid "Error"
183
+ msgstr "Error"
184
+
185
+ #: frontend/src/reports/errors/Errors.svelte:75
186
+ msgid "No errors."
187
+ msgstr "Sin errores."
188
+
189
+ #: frontend/src/reports/events/Events.svelte:31
190
+ msgid "Event: %(type)s"
191
+ msgstr "Evento: %(type)s"
192
+
193
+ #: frontend/src/reports/events/EventTable.svelte:15
194
+ msgid "Description"
195
+ msgstr "Descripción"
196
+
197
+ #: src/fava/templates/help.html:8
198
+ msgid "Help pages"
199
+ msgstr "Páginas de ayuda"
200
+
201
+ #: frontend/src/entry-forms/Balance.svelte:56
202
+ #: frontend/src/reports/holdings/Holdings.svelte:35
203
+ #: frontend/src/reports/holdings/Holdings.svelte:39
204
+ msgid "Currency"
205
+ msgstr "Moneda"
206
+
207
+ #: frontend/src/reports/holdings/Holdings.svelte:45
208
+ #: frontend/src/reports/holdings/Holdings.svelte:49
209
+ msgid "Cost currency"
210
+ msgstr "Divisa de costo"
211
+
212
+ #: frontend/src/reports/holdings/Holdings.svelte:25
213
+ #: frontend/src/reports/holdings/Holdings.svelte:28
214
+ #: frontend/src/reports/holdings/Holdings.svelte:35
215
+ #: frontend/src/reports/holdings/Holdings.svelte:38
216
+ #: frontend/src/reports/holdings/Holdings.svelte:45
217
+ #: frontend/src/reports/holdings/Holdings.svelte:48
218
+ msgid "Holdings by"
219
+ msgstr "Participaciones por parte de"
220
+
221
+ #: frontend/src/stores/accounts.ts:109 src/fava/json_api.py:604
222
+ #: src/fava/json_api.py:624
223
+ msgid "Net Profit"
224
+ msgstr "Beneficio neto"
225
+
226
+ #: src/fava/json_api.py:610
227
+ msgid "Income"
228
+ msgstr "Ingresos"
229
+
230
+ #: src/fava/json_api.py:616
231
+ msgid "Expenses"
232
+ msgstr "Gastos"
233
+
234
+ #: frontend/src/entry-forms/EntryMetadata.svelte:29
235
+ #: frontend/src/reports/options/OptionsTable.svelte:14
236
+ msgid "Key"
237
+ msgstr "Clave"
238
+
239
+ #: frontend/src/entry-forms/EntryMetadata.svelte:39
240
+ #: frontend/src/reports/options/OptionsTable.svelte:15
241
+ msgid "Value"
242
+ msgstr "Valor"
243
+
244
+ #: frontend/src/reports/query/QueryLinks.svelte:21
245
+ msgid "Download as"
246
+ msgstr "Descargar como"
247
+
248
+ #: src/fava/templates/statistics.html:12
249
+ msgid "Postings per Account"
250
+ msgstr "Asientos por cuenta"
251
+
252
+ #: src/fava/templates/statistics.html:80
253
+ msgid "Total"
254
+ msgstr "Total"
255
+
256
+ #: src/fava/templates/statistics.html:20
257
+ msgid "Update Activity"
258
+ msgstr "Actualizar actividad"
259
+
260
+ #: src/fava/templates/statistics.html:21
261
+ msgid "Click to copy balance directives for accounts (except green ones) to the clipboard."
262
+ msgstr "Haga clic para copiar directivas de balance de las cuentas (con excepción de las verdes) en el portapapeles."
263
+
264
+ #: src/fava/templates/statistics.html:22
265
+ msgid "Copy balance directives"
266
+ msgstr "Copiar directivas de balance"
267
+
268
+ #: src/fava/templates/statistics.html:29
269
+ msgid "Last Entry"
270
+ msgstr "Última entrada"
271
+
272
+ #: src/fava/templates/statistics.html:62
273
+ msgid "Entries per Type"
274
+ msgstr "Entradas por Tipo"
275
+
276
+ #: src/fava/templates/statistics.html:66
277
+ msgid "Type"
278
+ msgstr "Tipo"
279
+
280
+ #: src/fava/templates/statistics.html:67
281
+ msgid "# Entries"
282
+ msgstr "Nº de entradas"
283
+
284
+ #: frontend/src/entry-forms/Transaction.svelte:125
285
+ #: frontend/src/entry-forms/Transaction.svelte:128
286
+ #: src/fava/templates/_journal_table.html:50
287
+ msgid "Narration"
288
+ msgstr "Narración"
289
+
290
+ #: frontend/src/entry-forms/Balance.svelte:44
291
+ msgid "Number"
292
+ msgstr "Número"
293
+
294
+ #: frontend/src/reports/import/Extract.svelte:58
295
+ #: frontend/src/reports/import/index.ts:59
296
+ msgid "Import"
297
+ msgstr "Importar"
298
+
299
+ #: frontend/src/journal/JournalFilters.svelte:42
300
+ msgid "Budget entries"
301
+ msgstr ""
302
+
303
+ #: frontend/src/reports/import/Extract.svelte:121
304
+ msgid "Source"
305
+ msgstr "Fuente"
306
+
307
+ #: frontend/src/reports/import/FileList.svelte:94
308
+ msgid "Extract"
309
+ msgstr "Extraer"
310
+
311
+ #: frontend/src/reports/query/QueryEditor.svelte:19
312
+ msgid "...enter a BQL query. 'help' to list available commands."
313
+ msgstr ""
314
+
315
+ #: frontend/src/journal/JournalFilters.svelte:43
316
+ msgid "Metadata"
317
+ msgstr "Metadatos"
318
+
319
+ #: frontend/src/entry-forms/AddMetadataButton.svelte:19
320
+ #: frontend/src/entry-forms/EntryMetadata.svelte:52
321
+ msgid "Add metadata"
322
+ msgstr "Añadir metadatos"
323
+
324
+ #: frontend/src/entry-forms/Note.svelte:28
325
+ #: frontend/src/modals/AddEntry.svelte:16
326
+ msgid "Note"
327
+ msgstr "Nota"
328
+
329
+ #: frontend/src/modals/EntryContext.svelte:17
330
+ msgid "Location"
331
+ msgstr "Ubicación"
332
+
333
+ #: frontend/src/modals/Context.svelte:39
334
+ #: frontend/src/modals/EntryContext.svelte:28
335
+ msgid "Context"
336
+ msgstr "Contexto"
337
+
338
+ #: frontend/src/modals/EntryContext.svelte:34
339
+ msgid "Balances before entry"
340
+ msgstr ""
341
+
342
+ #: frontend/src/modals/EntryContext.svelte:54
343
+ msgid "Balances after entry"
344
+ msgstr ""
345
+
346
+ #: frontend/src/journal/JournalFilters.svelte:25
347
+ msgid "Cleared transactions"
348
+ msgstr ""
349
+
350
+ #: frontend/src/journal/JournalFilters.svelte:26
351
+ msgid "Pending transactions"
352
+ msgstr "Transacciones pendientes"
353
+
354
+ #: frontend/src/journal/JournalFilters.svelte:27
355
+ msgid "Other transactions"
356
+ msgstr "Otras transacciones"
357
+
358
+ #: frontend/src/journal/JournalFilters.svelte:34
359
+ msgid "Documents with a #discovered tag"
360
+ msgstr "Documentos con la etiqueta #discovered"
361
+
362
+ #: frontend/src/entry-forms/Transaction.svelte:155
363
+ #: frontend/src/journal/JournalFilters.svelte:44
364
+ msgid "Postings"
365
+ msgstr ""
366
+
367
+ #: frontend/src/modals/DocumentUpload.svelte:48
368
+ msgid "Upload file(s)"
369
+ msgstr ""
370
+
371
+ #: frontend/src/modals/DocumentUpload.svelte:70
372
+ #: frontend/src/reports/import/ImportFileUpload.svelte:35
373
+ msgid "Upload"
374
+ msgstr ""
375
+
376
+ #: frontend/src/reports/editor/EditorMenu.svelte:57
377
+ msgid "Align Amounts"
378
+ msgstr ""
379
+
380
+ #: frontend/src/reports/editor/EditorMenu.svelte:63
381
+ msgid "Toggle Comment (selection)"
382
+ msgstr ""
383
+
384
+ #: frontend/src/reports/editor/EditorMenu.svelte:69
385
+ msgid "Open all folds"
386
+ msgstr ""
387
+
388
+ #: frontend/src/reports/editor/EditorMenu.svelte:75
389
+ msgid "Close all folds"
390
+ msgstr ""
391
+
392
+ #: frontend/src/reports/options/Options.svelte:20
393
+ msgid "Fava options"
394
+ msgstr "Opciones de Fava"
395
+
396
+ #: frontend/src/reports/options/Options.svelte:21
397
+ msgid "help"
398
+ msgstr "ayuda"
399
+
400
+ #: frontend/src/reports/options/Options.svelte:25
401
+ msgid "Beancount options"
402
+ msgstr "Opciones de Beancount"
403
+
404
+ #: frontend/src/reports/query/QueryEditor.svelte:38
405
+ msgid "Submit"
406
+ msgstr ""
407
+
408
+ #: frontend/src/tree-table/AccountCellHeader.svelte:23
409
+ msgid "Hold Shift while clicking to expand all children.\n"
410
+ "Hold Ctrl or Cmd while clicking to expand one level."
411
+ msgstr ""
412
+
413
+ #: frontend/src/modals/Export.svelte:13
414
+ msgid "Export"
415
+ msgstr "Exportar"
416
+
417
+ #: frontend/src/sidebar/FilterForm.svelte:104
418
+ msgid "Filter by tag, payee, ..."
419
+ msgstr ""
420
+
421
+ #: frontend/src/modals/Export.svelte:15
422
+ msgid "Download currently filtered entries as a Beancount file"
423
+ msgstr ""
424
+
425
+ #: frontend/src/lib/interval.ts:22 src/fava/util/date.py:123
426
+ msgid "Yearly"
427
+ msgstr "Anualmente"
428
+
429
+ #: frontend/src/lib/interval.ts:23 src/fava/util/date.py:143
430
+ msgid "Quarterly"
431
+ msgstr ""
432
+
433
+ #: frontend/src/lib/interval.ts:24 src/fava/util/date.py:169
434
+ msgid "Monthly"
435
+ msgstr "Mensualmente"
436
+
437
+ #: frontend/src/lib/interval.ts:25 src/fava/util/date.py:191
438
+ msgid "Weekly"
439
+ msgstr "Semanalmente"
440
+
441
+ #: frontend/src/lib/interval.ts:26 src/fava/util/date.py:215
442
+ msgid "Daily"
443
+ msgstr "Diariamente"
444
+
445
+ #: frontend/src/reports/editor/EditorMenu.svelte:55
446
+ msgid "Edit"
447
+ msgstr "Editar"
448
+
449
+ #: frontend/src/entry-forms/Posting.svelte:101
450
+ msgid "Amount"
451
+ msgstr "Cantidad"
452
+
453
+ #: frontend/src/journal/JournalFilters.svelte:38
454
+ msgid "Documents with a #linked tag"
455
+ msgstr "Documentos con la etiqueta #linked"
456
+
457
+ #: frontend/src/charts/ConversionAndInterval.svelte:12
458
+ msgid "At Cost"
459
+ msgstr "Al Costo"
460
+
461
+ #: frontend/src/charts/ConversionAndInterval.svelte:14
462
+ msgid "At Market Value"
463
+ msgstr "Al valor de mercado"
464
+
465
+ #: frontend/src/charts/ConversionAndInterval.svelte:16
466
+ #: src/fava/templates/_journal_table.html:51
467
+ msgid "Units"
468
+ msgstr "Unidades"
469
+
470
+ #: frontend/src/stores/chart.ts:28
471
+ msgid "Treemap"
472
+ msgstr ""
473
+
474
+ #: frontend/src/stores/chart.ts:29
475
+ msgid "Sunburst"
476
+ msgstr ""
477
+
478
+ #: frontend/src/entry-forms/AccountInput.svelte:32
479
+ msgid "Should be one of the declared accounts"
480
+ msgstr ""
481
+
482
+ #: frontend/src/charts/ChartSwitcher.svelte:25
483
+ #: frontend/src/reports/import/Extract.svelte:101
484
+ msgid "Previous"
485
+ msgstr "Anterior"
486
+
487
+ #: frontend/src/charts/ChartSwitcher.svelte:32
488
+ #: frontend/src/reports/import/Extract.svelte:106
489
+ msgid "Next"
490
+ msgstr "Siguiente"
491
+
492
+ #: frontend/src/modals/AddEntry.svelte:14
493
+ msgid "Transaction"
494
+ msgstr "Transacción"
495
+
496
+ #: frontend/src/modals/AddEntry.svelte:43
497
+ msgid "Add"
498
+ msgstr "Añadir"
499
+
500
+ #: frontend/src/reports/documents/Documents.svelte:75
501
+ msgid "Move or rename document"
502
+ msgstr "Mover o renombrar documento"
503
+
504
+ #: frontend/src/reports/documents/Table.svelte:27
505
+ msgid "Name"
506
+ msgstr "Nombre"
507
+
508
+ #: frontend/src/reports/documents/index.ts:19
509
+ #: frontend/src/sidebar/AsideContents.svelte:47
510
+ msgid "Documents"
511
+ msgstr "Documentos"
512
+
513
+ #: frontend/src/editor/DeleteButton.svelte:11
514
+ #: frontend/src/editor/DeleteButton.svelte:14
515
+ #: frontend/src/reports/import/FileList.svelte:47
516
+ msgid "Delete"
517
+ msgstr "Borrar"
518
+
519
+ #: frontend/src/stores/chart.ts:43
520
+ msgid "Line chart"
521
+ msgstr ""
522
+
523
+ #: frontend/src/stores/chart.ts:44
524
+ msgid "Area chart"
525
+ msgstr ""
526
+
527
+ #: frontend/src/reports/import/FileList.svelte:94
528
+ msgid "Continue"
529
+ msgstr "Continuar"
530
+
531
+ #: frontend/src/reports/import/FileList.svelte:103
532
+ msgid "Clear"
533
+ msgstr "Limpiar"
534
+
535
+ #: frontend/src/sidebar/AccountSelector.svelte:22
536
+ msgid "Go to account"
537
+ msgstr "Ir a cuenta"
538
+
539
+ #: frontend/src/reports/import/Import.svelte:69
540
+ msgid "Delete this file?"
541
+ msgstr "¿Borrar este archivo?"
542
+
543
+ #: frontend/src/reports/import/Import.svelte:134
544
+ msgid "No files were found for import."
545
+ msgstr ""
546
+
547
+ #: frontend/src/journal/JournalFilters.svelte:8
548
+ msgid "Toggle %(type)s entries"
549
+ msgstr ""
550
+
551
+ #: frontend/src/charts/ConversionAndInterval.svelte:18
552
+ msgid "Converted to %(currency)s"
553
+ msgstr ""
554
+
555
+ #: frontend/src/stores/chart.ts:57
556
+ msgid "Stacked Bars"
557
+ msgstr ""
558
+
559
+ #: frontend/src/stores/chart.ts:58
560
+ msgid "Single Bars"
561
+ msgstr ""
562
+
563
+ #: frontend/src/charts/HierarchyContainer.svelte:33
564
+ msgid "Chart is empty."
565
+ msgstr ""
566
+
567
+ #: frontend/src/journal/JournalFilters.svelte:43
568
+ msgid "Toggle metadata"
569
+ msgstr ""
570
+
571
+ #: frontend/src/journal/JournalFilters.svelte:44
572
+ msgid "Toggle postings"
573
+ msgstr ""
574
+
575
+ #: src/fava/internal_api.py:223
576
+ msgid "Net Worth"
577
+ msgstr "Valor neto"
578
+
579
+ #: src/fava/internal_api.py:172
580
+ msgid "Account Balance"
581
+ msgstr "Balance de la cuenta"
582
+
583
+ #: frontend/src/editor/SliceEditor.svelte:96
584
+ msgid "reload"
585
+ msgstr "refrescar"
586
+
587
+ #: frontend/src/modals/AddEntry.svelte:64
588
+ msgid "continue"
589
+ msgstr "continuar"
590
+
591
+ #: frontend/src/editor/DeleteButton.svelte:11
592
+ msgid "Deleting..."
593
+ msgstr "Borrando..."
594
+
595
+ #: frontend/src/sidebar/AsideContents.svelte:61
596
+ msgid "Add Journal Entry"
597
+ msgstr "Añadir entrada al diario"
598
+
599
+ #: frontend/src/reports/documents/Documents.svelte:80
600
+ #: frontend/src/reports/import/FileList.svelte:83
601
+ msgid "Move"
602
+ msgstr ""
603
+
604
+ #: frontend/src/reports/import/Extract.svelte:76
605
+ msgid "ignore duplicate"
606
+ msgstr ""
607
+
608
+ #: frontend/src/reports/import/ImportFileUpload.svelte:33
609
+ msgid "Upload files for import"
610
+ msgstr ""
611
+
612
+ #: frontend/src/reports/options/Options.svelte:13
613
+ msgid "Color scheme"
614
+ msgstr ""
615
+
616
+ #: frontend/src/stores/chart.ts:30
617
+ msgid "Icicle"
618
+ msgstr ""
619
+