followthemoney 1.3.7__py3-none-any.whl → 3.8.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 (186) hide show
  1. followthemoney/__init__.py +5 -3
  2. followthemoney/cli/__init__.py +17 -0
  3. followthemoney/cli/aggregate.py +56 -0
  4. followthemoney/cli/cli.py +88 -0
  5. followthemoney/cli/exports.py +121 -0
  6. followthemoney/cli/mapping.py +85 -0
  7. followthemoney/cli/sieve.py +67 -0
  8. followthemoney/cli/util.py +142 -0
  9. followthemoney/compare.py +130 -60
  10. followthemoney/exc.py +19 -6
  11. followthemoney/export/common.py +29 -0
  12. followthemoney/export/csv.py +82 -0
  13. followthemoney/export/excel.py +75 -0
  14. followthemoney/export/graph.py +79 -0
  15. followthemoney/export/neo4j.py +182 -0
  16. followthemoney/export/rdf.py +26 -0
  17. followthemoney/graph.py +308 -0
  18. followthemoney/helpers.py +212 -0
  19. followthemoney/mapping/__init__.py +1 -1
  20. followthemoney/mapping/csv.py +67 -35
  21. followthemoney/mapping/entity.py +116 -44
  22. followthemoney/mapping/property.py +90 -44
  23. followthemoney/mapping/query.py +27 -19
  24. followthemoney/mapping/source.py +15 -5
  25. followthemoney/mapping/sql.py +75 -61
  26. followthemoney/messages.py +13 -7
  27. followthemoney/model.py +108 -56
  28. followthemoney/namespace.py +119 -0
  29. followthemoney/offshore.py +48 -0
  30. followthemoney/ontology.py +77 -0
  31. followthemoney/property.py +204 -71
  32. followthemoney/proxy.py +455 -118
  33. followthemoney/rdf.py +9 -0
  34. followthemoney/schema/Address.yaml +78 -0
  35. followthemoney/schema/Airplane.yaml +17 -10
  36. followthemoney/schema/Analyzable.yaml +54 -0
  37. followthemoney/schema/Article.yaml +16 -0
  38. followthemoney/schema/Assessment.yaml +32 -0
  39. followthemoney/schema/Asset.yaml +10 -4
  40. followthemoney/schema/Associate.yaml +41 -0
  41. followthemoney/schema/Audio.yaml +24 -0
  42. followthemoney/schema/BankAccount.yaml +53 -9
  43. followthemoney/schema/Call.yaml +48 -0
  44. followthemoney/schema/CallForTenders.yaml +117 -0
  45. followthemoney/schema/Company.yaml +37 -12
  46. followthemoney/schema/Contract.yaml +41 -7
  47. followthemoney/schema/ContractAward.yaml +30 -11
  48. followthemoney/schema/CourtCase.yaml +16 -10
  49. followthemoney/schema/CourtCaseParty.yaml +17 -6
  50. followthemoney/schema/CryptoWallet.yaml +48 -0
  51. followthemoney/schema/Debt.yaml +37 -0
  52. followthemoney/schema/Directorship.yaml +17 -4
  53. followthemoney/schema/Document.yaml +72 -139
  54. followthemoney/schema/Documentation.yml +38 -0
  55. followthemoney/schema/EconomicActivity.yaml +32 -17
  56. followthemoney/schema/Email.yaml +76 -0
  57. followthemoney/schema/Employment.yaml +39 -0
  58. followthemoney/schema/Event.yaml +35 -3
  59. followthemoney/schema/Family.yaml +41 -0
  60. followthemoney/schema/Folder.yaml +13 -0
  61. followthemoney/schema/HyperText.yaml +21 -0
  62. followthemoney/schema/Identification.yaml +40 -0
  63. followthemoney/schema/Image.yaml +25 -0
  64. followthemoney/schema/Interest.yaml +3 -6
  65. followthemoney/schema/Interval.yaml +56 -5
  66. followthemoney/schema/LegalEntity.yaml +81 -20
  67. followthemoney/schema/License.yaml +7 -3
  68. followthemoney/schema/Membership.yaml +19 -4
  69. followthemoney/schema/Mention.yaml +54 -0
  70. followthemoney/schema/Message.yaml +73 -0
  71. followthemoney/schema/Note.yaml +23 -0
  72. followthemoney/schema/Occupancy.yaml +40 -0
  73. followthemoney/schema/Organization.yaml +38 -3
  74. followthemoney/schema/Ownership.yaml +16 -4
  75. followthemoney/schema/Package.yaml +17 -0
  76. followthemoney/schema/Page.yaml +43 -0
  77. followthemoney/schema/Pages.yaml +23 -0
  78. followthemoney/schema/Passport.yaml +15 -17
  79. followthemoney/schema/Payment.yaml +38 -7
  80. followthemoney/schema/Person.yaml +61 -5
  81. followthemoney/schema/PlainText.yaml +17 -0
  82. followthemoney/schema/Position.yaml +50 -0
  83. followthemoney/schema/Post.yaml +42 -0
  84. followthemoney/schema/Project.yaml +27 -0
  85. followthemoney/schema/ProjectParticipant.yaml +36 -0
  86. followthemoney/schema/PublicBody.yaml +14 -3
  87. followthemoney/schema/RealEstate.yaml +19 -3
  88. followthemoney/schema/Representation.yaml +17 -6
  89. followthemoney/schema/Sanction.yaml +44 -20
  90. followthemoney/schema/Security.yaml +59 -0
  91. followthemoney/schema/Similar.yaml +37 -0
  92. followthemoney/schema/Succession.yaml +36 -0
  93. followthemoney/schema/Table.yaml +32 -0
  94. followthemoney/schema/TaxRoll.yaml +27 -9
  95. followthemoney/schema/Thing.yaml +69 -13
  96. followthemoney/schema/Trip.yaml +42 -0
  97. followthemoney/schema/UnknownLink.yaml +17 -6
  98. followthemoney/schema/UserAccount.yaml +44 -0
  99. followthemoney/schema/Value.yaml +5 -1
  100. followthemoney/schema/Vehicle.yaml +25 -8
  101. followthemoney/schema/Vessel.yaml +18 -10
  102. followthemoney/schema/Video.yaml +20 -0
  103. followthemoney/schema/Workbook.yaml +18 -0
  104. followthemoney/schema.py +406 -135
  105. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  106. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +2900 -787
  107. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  108. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +2108 -520
  109. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  110. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +2902 -782
  111. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  112. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +2893 -779
  113. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  114. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +4362 -0
  115. followthemoney/translations/fr/followthemoney.po +3861 -0
  116. followthemoney/translations/messages.pot +3021 -725
  117. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  118. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3778 -0
  119. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  120. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3837 -0
  121. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  122. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3784 -0
  123. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  124. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +2837 -539
  125. followthemoney/translations/ru/followthemoney.po +4221 -0
  126. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  127. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +2073 -491
  128. followthemoney/types/__init__.py +35 -17
  129. followthemoney/types/address.py +41 -21
  130. followthemoney/types/checksum.py +25 -0
  131. followthemoney/types/common.py +233 -88
  132. followthemoney/types/country.py +89 -56
  133. followthemoney/types/date.py +59 -76
  134. followthemoney/types/email.py +66 -35
  135. followthemoney/types/entity.py +66 -13
  136. followthemoney/types/gender.py +66 -0
  137. followthemoney/types/iban.py +47 -28
  138. followthemoney/types/identifier.py +49 -22
  139. followthemoney/types/ip.py +35 -21
  140. followthemoney/types/json.py +58 -0
  141. followthemoney/types/language.py +124 -37
  142. followthemoney/types/mimetype.py +44 -0
  143. followthemoney/types/name.py +56 -12
  144. followthemoney/types/number.py +30 -0
  145. followthemoney/types/phone.py +92 -34
  146. followthemoney/types/registry.py +52 -0
  147. followthemoney/types/string.py +43 -0
  148. followthemoney/types/topic.py +94 -0
  149. followthemoney/types/url.py +39 -17
  150. followthemoney/util.py +139 -45
  151. followthemoney-3.8.0.dist-info/METADATA +153 -0
  152. followthemoney-3.8.0.dist-info/RECORD +157 -0
  153. {followthemoney-1.3.7.dist-info → followthemoney-3.8.0.dist-info}/WHEEL +1 -2
  154. followthemoney-3.8.0.dist-info/entry_points.txt +17 -0
  155. followthemoney-1.3.7.dist-info/LICENSE.txt → followthemoney-3.8.0.dist-info/licenses/LICENSE +1 -1
  156. followthemoney/link.py +0 -75
  157. followthemoney/schema/Associate.yml +0 -19
  158. followthemoney/schema/Family.yml +0 -19
  159. followthemoney/schema/Land.yml +0 -9
  160. followthemoney/schema/Relationship.yaml +0 -26
  161. followthemoney/types/domain.py +0 -50
  162. followthemoney-1.3.7.dist-info/DESCRIPTION.rst +0 -3
  163. followthemoney-1.3.7.dist-info/METADATA +0 -39
  164. followthemoney-1.3.7.dist-info/RECORD +0 -108
  165. followthemoney-1.3.7.dist-info/entry_points.txt +0 -3
  166. followthemoney-1.3.7.dist-info/metadata.json +0 -1
  167. followthemoney-1.3.7.dist-info/namespace_packages.txt +0 -1
  168. followthemoney-1.3.7.dist-info/top_level.txt +0 -3
  169. ns/ontology.py +0 -128
  170. tests/types/test_addresses.py +0 -24
  171. tests/types/test_common.py +0 -32
  172. tests/types/test_countries.py +0 -27
  173. tests/types/test_dates.py +0 -73
  174. tests/types/test_domains.py +0 -23
  175. tests/types/test_emails.py +0 -32
  176. tests/types/test_entity.py +0 -19
  177. tests/types/test_iban.py +0 -109
  178. tests/types/test_identifiers.py +0 -27
  179. tests/types/test_ip.py +0 -29
  180. tests/types/test_languages.py +0 -23
  181. tests/types/test_names.py +0 -33
  182. tests/types/test_phones.py +0 -24
  183. tests/types/test_registry.py +0 -14
  184. tests/types/test_urls.py +0 -23
  185. {ns → followthemoney/export}/__init__.py +0 -0
  186. /tests/types/__init__.py → /followthemoney/py.typed +0 -0
@@ -1,64 +1,322 @@
1
1
  # Translations template for PROJECT.
2
- # Copyright (C) 2018 ORGANIZATION
2
+ # Copyright (C) 2022 ORGANIZATION
3
3
  # This file is distributed under the same license as the PROJECT project.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
5
+ #
6
+ # Translators:
7
+ # pudo <friedrich@pudo.org>, 2021
5
8
  #
6
9
  #, fuzzy
7
10
  msgid ""
8
11
  msgstr ""
9
12
  "Project-Id-Version: PROJECT VERSION\n"
10
13
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11
- "POT-Creation-Date: 2018-10-11 07:34+0200\n"
12
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: Emina Muratovic <emina@occrp.org>, 2018\n"
14
+ "POT-Creation-Date: 2022-03-04 14:36+0100\n"
15
+ "PO-Revision-Date: 2021-05-07 13:11+0000\n"
16
+ "Last-Translator: pudo <friedrich@pudo.org>, 2021\n"
14
17
  "Language-Team: Bosnian (https://www.transifex.com/aleph/teams/76591/bs/)\n"
15
18
  "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
17
20
  "Content-Transfer-Encoding: 8bit\n"
18
- "Generated-By: Babel 2.6.0\n"
21
+ "Generated-By: Babel 2.9.1\n"
19
22
  "Language: bs\n"
20
23
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
21
24
 
22
- #: followthemoney/property.py:65
25
+ #: followthemoney/property.py:166
26
+ msgid "Property cannot be written"
27
+ msgstr ""
28
+
29
+ #: followthemoney/property.py:169
23
30
  msgid "Invalid value"
31
+ msgstr "Nevažeća vrijednost"
32
+
33
+ #: followthemoney/proxy.py:59
34
+ msgid "No schema for entity."
35
+ msgstr "Nema scheme za entitet."
36
+
37
+ #: followthemoney/proxy.py:112
38
+ #, python-format
39
+ msgid "Unknown property (%s): %s"
40
+ msgstr "Nepoznat posjed (%s): %s"
41
+
42
+ #: followthemoney/proxy.py:185
43
+ #, python-format
44
+ msgid "Stub property (%s): %s"
24
45
  msgstr ""
25
46
 
26
- #: followthemoney/property.py:69
47
+ #: followthemoney/schema.py:335
27
48
  msgid "Required"
49
+ msgstr "Obavezno"
50
+
51
+ #: followthemoney/schema.py:339
52
+ msgid "Entity validation failed"
28
53
  msgstr ""
29
54
 
30
- #: followthemoney/proxy.py:49
31
- #, python-format
32
- msgid "Unknown property (%s): %s"
55
+ #. Address.label
56
+ #. CryptoWallet.properties.publicKey.label
57
+ #. Thing.properties.address.label
58
+ #. Thing.properties.addressEntity.label
59
+ #: followthemoney/schema/Address.yaml followthemoney/schema/CryptoWallet.yaml
60
+ #: followthemoney/schema/Thing.yaml followthemoney/types/address.py:24
61
+ msgid "Address"
62
+ msgstr "Adresa"
63
+
64
+ #. Address.plural
65
+ #: followthemoney/schema/Address.yaml followthemoney/types/address.py:25
66
+ msgid "Addresses"
33
67
  msgstr ""
34
68
 
35
- #: followthemoney/proxy.py:167
36
- msgid "No schema for entity."
69
+ #. Address.description
70
+ #: followthemoney/schema/Address.yaml
71
+ msgid "A location associated with an entity.\n"
72
+ msgstr ""
73
+
74
+ #. Address.properties.full.label
75
+ #: followthemoney/schema/Address.yaml
76
+ msgid "Full address"
77
+ msgstr ""
78
+
79
+ #. Address.properties.remarks.label
80
+ #: followthemoney/schema/Address.yaml
81
+ msgid "Remarks"
82
+ msgstr ""
83
+
84
+ #. Address.properties.remarks.description
85
+ #: followthemoney/schema/Address.yaml
86
+ msgid "Handling instructions, like 'care of'."
87
+ msgstr ""
88
+
89
+ #. Address.properties.postOfficeBox.label
90
+ #: followthemoney/schema/Address.yaml
91
+ msgid "PO Box"
92
+ msgstr ""
93
+
94
+ #. Address.properties.postOfficeBox.description
95
+ #: followthemoney/schema/Address.yaml
96
+ msgid "A mailbox indentifier at the post office"
97
+ msgstr ""
98
+
99
+ #. Address.properties.street.label
100
+ #: followthemoney/schema/Address.yaml
101
+ msgid "Street address"
102
+ msgstr ""
103
+
104
+ #. Address.properties.street2.label
105
+ #: followthemoney/schema/Address.yaml
106
+ msgid "Street address (ctd.)"
37
107
  msgstr ""
38
108
 
109
+ #. Address.properties.city.label
110
+ #: followthemoney/schema/Address.yaml
111
+ msgid "City"
112
+ msgstr ""
113
+
114
+ #. Address.properties.city.description
115
+ #: followthemoney/schema/Address.yaml
116
+ msgid "City, town, village or other locality"
117
+ msgstr ""
118
+
119
+ #. Address.properties.postalCode.label
120
+ #: followthemoney/schema/Address.yaml
121
+ msgid "Postal code"
122
+ msgstr ""
123
+
124
+ #. Address.properties.postalCode.description
125
+ #: followthemoney/schema/Address.yaml
126
+ msgid "Zip code or postcode."
127
+ msgstr ""
128
+
129
+ #. Address.properties.region.label
130
+ #: followthemoney/schema/Address.yaml
131
+ msgid "Region"
132
+ msgstr ""
133
+
134
+ #. Address.properties.region.description
135
+ #: followthemoney/schema/Address.yaml
136
+ msgid "Also province or area."
137
+ msgstr ""
138
+
139
+ #. Address.properties.state.label
140
+ #: followthemoney/schema/Address.yaml
141
+ msgid "State"
142
+ msgstr ""
143
+
144
+ #. Address.properties.state.description
145
+ #: followthemoney/schema/Address.yaml
146
+ msgid "State or federal unit."
147
+ msgstr ""
148
+
149
+ #. Address.properties.latitude.label
150
+ #. RealEstate.properties.latitude.label
151
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
152
+ msgid "Latitude"
153
+ msgstr "Širina"
154
+
155
+ #. Address.properties.longitude.label
156
+ #. RealEstate.properties.longitude.label
157
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
158
+ msgid "Longitude"
159
+ msgstr "Dužina"
160
+
161
+ #. Address.properties.country.label
162
+ #. Event.properties.country.label
163
+ #. Identification.properties.country.label
164
+ #. Sanction.properties.country.label
165
+ #. TaxRoll.properties.country.label
166
+ #. Thing.properties.country.label
167
+ #: followthemoney/schema/Address.yaml followthemoney/schema/Event.yaml
168
+ #: followthemoney/schema/Identification.yaml
169
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/TaxRoll.yaml
170
+ #: followthemoney/schema/Thing.yaml followthemoney/types/country.py:21
171
+ msgid "Country"
172
+ msgstr "Država"
173
+
39
174
  #. Airplane.label
40
175
  #: followthemoney/schema/Airplane.yaml
41
176
  msgid "Airplane"
42
- msgstr ""
177
+ msgstr "Avion"
43
178
 
44
179
  #. Airplane.plural
45
180
  #: followthemoney/schema/Airplane.yaml
46
181
  msgid "Airplanes"
182
+ msgstr "Avioni"
183
+
184
+ #. Airplane.description
185
+ #: followthemoney/schema/Airplane.yaml
186
+ msgid "An airplane, helicopter or other flying vehicle.\n"
47
187
  msgstr ""
48
188
 
49
189
  #. Airplane.properties.serialNumber.label
50
190
  #: followthemoney/schema/Airplane.yaml
51
191
  msgid "Serial Number"
52
- msgstr ""
192
+ msgstr "Serijski broj"
53
193
 
54
194
  #. Airplane.properties.icaoCode.label
55
195
  #: followthemoney/schema/Airplane.yaml
56
196
  msgid "ICAO aircraft type designator"
57
- msgstr ""
197
+ msgstr "ICAO oznaka tipa aviona"
58
198
 
59
199
  #. Airplane.properties.manufacturer.label
60
200
  #: followthemoney/schema/Airplane.yaml
61
201
  msgid "Manufacturer"
202
+ msgstr "Proizvođač"
203
+
204
+ #. Analyzable.label
205
+ #: followthemoney/schema/Analyzable.yaml
206
+ msgid "Analyzable"
207
+ msgstr ""
208
+
209
+ #. Analyzable.plural
210
+ #: followthemoney/schema/Analyzable.yaml
211
+ msgid "Analyzables"
212
+ msgstr ""
213
+
214
+ #. Analyzable.description
215
+ #: followthemoney/schema/Analyzable.yaml
216
+ msgid "An entity suitable for being processed via named-entity recognition.\n"
217
+ msgstr ""
218
+
219
+ #. Analyzable.properties.detectedLanguage.label
220
+ #. Page.properties.detectedLanguage.label
221
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Page.yaml
222
+ msgid "Detected language"
223
+ msgstr ""
224
+
225
+ #. Analyzable.properties.detectedCountry.label
226
+ #: followthemoney/schema/Analyzable.yaml
227
+ msgid "Detected country"
228
+ msgstr ""
229
+
230
+ #. Analyzable.properties.namesMentioned.label
231
+ #. Interval.properties.namesMentioned.label
232
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Interval.yaml
233
+ msgid "Detected names"
234
+ msgstr ""
235
+
236
+ #. Analyzable.properties.peopleMentioned.label
237
+ #: followthemoney/schema/Analyzable.yaml
238
+ msgid "Detected people"
239
+ msgstr ""
240
+
241
+ #. Analyzable.properties.companiesMentioned.label
242
+ #: followthemoney/schema/Analyzable.yaml
243
+ msgid "Detected companies"
244
+ msgstr ""
245
+
246
+ #. Analyzable.properties.ibanMentioned.label
247
+ #: followthemoney/schema/Analyzable.yaml
248
+ msgid "Detected IBANs"
249
+ msgstr ""
250
+
251
+ #. Analyzable.properties.ipMentioned.label
252
+ #: followthemoney/schema/Analyzable.yaml
253
+ msgid "Detected IP addresses"
254
+ msgstr ""
255
+
256
+ #. Analyzable.properties.locationMentioned.label
257
+ #: followthemoney/schema/Analyzable.yaml
258
+ msgid "Detected locations"
259
+ msgstr ""
260
+
261
+ #. Analyzable.properties.phoneMentioned.label
262
+ #: followthemoney/schema/Analyzable.yaml
263
+ msgid "Detected phones"
264
+ msgstr ""
265
+
266
+ #. Analyzable.properties.emailMentioned.label
267
+ #: followthemoney/schema/Analyzable.yaml
268
+ msgid "Detected e-mail addresses"
269
+ msgstr ""
270
+
271
+ #. Article.label
272
+ #: followthemoney/schema/Article.yaml
273
+ msgid "Article"
274
+ msgstr ""
275
+
276
+ #. Article.plural
277
+ #: followthemoney/schema/Article.yaml
278
+ msgid "Articles"
279
+ msgstr ""
280
+
281
+ #. Article.description
282
+ #: followthemoney/schema/Article.yaml
283
+ msgid "A piece of media reporting about a subject.\n"
284
+ msgstr ""
285
+
286
+ #. Assessment.label
287
+ #: followthemoney/schema/Assessment.yaml
288
+ msgid "Assessment"
289
+ msgstr ""
290
+
291
+ #. Assessment.plural
292
+ #: followthemoney/schema/Assessment.yaml
293
+ msgid "Assessments"
294
+ msgstr ""
295
+
296
+ #. Assessment.properties.publishDate.label
297
+ #: followthemoney/schema/Assessment.yaml
298
+ msgid "Date of publishing"
299
+ msgstr ""
300
+
301
+ #. Assessment.properties.assessmentId.label
302
+ #: followthemoney/schema/Assessment.yaml
303
+ msgid "Assessment ID"
304
+ msgstr ""
305
+
306
+ #. Assessment.properties.author.label
307
+ #. Document.properties.author.label
308
+ #: followthemoney/schema/Assessment.yaml followthemoney/schema/Document.yaml
309
+ msgid "Author"
310
+ msgstr "Autor"
311
+
312
+ #. Assessment.properties.author.plural
313
+ #: followthemoney/schema/Assessment.yaml
314
+ msgid "Authors"
315
+ msgstr ""
316
+
317
+ #. Assessment.properties.author.reverse.label
318
+ #: followthemoney/schema/Assessment.yaml
319
+ msgid "Assessments authored"
62
320
  msgstr ""
63
321
 
64
322
  #. Asset.label
@@ -72,73 +330,219 @@ msgstr "Imovina"
72
330
  msgid "Assets"
73
331
  msgstr "Imovina"
74
332
 
333
+ #. Asset.description
334
+ #: followthemoney/schema/Asset.yaml
335
+ msgid "A piece of property which can be owned and assigned a monetary value.\n"
336
+ msgstr ""
337
+
75
338
  #. Associate.label
76
339
  #. Associate.properties.associate.label
77
- #: followthemoney/schema/Associate.yml
340
+ #: followthemoney/schema/Associate.yaml
78
341
  msgid "Associate"
79
- msgstr ""
342
+ msgstr "Saradnik"
343
+
344
+ #. Associate.plural
345
+ #. Associate.properties.person.reverse.label
346
+ #: followthemoney/schema/Associate.yaml
347
+ msgid "Associates"
348
+ msgstr "Saradnici"
80
349
 
81
350
  #. Associate.description
82
- #: followthemoney/schema/Associate.yml
351
+ #: followthemoney/schema/Associate.yaml
83
352
  msgid "Non-family association between two people"
353
+ msgstr "Ne-porodična povezanost između dvije osobe"
354
+
355
+ #. Associate.edge.label
356
+ #: followthemoney/schema/Associate.yaml
357
+ msgid "associated with"
358
+ msgstr ""
359
+
360
+ #. Associate.properties.person.label
361
+ #. Family.properties.person.label
362
+ #. Person.label
363
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
364
+ #: followthemoney/schema/Person.yaml
365
+ msgid "Person"
366
+ msgstr "Osoba"
367
+
368
+ #. Associate.properties.person.description
369
+ #: followthemoney/schema/Associate.yaml
370
+ msgid "The subject of the association."
84
371
  msgstr ""
85
372
 
86
373
  #. Associate.properties.associate.description
87
- #: followthemoney/schema/Associate.yml
374
+ #: followthemoney/schema/Associate.yaml
88
375
  msgid "An associate of the subject person."
89
- msgstr ""
376
+ msgstr "Saradnik subjekta."
90
377
 
91
378
  #. Associate.properties.associate.reverse.label
92
- #: followthemoney/schema/Associate.yml
93
- msgid "Associates"
379
+ #: followthemoney/schema/Associate.yaml
380
+ msgid "Associations"
381
+ msgstr ""
382
+
383
+ #. Associate.properties.relationship.label
384
+ #. Family.properties.relationship.label
385
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
386
+ msgid "Relationship"
387
+ msgstr ""
388
+
389
+ #. Associate.properties.relationship.description
390
+ #: followthemoney/schema/Associate.yaml
391
+ msgid "Nature of the association"
392
+ msgstr ""
393
+
394
+ #. Audio.label
395
+ #: followthemoney/schema/Audio.yaml
396
+ msgid "Audio"
397
+ msgstr ""
398
+
399
+ #. Audio.plural
400
+ #: followthemoney/schema/Audio.yaml
401
+ msgid "Audio files"
402
+ msgstr ""
403
+
404
+ #. Audio.properties.duration.label
405
+ #. Call.properties.duration.label
406
+ #. Sanction.properties.duration.label
407
+ #. Video.properties.duration.label
408
+ #: followthemoney/schema/Audio.yaml followthemoney/schema/Call.yaml
409
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Video.yaml
410
+ msgid "Duration"
411
+ msgstr ""
412
+
413
+ #. Audio.properties.duration.description
414
+ #: followthemoney/schema/Audio.yaml
415
+ msgid "Duration of the audio in ms"
416
+ msgstr ""
417
+
418
+ #. Audio.properties.samplingRate.label
419
+ #: followthemoney/schema/Audio.yaml
420
+ msgid "Sampling Rate"
421
+ msgstr ""
422
+
423
+ #. Audio.properties.samplingRate.description
424
+ #: followthemoney/schema/Audio.yaml
425
+ msgid "Sampling rate of the audio in Hz"
94
426
  msgstr ""
95
427
 
96
428
  #. BankAccount.label
97
- #. EconomicActivity.properties.bankAccount.label
98
429
  #: followthemoney/schema/BankAccount.yaml
99
- #: followthemoney/schema/EconomicActivity.yaml
100
- msgid "Bank Account"
101
- msgstr "Bankovni račun"
430
+ msgid "Bank account"
431
+ msgstr ""
102
432
 
103
433
  #. BankAccount.plural
434
+ #. BankAccount.properties.bank.reverse.label
435
+ #: followthemoney/schema/BankAccount.yaml
436
+ msgid "Bank accounts"
437
+ msgstr ""
438
+
439
+ #. BankAccount.description
104
440
  #: followthemoney/schema/BankAccount.yaml
105
- msgid "Bank Accounts"
106
- msgstr "Bankovni računi"
441
+ msgid ""
442
+ "An account held at a bank and controlled by an owner. This may also be used"
443
+ " to describe more complex arrangements like correspondent bank settlement "
444
+ "accounts.\n"
445
+ msgstr ""
107
446
 
108
447
  #. BankAccount.properties.bankName.label
109
448
  #: followthemoney/schema/BankAccount.yaml
110
- msgid "Bank Name"
111
- msgstr "Ime banke"
449
+ msgid "Bank name"
450
+ msgstr ""
112
451
 
113
452
  #. BankAccount.properties.accountNumber.label
114
453
  #: followthemoney/schema/BankAccount.yaml
115
- msgid "Account Number"
116
- msgstr "Broj računa"
454
+ msgid "Account number"
455
+ msgstr ""
117
456
 
118
457
  #. BankAccount.properties.iban.label
119
- #: followthemoney/schema/BankAccount.yaml
458
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/iban.py:24
120
459
  msgid "IBAN"
121
- msgstr ""
460
+ msgstr "IBAN"
122
461
 
123
462
  #. BankAccount.properties.bic.label
124
463
  #: followthemoney/schema/BankAccount.yaml
125
464
  msgid "Bank Identifier Code"
126
465
  msgstr "Šifra identifikatora banke"
127
466
 
467
+ #. BankAccount.properties.bank.label
468
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/topic.py:46
469
+ msgid "Bank"
470
+ msgstr ""
471
+
128
472
  #. BankAccount.properties.accountType.label
129
473
  #: followthemoney/schema/BankAccount.yaml
130
- msgid "Account Type"
131
- msgstr "Tip računa"
474
+ msgid "Account type"
475
+ msgstr ""
132
476
 
133
477
  #. BankAccount.properties.balance.label
478
+ #. CryptoWallet.properties.balance.label
134
479
  #: followthemoney/schema/BankAccount.yaml
480
+ #: followthemoney/schema/CryptoWallet.yaml
135
481
  msgid "Balance"
136
482
  msgstr "Saldo"
137
483
 
484
+ #. BankAccount.properties.balanceDate.label
485
+ #. CryptoWallet.properties.balanceDate.label
486
+ #: followthemoney/schema/BankAccount.yaml
487
+ #: followthemoney/schema/CryptoWallet.yaml
488
+ msgid "Balance date"
489
+ msgstr ""
490
+
491
+ #. BankAccount.properties.maxBalance.label
492
+ #: followthemoney/schema/BankAccount.yaml
493
+ msgid "Maximum balance"
494
+ msgstr ""
495
+
496
+ #. BankAccount.properties.maxBalanceDate.label
497
+ #: followthemoney/schema/BankAccount.yaml
498
+ msgid "Maximum balance date"
499
+ msgstr ""
500
+
138
501
  #. BankAccount.properties.bankAddress.label
139
502
  #: followthemoney/schema/BankAccount.yaml
140
- msgid "Bank Address"
141
- msgstr "Adresa banke"
503
+ msgid "Bank address"
504
+ msgstr ""
505
+
506
+ #. Call.label
507
+ #: followthemoney/schema/Call.yaml
508
+ msgid "Call"
509
+ msgstr ""
510
+
511
+ #. Call.plural
512
+ #: followthemoney/schema/Call.yaml
513
+ msgid "Calls"
514
+ msgstr ""
515
+
516
+ #. Call.properties.caller.label
517
+ #: followthemoney/schema/Call.yaml
518
+ msgid "Caller"
519
+ msgstr ""
520
+
521
+ #. Call.properties.caller.reverse.label
522
+ #: followthemoney/schema/Call.yaml
523
+ msgid "Calls made"
524
+ msgstr ""
525
+
526
+ #. Call.properties.callerNumber.label
527
+ #: followthemoney/schema/Call.yaml
528
+ msgid "Caller's Number"
529
+ msgstr ""
530
+
531
+ #. Call.properties.receiver.label
532
+ #. EconomicActivity.properties.receiver.label
533
+ #: followthemoney/schema/Call.yaml followthemoney/schema/EconomicActivity.yaml
534
+ msgid "Receiver"
535
+ msgstr "Primalac"
536
+
537
+ #. Call.properties.receiver.reverse.label
538
+ #: followthemoney/schema/Call.yaml
539
+ msgid "Calls received"
540
+ msgstr ""
541
+
542
+ #. Call.properties.receiverNumber.label
543
+ #: followthemoney/schema/Call.yaml
544
+ msgid "Receiver's Number"
545
+ msgstr ""
142
546
 
143
547
  #. Company.label
144
548
  #: followthemoney/schema/Company.yaml
@@ -150,6 +554,15 @@ msgstr "Kompanija"
150
554
  msgid "Companies"
151
555
  msgstr "Kompanije"
152
556
 
557
+ #. Company.description
558
+ #: followthemoney/schema/Company.yaml
559
+ msgid ""
560
+ "A corporation, usually for profit. Does not distinguish between private and "
561
+ "public companies, and can also be used to model more specific constructs "
562
+ "like trusts and funds. Companies are assets, so they can be owned by other "
563
+ "legal entities.\n"
564
+ msgstr ""
565
+
153
566
  #. Company.properties.jurisdiction.label
154
567
  #. LegalEntity.properties.jurisdiction.label
155
568
  #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
@@ -159,8 +572,9 @@ msgstr "Nadležnost"
159
572
  #. Company.properties.registrationNumber.label
160
573
  #. LegalEntity.properties.registrationNumber.label
161
574
  #. RealEstate.properties.registrationNumber.label
575
+ #. Vehicle.properties.registrationNumber.label
162
576
  #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
163
- #: followthemoney/schema/RealEstate.yaml
577
+ #: followthemoney/schema/RealEstate.yaml followthemoney/schema/Vehicle.yaml
164
578
  msgid "Registration number"
165
579
  msgstr "Broj registracije"
166
580
 
@@ -184,16 +598,6 @@ msgstr "ID azerbejdžanskog poreznog obaveznika"
184
598
  msgid "COATO / SOATO / OKATO"
185
599
  msgstr "COATO / SOATO / OKATO"
186
600
 
187
- #. Company.properties.vatCode.label
188
- #: followthemoney/schema/Company.yaml
189
- msgid "VAT Identifier"
190
- msgstr "VAT identifikator"
191
-
192
- #. Company.properties.vatCode.description
193
- #: followthemoney/schema/Company.yaml
194
- msgid "(EU) VAT number"
195
- msgstr "(EU) VAT broj"
196
-
197
601
  #. Company.properties.irsCode.label
198
602
  #: followthemoney/schema/Company.yaml
199
603
  msgid "IRS Number"
@@ -247,7 +651,7 @@ msgstr "COD CAEM"
247
651
  #. Company.properties.caemCode.description
248
652
  #: followthemoney/schema/Company.yaml
249
653
  msgid "(RO) What kind of activity a legal entity is allowed to develop"
250
- msgstr ""
654
+ msgstr "(RO) Koji tip aktivnosti legalnog entiteta je dozvoljeno razviti"
251
655
 
252
656
  #. Company.properties.kppCode.label
253
657
  #: followthemoney/schema/Company.yaml
@@ -257,18 +661,19 @@ msgstr "KPP"
257
661
  #. Company.properties.kppCode.description
258
662
  #: followthemoney/schema/Company.yaml
259
663
  msgid "(RU, КПП) in addition to INN for orgs; reason for registration at FNS"
260
- msgstr ""
664
+ msgstr "(RU, КПП) dodatno za INN za orgs; razlog za registraciju u FNS"
261
665
 
262
666
  #. Company.properties.okvedCode.label
263
667
  #: followthemoney/schema/Company.yaml
264
668
  msgid "OKVED(2) Classifier"
265
- msgstr ""
669
+ msgstr "OKVED(2) Klasifikator"
266
670
 
267
671
  #. Company.properties.okvedCode.description
268
672
  #: followthemoney/schema/Company.yaml
269
673
  msgid ""
270
674
  "(RU, ОКВЭД) Economical activity classifier. OKVED2 is the same but newer"
271
675
  msgstr ""
676
+ "(RU, ОКВЭД) Klasifikator ekonomske aktivnosti. OKVED2 je isto, samo novije"
272
677
 
273
678
  #. Company.properties.okopfCode.label
274
679
  #: followthemoney/schema/Company.yaml
@@ -278,7 +683,7 @@ msgstr "OKOPF"
278
683
  #. Company.properties.okopfCode.description
279
684
  #: followthemoney/schema/Company.yaml
280
685
  msgid "(RU, ОКОПФ) What kind of business entity"
281
- msgstr ""
686
+ msgstr "(RU, ОКОПФ) Koji tip biznis entiteta"
282
687
 
283
688
  #. Company.properties.fnsCode.label
284
689
  #: followthemoney/schema/Company.yaml
@@ -310,6 +715,16 @@ msgstr "OGRN"
310
715
  msgid "Major State Registration Number"
311
716
  msgstr "Glavni registarski broj države"
312
717
 
718
+ #. Company.properties.bikCode.label
719
+ #: followthemoney/schema/Company.yaml
720
+ msgid "BIK"
721
+ msgstr ""
722
+
723
+ #. Company.properties.bikCode.description
724
+ #: followthemoney/schema/Company.yaml
725
+ msgid "Russian bank account code"
726
+ msgstr "Ruski bankovni račun"
727
+
313
728
  #. Company.properties.pfrNumber.label
314
729
  #: followthemoney/schema/Company.yaml
315
730
  msgid "PFR Number"
@@ -321,6 +736,8 @@ msgid ""
321
736
  "(RU, ПФР) Pension Fund Registration number. AAA-BBB-CCCCCC, where AAA is "
322
737
  "organisation region, BBB is district, CCCCCC number at a specific branch"
323
738
  msgstr ""
739
+ "(RU, ПФР) Registarski broj penzionog fonda. AAA-BBB-CCCCCC, gdje je AAA "
740
+ "organazacija regiona, BBB distrikt, CCCCCC broj na specifičnom ogranku"
324
741
 
325
742
  #. Company.properties.oksmCode.label
326
743
  #: followthemoney/schema/Company.yaml
@@ -330,16 +747,21 @@ msgstr "OKSM"
330
747
  #. Company.properties.oksmCode.description
331
748
  #: followthemoney/schema/Company.yaml
332
749
  msgid "Russian (ОКСМ) countries classifer"
333
- msgstr ""
750
+ msgstr "Ruski (ОКСМ) klasifikator zemalja"
334
751
 
335
752
  #. Contract.label
336
753
  #. ContractAward.properties.contract.label
754
+ #. EconomicActivity.properties.contract.label
755
+ #. Payment.properties.contract.label
337
756
  #: followthemoney/schema/Contract.yaml
338
757
  #: followthemoney/schema/ContractAward.yaml
758
+ #: followthemoney/schema/EconomicActivity.yaml
759
+ #: followthemoney/schema/Payment.yaml
339
760
  msgid "Contract"
340
761
  msgstr "Ugovor"
341
762
 
342
763
  #. Contract.plural
764
+ #. Contract.properties.project.reverse.label
343
765
  #. ContractAward.properties.contract.plural
344
766
  #: followthemoney/schema/Contract.yaml
345
767
  #: followthemoney/schema/ContractAward.yaml
@@ -350,36 +772,54 @@ msgstr "Ugovori"
350
772
  #: followthemoney/schema/Contract.yaml
351
773
  msgid ""
352
774
  "An contract or contract lot issued by an authority. Multiple lots may be "
353
- "awarded to different suppliers (see ContractAward)."
775
+ "awarded to different suppliers (see ContractAward).\n"
776
+ msgstr ""
777
+
778
+ #. Contract.properties.title.label
779
+ #: followthemoney/schema/Contract.yaml
780
+ msgid "Contract title"
354
781
  msgstr ""
355
782
 
356
783
  #. Contract.properties.authority.label
357
784
  #: followthemoney/schema/Contract.yaml
358
785
  msgid "Contract authority"
359
- msgstr ""
786
+ msgstr "Ugovorni autoritet"
360
787
 
361
788
  #. Contract.properties.authority.plural
362
789
  #: followthemoney/schema/Contract.yaml
363
790
  msgid "Contract authorities"
364
- msgstr ""
791
+ msgstr "Ugovorni autoriteti"
365
792
 
366
793
  #. Contract.properties.authority.reverse.label
367
794
  #: followthemoney/schema/Contract.yaml
368
795
  msgid "Contracts issued"
796
+ msgstr "Ugovori izdati"
797
+
798
+ #. Contract.properties.project.label
799
+ #. Payment.properties.project.label
800
+ #. Project.label
801
+ #. ProjectParticipant.properties.project.label
802
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Payment.yaml
803
+ #: followthemoney/schema/Project.yaml
804
+ #: followthemoney/schema/ProjectParticipant.yaml
805
+ msgid "Project"
369
806
  msgstr ""
370
807
 
371
808
  #. Contract.properties.type.label
372
809
  #. CourtCase.properties.type.label
810
+ #. Identification.properties.type.label
811
+ #. Security.properties.type.label
373
812
  #. Vehicle.properties.type.label
374
813
  #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
375
- #: followthemoney/schema/Vehicle.yaml
814
+ #: followthemoney/schema/Identification.yaml
815
+ #: followthemoney/schema/Security.yaml followthemoney/schema/Vehicle.yaml
376
816
  msgid "Type"
377
817
  msgstr "Tip"
378
818
 
379
819
  #. Contract.properties.type.description
380
820
  #: followthemoney/schema/Contract.yaml
381
- msgid "Type of contract. Potentially W (Works), U (Supplies), S (Services)."
382
- msgstr ""
821
+ msgid "Type of contract. Potentially W (Works), U (Supplies), S (Services).\n"
822
+ msgstr "Tipovi ugovora. Potencijalno W (Poslovi), U (Zalihe), S (Servisi).\n"
383
823
 
384
824
  #. Contract.properties.contractDate.label
385
825
  #: followthemoney/schema/Contract.yaml
@@ -391,6 +831,11 @@ msgstr "Datum ugovora"
391
831
  msgid "Procedure number"
392
832
  msgstr "Broj procedure"
393
833
 
834
+ #. Contract.properties.procedure.label
835
+ #: followthemoney/schema/Contract.yaml
836
+ msgid "Contract procedure"
837
+ msgstr ""
838
+
394
839
  #. Contract.properties.noticeId.label
395
840
  #: followthemoney/schema/Contract.yaml
396
841
  msgid "Contract Award Notice ID"
@@ -401,19 +846,56 @@ msgstr ""
401
846
  msgid "Number of awards"
402
847
  msgstr "Broj nagrada"
403
848
 
849
+ #. Contract.properties.status.label
850
+ #. CourtCase.properties.status.label
851
+ #. Interest.properties.status.label
852
+ #. LegalEntity.properties.status.label
853
+ #. Project.properties.status.label
854
+ #. Sanction.properties.status.label
855
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
856
+ #: followthemoney/schema/Interest.yaml followthemoney/schema/LegalEntity.yaml
857
+ #: followthemoney/schema/Project.yaml followthemoney/schema/Sanction.yaml
858
+ msgid "Status"
859
+ msgstr "Status"
860
+
861
+ #. Contract.properties.method.label
862
+ #: followthemoney/schema/Contract.yaml
863
+ msgid "Procurement method"
864
+ msgstr ""
865
+
866
+ #. Contract.properties.criteria.label
867
+ #: followthemoney/schema/Contract.yaml
868
+ msgid "Contract award criteria"
869
+ msgstr ""
870
+
871
+ #. Contract.properties.classification.label
872
+ #. LegalEntity.properties.classification.label
873
+ #. Security.properties.classification.label
874
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/LegalEntity.yaml
875
+ #: followthemoney/schema/Security.yaml
876
+ msgid "Classification"
877
+ msgstr "Klasifikacija"
878
+
404
879
  #. Contract.properties.cancelled.label
405
880
  #: followthemoney/schema/Contract.yaml
406
881
  msgid "Cancelled?"
407
882
  msgstr "Otkazan?"
408
883
 
884
+ #. Contract.properties.language.label
885
+ #. Document.properties.language.label
886
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Document.yaml
887
+ #: followthemoney/types/language.py:22
888
+ msgid "Language"
889
+ msgstr "Jezik"
890
+
409
891
  #. ContractAward.label
410
892
  #: followthemoney/schema/ContractAward.yaml
411
- msgid "Contract Lot Award"
893
+ msgid "Contract award"
412
894
  msgstr ""
413
895
 
414
896
  #. ContractAward.plural
415
897
  #: followthemoney/schema/ContractAward.yaml
416
- msgid "Contract Awards"
898
+ msgid "Contract awards"
417
899
  msgstr ""
418
900
 
419
901
  #. ContractAward.description
@@ -421,20 +903,25 @@ msgstr ""
421
903
  msgid "A contract or contract lot as awarded to a supplier."
422
904
  msgstr ""
423
905
 
906
+ #. ContractAward.edge.label
907
+ #: followthemoney/schema/ContractAward.yaml
908
+ msgid "awarded to"
909
+ msgstr ""
910
+
424
911
  #. ContractAward.properties.supplier.label
425
912
  #: followthemoney/schema/ContractAward.yaml
426
913
  msgid "Supplier"
427
- msgstr ""
914
+ msgstr "Dobavljač"
428
915
 
429
916
  #. ContractAward.properties.supplier.description
430
917
  #: followthemoney/schema/ContractAward.yaml
431
918
  msgid "The entity the contract was awarded to"
432
- msgstr ""
919
+ msgstr "Entitet kojem je dodijeljen ugovor"
433
920
 
434
921
  #. ContractAward.properties.supplier.plural
435
922
  #: followthemoney/schema/ContractAward.yaml
436
923
  msgid "Suppliers"
437
- msgstr ""
924
+ msgstr "Dobavljači"
438
925
 
439
926
  #. ContractAward.properties.supplier.reverse.label
440
927
  #: followthemoney/schema/ContractAward.yaml
@@ -449,7 +936,7 @@ msgstr ""
449
936
  #. ContractAward.properties.lotNumber.label
450
937
  #: followthemoney/schema/ContractAward.yaml
451
938
  msgid "Lot number"
452
- msgstr ""
939
+ msgstr "Broj lota"
453
940
 
454
941
  #. ContractAward.properties.documentNumber.label
455
942
  #: followthemoney/schema/ContractAward.yaml
@@ -457,9 +944,7 @@ msgid "Document number"
457
944
  msgstr "Broj dokumenta"
458
945
 
459
946
  #. ContractAward.properties.documentType.label
460
- #. Passport.properties.type.label
461
947
  #: followthemoney/schema/ContractAward.yaml
462
- #: followthemoney/schema/Passport.yaml
463
948
  msgid "Document type"
464
949
  msgstr "Tip dokumenta"
465
950
 
@@ -470,7 +955,7 @@ msgstr "Razlog odluke"
470
955
 
471
956
  #. ContractAward.properties.cpvCode.label
472
957
  #: followthemoney/schema/ContractAward.yaml
473
- msgid "CPV Code"
958
+ msgid "CPV code"
474
959
  msgstr ""
475
960
 
476
961
  #. ContractAward.properties.cpvCode.description
@@ -480,8 +965,8 @@ msgstr ""
480
965
 
481
966
  #. ContractAward.properties.nutsCode.label
482
967
  #: followthemoney/schema/ContractAward.yaml
483
- msgid "NUTS Code"
484
- msgstr "NUTS kod"
968
+ msgid "NUTS code"
969
+ msgstr ""
485
970
 
486
971
  #. ContractAward.properties.nutsCode.description
487
972
  #: followthemoney/schema/ContractAward.yaml
@@ -490,7 +975,7 @@ msgstr ""
490
975
 
491
976
  #. ContractAward.properties.amended.label
492
977
  #: followthemoney/schema/ContractAward.yaml
493
- msgid "Amended?"
978
+ msgid "Amended"
494
979
  msgstr ""
495
980
 
496
981
  #. ContractAward.properties.amended.description
@@ -515,31 +1000,6 @@ msgstr "Sudski predmeti"
515
1000
  msgid "Category"
516
1001
  msgstr "Kategorija"
517
1002
 
518
- #. CourtCase.properties.status.label
519
- #. Interest.properties.status.label
520
- #. LegalEntity.properties.status.label
521
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Interest.yaml
522
- #: followthemoney/schema/LegalEntity.yaml
523
- msgid "Status"
524
- msgstr "Status"
525
-
526
- #. CourtCase.properties.name.label
527
- #. Thing.properties.name.label
528
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Thing.yaml
529
- msgid "Name"
530
- msgstr "Naziv"
531
-
532
- #. CourtCase.properties.country.label
533
- #. Event.properties.country.label
534
- #. Passport.properties.country.label
535
- #. Thing.properties.country.label
536
- #. Vehicle.properties.country.label
537
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Event.yaml
538
- #: followthemoney/schema/Passport.yaml followthemoney/schema/Thing.yaml
539
- #: followthemoney/schema/Vehicle.yaml
540
- msgid "Country"
541
- msgstr "Država"
542
-
543
1003
  #. CourtCase.properties.caseNumber.label
544
1004
  #: followthemoney/schema/CourtCase.yaml
545
1005
  msgid "Case number"
@@ -561,6 +1021,20 @@ msgid "Close date"
561
1021
  msgstr "Darum zatvaranja"
562
1022
 
563
1023
  #. CourtCaseParty.label
1024
+ #: followthemoney/schema/CourtCaseParty.yaml
1025
+ msgid "Case party"
1026
+ msgstr ""
1027
+
1028
+ #. CourtCaseParty.plural
1029
+ #: followthemoney/schema/CourtCaseParty.yaml
1030
+ msgid "Case parties"
1031
+ msgstr ""
1032
+
1033
+ #. CourtCaseParty.edge.label
1034
+ #: followthemoney/schema/CourtCaseParty.yaml
1035
+ msgid "involved in"
1036
+ msgstr ""
1037
+
564
1038
  #. CourtCaseParty.properties.party.label
565
1039
  #: followthemoney/schema/CourtCaseParty.yaml
566
1040
  msgid "Party"
@@ -576,21 +1050,111 @@ msgstr "Slučaj"
576
1050
  msgid "Parties"
577
1051
  msgstr ""
578
1052
 
1053
+ #. CryptoWallet.label
1054
+ #: followthemoney/schema/CryptoWallet.yaml
1055
+ msgid "Cryptocurrency wallet"
1056
+ msgstr ""
1057
+
1058
+ #. CryptoWallet.plural
1059
+ #. CryptoWallet.properties.holder.reverse.label
1060
+ #: followthemoney/schema/CryptoWallet.yaml
1061
+ msgid "Cryptocurrency wallets"
1062
+ msgstr ""
1063
+
1064
+ #. CryptoWallet.description
1065
+ #: followthemoney/schema/CryptoWallet.yaml
1066
+ msgid ""
1067
+ "A cryptocurrency wallet is a view on the transactions conducted by one "
1068
+ "participant on a blockchain / distributed ledger system.\n"
1069
+ msgstr ""
1070
+
1071
+ #. CryptoWallet.properties.publicKey.description
1072
+ #: followthemoney/schema/CryptoWallet.yaml
1073
+ msgid "Public key used to identify the wallet"
1074
+ msgstr ""
1075
+
1076
+ #. CryptoWallet.properties.privateKey.label
1077
+ #: followthemoney/schema/CryptoWallet.yaml
1078
+ msgid "Private key"
1079
+ msgstr ""
1080
+
1081
+ #. CryptoWallet.properties.creationDate.label
1082
+ #: followthemoney/schema/CryptoWallet.yaml
1083
+ msgid "Creation date"
1084
+ msgstr ""
1085
+
1086
+ #. CryptoWallet.properties.currencySymbol.label
1087
+ #: followthemoney/schema/CryptoWallet.yaml
1088
+ msgid "Currency short code"
1089
+ msgstr ""
1090
+
1091
+ #. CryptoWallet.properties.mangingExchange.label
1092
+ #: followthemoney/schema/CryptoWallet.yaml
1093
+ msgid "Managing exchange"
1094
+ msgstr ""
1095
+
1096
+ #. CryptoWallet.properties.holder.label
1097
+ #: followthemoney/schema/CryptoWallet.yaml
1098
+ msgid "Wallet holder"
1099
+ msgstr ""
1100
+
1101
+ #. Debt.label
1102
+ #: followthemoney/schema/Debt.yaml
1103
+ msgid "Debt"
1104
+ msgstr ""
1105
+
1106
+ #. Debt.plural
1107
+ #. Debt.properties.debtor.reverse.label
1108
+ #: followthemoney/schema/Debt.yaml
1109
+ msgid "Debts"
1110
+ msgstr ""
1111
+
1112
+ #. Debt.description
1113
+ #: followthemoney/schema/Debt.yaml
1114
+ msgid "A monetary debt between two parties."
1115
+ msgstr ""
1116
+
1117
+ #. Debt.edge.label
1118
+ #: followthemoney/schema/Debt.yaml
1119
+ msgid "owes"
1120
+ msgstr ""
1121
+
1122
+ #. Debt.properties.debtor.label
1123
+ #: followthemoney/schema/Debt.yaml
1124
+ msgid "Debtor"
1125
+ msgstr ""
1126
+
1127
+ #. Debt.properties.creditor.label
1128
+ #: followthemoney/schema/Debt.yaml
1129
+ msgid "creditor"
1130
+ msgstr ""
1131
+
1132
+ #. Debt.properties.creditor.reverse.label
1133
+ #: followthemoney/schema/Debt.yaml
1134
+ msgid "Credits"
1135
+ msgstr ""
1136
+
579
1137
  #. Directorship.label
580
1138
  #: followthemoney/schema/Directorship.yaml
581
1139
  msgid "Directorship"
582
1140
  msgstr "Direktorski položaj"
583
1141
 
584
- #. Directorship.properties.director.label
585
- #: followthemoney/schema/Directorship.yaml
586
- msgid "Director"
587
- msgstr "Direktor"
588
-
1142
+ #. Directorship.plural
589
1143
  #. Directorship.properties.director.reverse.label
590
1144
  #: followthemoney/schema/Directorship.yaml
591
1145
  msgid "Directorships"
592
1146
  msgstr ""
593
1147
 
1148
+ #. Directorship.edge.label
1149
+ #: followthemoney/schema/Directorship.yaml
1150
+ msgid "directs"
1151
+ msgstr ""
1152
+
1153
+ #. Directorship.properties.director.label
1154
+ #: followthemoney/schema/Directorship.yaml
1155
+ msgid "Director"
1156
+ msgstr "Direktor"
1157
+
594
1158
  #. Directorship.properties.organization.label
595
1159
  #. Membership.properties.organization.label
596
1160
  #. Organization.label
@@ -621,8 +1185,8 @@ msgid "Files"
621
1185
  msgstr "Fajlovi"
622
1186
 
623
1187
  #. Document.properties.contentHash.label
624
- #: followthemoney/schema/Document.yaml
625
- msgid "Content checksum"
1188
+ #: followthemoney/schema/Document.yaml followthemoney/types/checksum.py:18
1189
+ msgid "Checksum"
626
1190
  msgstr ""
627
1191
 
628
1192
  #. Document.properties.contentHash.description
@@ -636,11 +1200,6 @@ msgstr ""
636
1200
  msgid "Title"
637
1201
  msgstr "Naziv"
638
1202
 
639
- #. Document.properties.author.label
640
- #: followthemoney/schema/Document.yaml
641
- msgid "Author"
642
- msgstr ""
643
-
644
1203
  #. Document.properties.author.description
645
1204
  #: followthemoney/schema/Document.yaml
646
1205
  msgid "The original author, not the uploader"
@@ -686,19 +1245,44 @@ msgstr ""
686
1245
  msgid "File encoding"
687
1246
  msgstr ""
688
1247
 
1248
+ #. Document.properties.bodyText.label
1249
+ #. Page.properties.bodyText.label
1250
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1251
+ #: followthemoney/types/string.py:24
1252
+ msgid "Text"
1253
+ msgstr ""
1254
+
1255
+ #. Document.properties.messageId.label
1256
+ #: followthemoney/schema/Document.yaml
1257
+ msgid "Message ID"
1258
+ msgstr ""
1259
+
1260
+ #. Document.properties.messageId.description
1261
+ #: followthemoney/schema/Document.yaml
1262
+ msgid "Message ID of a document; unique in most cases"
1263
+ msgstr ""
1264
+
689
1265
  #. Document.properties.mimeType.label
690
1266
  #: followthemoney/schema/Document.yaml
691
1267
  msgid "MIME type"
692
1268
  msgstr ""
693
1269
 
694
- #. Document.properties.language.label
695
- #: followthemoney/schema/Document.yaml
696
- msgid "Language"
1270
+ #. Document.properties.translatedLanguage.label
1271
+ #. Page.properties.translatedTextLanguage.label
1272
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1273
+ msgid "The language of the translated text"
1274
+ msgstr ""
1275
+
1276
+ #. Document.properties.translatedText.label
1277
+ #. Page.properties.translatedText.label
1278
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1279
+ msgid "Translated version of the body text"
697
1280
  msgstr ""
698
1281
 
699
1282
  #. Document.properties.date.label
700
1283
  #. Interval.properties.date.label
701
1284
  #: followthemoney/schema/Document.yaml followthemoney/schema/Interval.yaml
1285
+ #: followthemoney/types/date.py:26
702
1286
  msgid "Date"
703
1287
  msgstr "Datum"
704
1288
 
@@ -712,210 +1296,110 @@ msgstr ""
712
1296
  msgid "Authored on"
713
1297
  msgstr ""
714
1298
 
715
- #. Document.properties.modifiedAt.label
716
- #: followthemoney/schema/Document.yaml
717
- msgid "Modified on"
718
- msgstr ""
719
-
720
1299
  #. Document.properties.publishedAt.label
721
1300
  #: followthemoney/schema/Document.yaml
722
1301
  msgid "Published on"
723
1302
  msgstr ""
724
1303
 
725
- #. Document.properties.retrievedAt.label
726
- #: followthemoney/schema/Document.yaml
727
- msgid "Retrieved on"
728
- msgstr ""
729
-
730
1304
  #. Document.properties.parent.label
731
- #: followthemoney/schema/Document.yaml
732
- msgid "Parent document"
733
- msgstr ""
734
-
735
- #. Document.properties.parent.reverse.label
736
- #: followthemoney/schema/Document.yaml
737
- msgid "Child documents"
738
- msgstr ""
739
-
740
- #. Document.properties.namesMentioned.label
741
- #: followthemoney/schema/Document.yaml
742
- msgid "Mentioned names"
743
- msgstr ""
744
-
745
- #. Document.properties.ibanMentioned.label
746
- #: followthemoney/schema/Document.yaml
747
- msgid "IBANs"
748
- msgstr ""
749
-
750
- #. Document.properties.ipMentioned.label
751
- #: followthemoney/schema/Document.yaml
752
- msgid "IP addresses"
753
- msgstr ""
754
-
755
- #. Document.properties.locationMentioned.label
756
- #: followthemoney/schema/Document.yaml
757
- msgid "Locations"
758
- msgstr ""
759
-
760
- #. Document.properties.phoneMentioned.label
761
- #: followthemoney/schema/Document.yaml
762
- msgid "Phone numbers"
763
- msgstr ""
764
-
765
- #. Document.properties.emailMentioned.label
766
- #: followthemoney/schema/Document.yaml
767
- msgid "E-Mail addresses"
768
- msgstr ""
769
-
770
- #. PlainText.label
771
- #: followthemoney/schema/Document.yaml
772
- msgid "Text file"
773
- msgstr "Tekstualni fajl"
774
-
775
- #. PlainText.plural
776
- #: followthemoney/schema/Document.yaml
777
- msgid "Text files"
778
- msgstr "Tekstualni fajlovi"
779
-
780
- #. Pages.label
781
- #: followthemoney/schema/Document.yaml
782
- msgid "Document"
783
- msgstr "Dokument"
784
-
785
- #. Pages.plural
786
- #: followthemoney/schema/Document.yaml
787
- msgid "Documents"
788
- msgstr "Dokumenti"
789
-
790
1305
  #. Folder.label
791
- #: followthemoney/schema/Document.yaml
1306
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Folder.yaml
792
1307
  msgid "Folder"
793
1308
  msgstr "Folder"
794
1309
 
795
- #. Folder.plural
796
- #: followthemoney/schema/Document.yaml
797
- msgid "Folders"
798
- msgstr "Folderi"
799
-
800
- #. Package.label
1310
+ #. Document.properties.parent.reverse.label
801
1311
  #: followthemoney/schema/Document.yaml
802
- msgid "Package"
1312
+ msgid "Child documents"
803
1313
  msgstr ""
804
1314
 
805
- #. Package.plural
1315
+ #. Document.properties.ancestors.label
806
1316
  #: followthemoney/schema/Document.yaml
807
- msgid "Packages"
1317
+ msgid "Ancestors"
808
1318
  msgstr ""
809
1319
 
810
- #. Workbook.label
1320
+ #. Document.properties.ancestors.reverse.label
811
1321
  #: followthemoney/schema/Document.yaml
812
- msgid "Workbook"
1322
+ msgid "Descendants"
813
1323
  msgstr ""
814
1324
 
815
- #. Workbook.plural
1325
+ #. Document.properties.processingStatus.label
816
1326
  #: followthemoney/schema/Document.yaml
817
- msgid "Workbooks"
1327
+ msgid "Processing status"
818
1328
  msgstr ""
819
1329
 
820
- #. Image.label
821
- #: followthemoney/schema/Document.yaml
822
- msgid "Image"
823
- msgstr "Slika"
824
-
825
- #. Image.plural
826
- #: followthemoney/schema/Document.yaml
827
- msgid "Images"
828
- msgstr "Slike"
829
-
830
- #. Video.label
1330
+ #. Document.properties.processingError.label
831
1331
  #: followthemoney/schema/Document.yaml
832
- msgid "Video"
1332
+ msgid "Processing error"
833
1333
  msgstr ""
834
1334
 
835
- #. Video.plural
836
- #: followthemoney/schema/Document.yaml
837
- msgid "Videos"
1335
+ #. Documentation.label
1336
+ #: followthemoney/schema/Documentation.yml
1337
+ msgid "Documentation"
838
1338
  msgstr ""
839
1339
 
840
- #. Audio.label
841
- #: followthemoney/schema/Document.yaml
842
- msgid "Audio"
1340
+ #. Documentation.plural
1341
+ #: followthemoney/schema/Documentation.yml
1342
+ msgid "Documentations"
843
1343
  msgstr ""
844
1344
 
845
- #. Audio.plural
846
- #: followthemoney/schema/Document.yaml
847
- msgid "Audio files"
1345
+ #. Documentation.description
1346
+ #: followthemoney/schema/Documentation.yml
1347
+ msgid ""
1348
+ "Links some entity to a document, which might provide further detail or "
1349
+ "evidence regarding the entity.\n"
848
1350
  msgstr ""
849
1351
 
850
- #. HyperText.label
851
- #: followthemoney/schema/Document.yaml
852
- msgid "Web page"
853
- msgstr "Web stranica"
854
-
855
- #. HyperText.plural
856
- #: followthemoney/schema/Document.yaml
857
- msgid "Web pages"
858
- msgstr "Web stranice"
859
-
860
- #. Email.label
861
- #. LegalEntity.properties.email.label
862
- #: followthemoney/schema/Document.yaml followthemoney/schema/LegalEntity.yaml
863
- msgid "E-Mail"
864
- msgstr "Mail"
865
-
866
- #. Email.plural
867
- #: followthemoney/schema/Document.yaml
868
- msgid "E-Mails"
869
- msgstr "Mailovi"
870
-
871
- #. Email.properties.messageId.label
872
- #: followthemoney/schema/Document.yaml
873
- msgid "Message ID"
1352
+ #. Documentation.edge.label
1353
+ #: followthemoney/schema/Documentation.yml
1354
+ msgid "documents"
874
1355
  msgstr ""
875
1356
 
876
- #. Email.properties.messageId.description
877
- #: followthemoney/schema/Document.yaml
878
- msgid "Message ID of an email; unique in most cases"
879
- msgstr ""
1357
+ #. Documentation.properties.document.label
1358
+ #. Mention.properties.document.label
1359
+ #. Page.properties.document.label
1360
+ #. Pages.label
1361
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Mention.yaml
1362
+ #: followthemoney/schema/Page.yaml followthemoney/schema/Pages.yaml
1363
+ msgid "Document"
1364
+ msgstr "Dokument"
880
1365
 
881
- #. Email.properties.inReplyTo.label
882
- #: followthemoney/schema/Document.yaml
883
- msgid "In Reply To"
1366
+ #. Documentation.properties.document.reverse.label
1367
+ #: followthemoney/schema/Documentation.yml
1368
+ msgid "Related entities"
884
1369
  msgstr ""
885
1370
 
886
- #. Email.properties.inReplyTo.description
887
- #: followthemoney/schema/Document.yaml
888
- msgid "Message IDs of the preceding emails in the thread"
1371
+ #. Documentation.properties.entity.label
1372
+ #. Mention.properties.resolved.label
1373
+ #. Note.properties.entity.label
1374
+ #. Sanction.properties.entity.label
1375
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Mention.yaml
1376
+ #: followthemoney/schema/Note.yaml followthemoney/schema/Sanction.yaml
1377
+ #: followthemoney/types/entity.py:27
1378
+ msgid "Entity"
889
1379
  msgstr ""
890
1380
 
891
- #. Table.label
892
- #: followthemoney/schema/Document.yaml
893
- msgid "Table"
894
- msgstr "Tabela"
895
-
896
- #. Table.plural
897
- #: followthemoney/schema/Document.yaml
898
- msgid "Tables"
899
- msgstr "Tabele"
1381
+ #. Documentation.properties.entity.reverse.label
1382
+ #. Pages.plural
1383
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Pages.yaml
1384
+ msgid "Documents"
1385
+ msgstr "Dokumenti"
900
1386
 
901
1387
  #. EconomicActivity.label
902
1388
  #: followthemoney/schema/EconomicActivity.yaml
903
- msgid "Economic Activity"
1389
+ msgid "Customs declaration"
904
1390
  msgstr ""
905
1391
 
906
1392
  #. EconomicActivity.plural
1393
+ #. EconomicActivity.properties.declarant.reverse.label
1394
+ #. EconomicActivity.properties.bankAccount.reverse.label
1395
+ #. EconomicActivity.properties.transport.reverse.label
907
1396
  #: followthemoney/schema/EconomicActivity.yaml
908
- msgid "Economic Activities"
1397
+ msgid "Customs declarations"
909
1398
  msgstr ""
910
1399
 
911
1400
  #. EconomicActivity.description
912
1401
  #: followthemoney/schema/EconomicActivity.yaml
913
- msgid "An economic activity"
914
- msgstr ""
915
-
916
- #. EconomicActivity.properties.contract.label
917
- #: followthemoney/schema/EconomicActivity.yaml
918
- msgid "Associated contract"
1402
+ msgid "A foreign economic activity"
919
1403
  msgstr ""
920
1404
 
921
1405
  #. EconomicActivity.properties.contract.reverse.label
@@ -980,9 +1464,10 @@ msgid ""
980
1464
  msgstr ""
981
1465
 
982
1466
  #. EconomicActivity.properties.goodsDescription.label
1467
+ #. Interval.properties.description.label
983
1468
  #. Thing.properties.description.label
984
1469
  #: followthemoney/schema/EconomicActivity.yaml
985
- #: followthemoney/schema/Thing.yaml
1470
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
986
1471
  msgid "Description"
987
1472
  msgstr "Opis"
988
1473
 
@@ -1001,13 +1486,11 @@ msgstr ""
1001
1486
  msgid "Customs declarant"
1002
1487
  msgstr ""
1003
1488
 
1004
- #. EconomicActivity.properties.declarant.reverse.label
1005
- #: followthemoney/schema/EconomicActivity.yaml
1006
- msgid "Customs declarations"
1007
- msgstr ""
1008
-
1009
1489
  #. EconomicActivity.properties.sender.label
1490
+ #. Email.properties.sender.label
1491
+ #. Message.properties.sender.label
1010
1492
  #: followthemoney/schema/EconomicActivity.yaml
1493
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1011
1494
  msgid "Sender"
1012
1495
  msgstr "Pošiljalac"
1013
1496
 
@@ -1021,11 +1504,6 @@ msgstr ""
1021
1504
  msgid "Goods originated"
1022
1505
  msgstr ""
1023
1506
 
1024
- #. EconomicActivity.properties.receiver.label
1025
- #: followthemoney/schema/EconomicActivity.yaml
1026
- msgid "Receiver"
1027
- msgstr "Primalac"
1028
-
1029
1507
  #. EconomicActivity.properties.receiver.description
1030
1508
  #: followthemoney/schema/EconomicActivity.yaml
1031
1509
  msgid "Destination of the goods"
@@ -1048,7 +1526,7 @@ msgstr ""
1048
1526
 
1049
1527
  #. EconomicActivity.properties.contractHolder.reverse.label
1050
1528
  #: followthemoney/schema/EconomicActivity.yaml
1051
- msgid "Economic activities"
1529
+ msgid "Customs declarations facilitated"
1052
1530
  msgstr ""
1053
1531
 
1054
1532
  #. EconomicActivity.properties.invoiceAmount.label
@@ -1124,10 +1602,15 @@ msgstr "Zemlja podrijekla"
1124
1602
  msgid "Country of origin of goods"
1125
1603
  msgstr ""
1126
1604
 
1127
- #. EconomicActivity.properties.bankAccount.description
1605
+ #. EconomicActivity.properties.bankAccount.label
1128
1606
  #: followthemoney/schema/EconomicActivity.yaml
1129
- msgid "Bank account of the contract"
1130
- msgstr "Račun banke ugovora"
1607
+ msgid "Bank Account"
1608
+ msgstr "Bankovni račun"
1609
+
1610
+ #. EconomicActivity.properties.bankAccount.description
1611
+ #: followthemoney/schema/EconomicActivity.yaml
1612
+ msgid "Bank account of the contract"
1613
+ msgstr "Račun banke ugovora"
1131
1614
 
1132
1615
  #. EconomicActivity.properties.bankRub.label
1133
1616
  #: followthemoney/schema/EconomicActivity.yaml
@@ -1139,6 +1622,11 @@ msgstr ""
1139
1622
  msgid "Bank account for payments in roubles"
1140
1623
  msgstr ""
1141
1624
 
1625
+ #. EconomicActivity.properties.bankRub.reverse.label
1626
+ #: followthemoney/schema/EconomicActivity.yaml
1627
+ msgid "Customs declarations (as rouble bank)"
1628
+ msgstr ""
1629
+
1142
1630
  #. EconomicActivity.properties.bankForeign.label
1143
1631
  #: followthemoney/schema/EconomicActivity.yaml
1144
1632
  msgid "Foreign currency bank"
@@ -1149,6 +1637,11 @@ msgstr "Devizna banka"
1149
1637
  msgid "Bank account for payments in foreign currency"
1150
1638
  msgstr "Račun banke za plaćanja u stranoj valuti"
1151
1639
 
1640
+ #. EconomicActivity.properties.bankForeign.reverse.label
1641
+ #: followthemoney/schema/EconomicActivity.yaml
1642
+ msgid "Customs declarations (as foreign bank)"
1643
+ msgstr ""
1644
+
1152
1645
  #. EconomicActivity.properties.transport.label
1153
1646
  #: followthemoney/schema/EconomicActivity.yaml
1154
1647
  msgid "Transport"
@@ -1159,41 +1652,312 @@ msgstr ""
1159
1652
  msgid "Means of transportation"
1160
1653
  msgstr ""
1161
1654
 
1655
+ #. Email.label
1656
+ #. LegalEntity.properties.email.label
1657
+ #. UserAccount.properties.email.label
1658
+ #: followthemoney/schema/Email.yaml followthemoney/schema/LegalEntity.yaml
1659
+ #: followthemoney/schema/UserAccount.yaml
1660
+ msgid "E-Mail"
1661
+ msgstr "Mail"
1662
+
1663
+ #. Email.plural
1664
+ #: followthemoney/schema/Email.yaml
1665
+ msgid "E-Mails"
1666
+ msgstr "Mailovi"
1667
+
1668
+ #. Email.description
1669
+ #: followthemoney/schema/Email.yaml
1670
+ msgid ""
1671
+ "An internet mail message. The body can be formatted as plain text and/or "
1672
+ "HTML, and the message may have any number of attachments."
1673
+ msgstr ""
1674
+
1675
+ #. Email.properties.subject.label
1676
+ #. Message.properties.subject.label
1677
+ #. UnknownLink.properties.subject.label
1678
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1679
+ #: followthemoney/schema/UnknownLink.yaml
1680
+ msgid "Subject"
1681
+ msgstr "Predmet"
1682
+
1683
+ #. Email.properties.threadTopic.label
1684
+ #. Message.properties.threadTopic.label
1685
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1686
+ msgid "Thread topic"
1687
+ msgstr ""
1688
+
1689
+ #. Email.properties.from.label
1690
+ #: followthemoney/schema/Email.yaml
1691
+ msgid "From"
1692
+ msgstr ""
1693
+
1694
+ #. Email.properties.to.label
1695
+ #: followthemoney/schema/Email.yaml
1696
+ msgid "To"
1697
+ msgstr ""
1698
+
1699
+ #. Email.properties.cc.label
1700
+ #: followthemoney/schema/Email.yaml
1701
+ msgid "CC"
1702
+ msgstr ""
1703
+
1704
+ #. Email.properties.cc.description
1705
+ #: followthemoney/schema/Email.yaml
1706
+ msgid "Carbon copy"
1707
+ msgstr ""
1708
+
1709
+ #. Email.properties.bcc.label
1710
+ #: followthemoney/schema/Email.yaml
1711
+ msgid "BCC"
1712
+ msgstr ""
1713
+
1714
+ #. Email.properties.bcc.description
1715
+ #: followthemoney/schema/Email.yaml
1716
+ msgid "Blind carbon copy"
1717
+ msgstr ""
1718
+
1719
+ #. Email.properties.emitters.label
1720
+ #: followthemoney/schema/Email.yaml
1721
+ msgid "Emitter"
1722
+ msgstr ""
1723
+
1724
+ #. Email.properties.emitters.reverse.label
1725
+ #: followthemoney/schema/Email.yaml
1726
+ msgid "E-Mails sent"
1727
+ msgstr ""
1728
+
1729
+ #. Email.properties.recipients.label
1730
+ #. Message.properties.recipients.label
1731
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1732
+ msgid "Recipients"
1733
+ msgstr ""
1734
+
1735
+ #. Email.properties.recipients.reverse.label
1736
+ #: followthemoney/schema/Email.yaml
1737
+ msgid "E-Mails received"
1738
+ msgstr ""
1739
+
1740
+ #. Email.properties.inReplyTo.label
1741
+ #. Message.properties.inReplyTo.label
1742
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1743
+ msgid "In Reply To"
1744
+ msgstr ""
1745
+
1746
+ #. Email.properties.inReplyTo.description
1747
+ #: followthemoney/schema/Email.yaml
1748
+ msgid "Message ID of the preceding email in the thread"
1749
+ msgstr ""
1750
+
1751
+ #. Email.properties.inReplyToEmail.label
1752
+ #. Message.properties.inReplyToMessage.label
1753
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1754
+ msgid "Responding to"
1755
+ msgstr ""
1756
+
1757
+ #. Email.properties.inReplyToEmail.reverse.label
1758
+ #. Message.properties.inReplyToMessage.reverse.label
1759
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1760
+ msgid "Responses"
1761
+ msgstr ""
1762
+
1763
+ #. Email.properties.headers.label
1764
+ #: followthemoney/schema/Email.yaml
1765
+ msgid "Raw headers"
1766
+ msgstr ""
1767
+
1768
+ #. Employment.label
1769
+ #: followthemoney/schema/Employment.yaml
1770
+ msgid "Employment"
1771
+ msgstr ""
1772
+
1773
+ #. Employment.plural
1774
+ #: followthemoney/schema/Employment.yaml
1775
+ msgid "Employments"
1776
+ msgstr ""
1777
+
1778
+ #. Employment.edge.label
1779
+ #: followthemoney/schema/Employment.yaml
1780
+ msgid "works for"
1781
+ msgstr ""
1782
+
1783
+ #. Employment.properties.employer.label
1784
+ #: followthemoney/schema/Employment.yaml
1785
+ msgid "Employer"
1786
+ msgstr ""
1787
+
1788
+ #. Employment.properties.employer.reverse.label
1789
+ #: followthemoney/schema/Employment.yaml
1790
+ msgid "Employees"
1791
+ msgstr ""
1792
+
1793
+ #. Employment.properties.employee.label
1794
+ #: followthemoney/schema/Employment.yaml
1795
+ msgid "Employee"
1796
+ msgstr ""
1797
+
1798
+ #. Employment.properties.employee.reverse.label
1799
+ #: followthemoney/schema/Employment.yaml
1800
+ msgid "Employers"
1801
+ msgstr ""
1802
+
1162
1803
  #. Event.label
1163
1804
  #: followthemoney/schema/Event.yaml
1164
1805
  msgid "Event"
1165
1806
  msgstr "Događaj"
1166
1807
 
1808
+ #. Event.plural
1809
+ #. Event.properties.involved.reverse.label
1810
+ #: followthemoney/schema/Event.yaml
1811
+ msgid "Events"
1812
+ msgstr ""
1813
+
1167
1814
  #. Event.properties.location.label
1168
1815
  #: followthemoney/schema/Event.yaml
1169
1816
  msgid "Location"
1170
1817
  msgstr "Lokacija"
1171
1818
 
1819
+ #. Event.properties.important.label
1820
+ #: followthemoney/schema/Event.yaml
1821
+ msgid "Important"
1822
+ msgstr ""
1823
+
1824
+ #. Event.properties.organizer.label
1825
+ #: followthemoney/schema/Event.yaml
1826
+ msgid "Organizer"
1827
+ msgstr ""
1828
+
1829
+ #. Event.properties.organizer.reverse.label
1830
+ #: followthemoney/schema/Event.yaml
1831
+ msgid "Organized events"
1832
+ msgstr ""
1833
+
1834
+ #. Event.properties.involved.label
1835
+ #: followthemoney/schema/Event.yaml
1836
+ msgid "Involved"
1837
+ msgstr ""
1838
+
1172
1839
  #. Family.label
1173
- #: followthemoney/schema/Family.yml
1840
+ #: followthemoney/schema/Family.yaml
1174
1841
  msgid "Family"
1175
1842
  msgstr ""
1176
1843
 
1844
+ #. Family.plural
1845
+ #. Family.properties.person.reverse.label
1846
+ #: followthemoney/schema/Family.yaml
1847
+ msgid "Family members"
1848
+ msgstr ""
1849
+
1177
1850
  #. Family.description
1178
- #: followthemoney/schema/Family.yml
1851
+ #: followthemoney/schema/Family.yaml
1179
1852
  msgid "Family relationship between two people"
1180
1853
  msgstr ""
1181
1854
 
1855
+ #. Family.edge.label
1856
+ #: followthemoney/schema/Family.yaml
1857
+ msgid "related to"
1858
+ msgstr ""
1859
+
1860
+ #. Family.properties.person.description
1861
+ #: followthemoney/schema/Family.yaml
1862
+ msgid "The subject of the familial relation."
1863
+ msgstr ""
1864
+
1182
1865
  #. Family.properties.relative.label
1183
- #: followthemoney/schema/Family.yml
1866
+ #: followthemoney/schema/Family.yaml
1184
1867
  msgid "Relative"
1185
1868
  msgstr ""
1186
1869
 
1187
1870
  #. Family.properties.relative.reverse.label
1188
- #: followthemoney/schema/Family.yml
1871
+ #: followthemoney/schema/Family.yaml
1189
1872
  msgid "Relatives"
1190
1873
  msgstr ""
1191
1874
 
1192
1875
  #. Family.properties.relative.description
1193
- #: followthemoney/schema/Family.yml
1876
+ #: followthemoney/schema/Family.yaml
1194
1877
  msgid "The relative of the subject person."
1195
1878
  msgstr ""
1196
1879
 
1880
+ #. Family.properties.relationship.description
1881
+ #: followthemoney/schema/Family.yaml
1882
+ msgid ""
1883
+ "Nature of the relationship, from the person's perspective eg. 'mother', "
1884
+ "where 'relative' is mother of 'person'."
1885
+ msgstr ""
1886
+
1887
+ #. Folder.plural
1888
+ #: followthemoney/schema/Folder.yaml
1889
+ msgid "Folders"
1890
+ msgstr "Folderi"
1891
+
1892
+ #. HyperText.label
1893
+ #: followthemoney/schema/HyperText.yaml
1894
+ msgid "Web page"
1895
+ msgstr "Web stranica"
1896
+
1897
+ #. HyperText.plural
1898
+ #: followthemoney/schema/HyperText.yaml
1899
+ msgid "Web pages"
1900
+ msgstr "Web stranice"
1901
+
1902
+ #. HyperText.properties.bodyHtml.label
1903
+ #: followthemoney/schema/HyperText.yaml followthemoney/types/string.py:38
1904
+ msgid "HTML"
1905
+ msgstr ""
1906
+
1907
+ #. Identification.label
1908
+ #: followthemoney/schema/Identification.yaml
1909
+ msgid "Identification"
1910
+ msgstr ""
1911
+
1912
+ #. Identification.plural
1913
+ #. Identification.properties.holder.reverse.label
1914
+ #: followthemoney/schema/Identification.yaml
1915
+ msgid "Identifications"
1916
+ msgstr ""
1917
+
1918
+ #. Identification.description
1919
+ #: followthemoney/schema/Identification.yaml
1920
+ msgid ""
1921
+ "An form of identification associated with its holder and some issuing "
1922
+ "country. This can be used for national ID cards, voter enrollments and "
1923
+ "similar instruments.\n"
1924
+ msgstr ""
1925
+
1926
+ #. Identification.properties.holder.label
1927
+ #: followthemoney/schema/Identification.yaml
1928
+ msgid "Identification holder"
1929
+ msgstr ""
1930
+
1931
+ #. Identification.properties.number.label
1932
+ #. Passport.properties.passportNumber.label
1933
+ #. Person.properties.passportNumber.label
1934
+ #: followthemoney/schema/Identification.yaml
1935
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
1936
+ msgid "Passport number"
1937
+ msgstr ""
1938
+
1939
+ #. Identification.properties.authority.label
1940
+ #. Sanction.properties.authority.label
1941
+ #: followthemoney/schema/Identification.yaml
1942
+ #: followthemoney/schema/Sanction.yaml
1943
+ msgid "Authority"
1944
+ msgstr ""
1945
+
1946
+ #. Image.label
1947
+ #: followthemoney/schema/Image.yaml
1948
+ msgid "Image"
1949
+ msgstr "Slika"
1950
+
1951
+ #. Image.plural
1952
+ #: followthemoney/schema/Image.yaml
1953
+ msgid "Images"
1954
+ msgstr "Slike"
1955
+
1956
+ #. Image.description
1957
+ #: followthemoney/schema/Image.yaml
1958
+ msgid "An image file.\n"
1959
+ msgstr ""
1960
+
1197
1961
  #. Interest.label
1198
1962
  #: followthemoney/schema/Interest.yaml
1199
1963
  msgid "Interest"
@@ -1209,6 +1973,11 @@ msgstr "Uloga"
1209
1973
  msgid "Interval"
1210
1974
  msgstr "Interval"
1211
1975
 
1976
+ #. Interval.description
1977
+ #: followthemoney/schema/Interval.yaml
1978
+ msgid "An object which is bounded in time.\n"
1979
+ msgstr ""
1980
+
1212
1981
  #. Interval.properties.startDate.label
1213
1982
  #: followthemoney/schema/Interval.yaml
1214
1983
  msgid "Start date"
@@ -1231,19 +2000,48 @@ msgid "Record ID"
1231
2000
  msgstr "ID zapisa"
1232
2001
 
1233
2002
  #. Interval.properties.sourceUrl.label
1234
- #: followthemoney/schema/Interval.yaml
1235
- msgid "Source URL"
1236
- msgstr "URL izvora"
2003
+ #. Thing.properties.sourceUrl.label
2004
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2005
+ msgid "Source link"
2006
+ msgstr ""
2007
+
2008
+ #. Interval.properties.publisher.label
2009
+ #. Thing.properties.publisher.label
2010
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2011
+ msgid "Publishing source"
2012
+ msgstr ""
1237
2013
 
1238
- #. Land.label
1239
- #: followthemoney/schema/Land.yml
1240
- msgid "Land"
1241
- msgstr "Zemljište"
2014
+ #. Interval.properties.publisherUrl.label
2015
+ #. Thing.properties.publisherUrl.label
2016
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2017
+ msgid "Publishing source URL"
2018
+ msgstr ""
2019
+
2020
+ #. Interval.properties.alephUrl.label
2021
+ #. Thing.properties.alephUrl.label
2022
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2023
+ msgid "Aleph URL"
2024
+ msgstr ""
2025
+
2026
+ #. Interval.properties.indexText.label
2027
+ #. Page.properties.indexText.label
2028
+ #. Thing.properties.indexText.label
2029
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Page.yaml
2030
+ #: followthemoney/schema/Thing.yaml
2031
+ msgid "Index text"
2032
+ msgstr ""
2033
+
2034
+ #. Interval.properties.modifiedAt.label
2035
+ #. Thing.properties.modifiedAt.label
2036
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2037
+ msgid "Modified on"
2038
+ msgstr ""
1242
2039
 
1243
- #. Land.plural
1244
- #: followthemoney/schema/Land.yml
1245
- msgid "Lands"
1246
- msgstr "Zemljišta"
2040
+ #. Interval.properties.retrievedAt.label
2041
+ #. Thing.properties.retrievedAt.label
2042
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2043
+ msgid "Retrieved on"
2044
+ msgstr ""
1247
2045
 
1248
2046
  #. LegalEntity.label
1249
2047
  #: followthemoney/schema/LegalEntity.yaml
@@ -1257,8 +2055,11 @@ msgstr "Legalni entiteti"
1257
2055
 
1258
2056
  #. LegalEntity.description
1259
2057
  #: followthemoney/schema/LegalEntity.yaml
1260
- msgid "A legal entity may be a person or a company."
1261
- msgstr "Legalni entitet može biti osoba ili kompanija."
2058
+ msgid ""
2059
+ "Any party to legal proceedings, such as asset ownership, corporate "
2060
+ "governance or social interactions. Often used when raw data does not specify"
2061
+ " if something is a person or company.\n"
2062
+ msgstr ""
1262
2063
 
1263
2064
  #. LegalEntity.properties.email.description
1264
2065
  #: followthemoney/schema/LegalEntity.yaml
@@ -1271,7 +2072,7 @@ msgid "Phone"
1271
2072
  msgstr "Telefon"
1272
2073
 
1273
2074
  #. LegalEntity.properties.phone.description
1274
- #: followthemoney/schema/LegalEntity.yaml
2075
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/types/phone.py:35
1275
2076
  msgid "Phone number"
1276
2077
  msgstr "Broj telefona"
1277
2078
 
@@ -1320,11 +2121,6 @@ msgstr "Status poreza"
1320
2121
  msgid "Sector"
1321
2122
  msgstr "Sektor"
1322
2123
 
1323
- #. LegalEntity.properties.classification.label
1324
- #: followthemoney/schema/LegalEntity.yaml
1325
- msgid "Classification"
1326
- msgstr "Klasifikacija"
1327
-
1328
2124
  #. LegalEntity.properties.registrationNumber.description
1329
2125
  #: followthemoney/schema/LegalEntity.yaml
1330
2126
  msgid "Company registration number"
@@ -1342,13 +2138,23 @@ msgstr ""
1342
2138
 
1343
2139
  #. LegalEntity.properties.taxNumber.label
1344
2140
  #: followthemoney/schema/LegalEntity.yaml
1345
- msgid "Tax ID Number"
1346
- msgstr "ID Broj Poreza"
2141
+ msgid "Tax Number"
2142
+ msgstr ""
1347
2143
 
1348
2144
  #. LegalEntity.properties.taxNumber.description
1349
2145
  #: followthemoney/schema/LegalEntity.yaml
1350
- msgid "Tax ID number"
1351
- msgstr "ID broj poreza"
2146
+ msgid "Tax identification number"
2147
+ msgstr ""
2148
+
2149
+ #. LegalEntity.properties.vatCode.label
2150
+ #: followthemoney/schema/LegalEntity.yaml
2151
+ msgid "V.A.T. Identifier"
2152
+ msgstr ""
2153
+
2154
+ #. LegalEntity.properties.vatCode.description
2155
+ #: followthemoney/schema/LegalEntity.yaml
2156
+ msgid "(EU) VAT number"
2157
+ msgstr "(EU) VAT broj"
1352
2158
 
1353
2159
  #. LegalEntity.properties.jurisdiction.description
1354
2160
  #: followthemoney/schema/LegalEntity.yaml
@@ -1400,6 +2206,26 @@ msgstr "INN"
1400
2206
  msgid "Russian company ID"
1401
2207
  msgstr "ID ruske kompanije"
1402
2208
 
2209
+ #. LegalEntity.properties.dunsCode.label
2210
+ #: followthemoney/schema/LegalEntity.yaml
2211
+ msgid "D-U-N-S"
2212
+ msgstr ""
2213
+
2214
+ #. LegalEntity.properties.dunsCode.description
2215
+ #: followthemoney/schema/LegalEntity.yaml
2216
+ msgid "Dun & Bradstreet identifier"
2217
+ msgstr ""
2218
+
2219
+ #. LegalEntity.properties.swiftBic.label
2220
+ #: followthemoney/schema/LegalEntity.yaml
2221
+ msgid "SWIFT/BIC"
2222
+ msgstr ""
2223
+
2224
+ #. LegalEntity.properties.swiftBic.description
2225
+ #: followthemoney/schema/LegalEntity.yaml
2226
+ msgid "Bank identifier code"
2227
+ msgstr ""
2228
+
1403
2229
  #. LegalEntity.properties.parent.label
1404
2230
  #: followthemoney/schema/LegalEntity.yaml
1405
2231
  msgid "Parent company"
@@ -1412,30 +2238,24 @@ msgid ""
1412
2238
  "its parent"
1413
2239
  msgstr ""
1414
2240
 
1415
- #. LegalEntity.properties.subsidiaries.label
2241
+ #. LegalEntity.properties.parent.reverse.label
1416
2242
  #: followthemoney/schema/LegalEntity.yaml
1417
2243
  msgid "Subsidiaries"
1418
2244
  msgstr ""
1419
2245
 
1420
- #. LegalEntity.properties.passport.label
1421
- #. Passport.plural
1422
- #: followthemoney/schema/LegalEntity.yaml followthemoney/schema/Passport.yaml
1423
- msgid "Passports"
1424
- msgstr ""
1425
-
1426
2246
  #. License.label
1427
2247
  #: followthemoney/schema/License.yaml
1428
2248
  msgid "License"
1429
2249
  msgstr ""
1430
2250
 
1431
- #. License.description
2251
+ #. License.plural
1432
2252
  #: followthemoney/schema/License.yaml
1433
- msgid "A grant of land, rights or property. A type of Contract"
2253
+ msgid "Licenses"
1434
2254
  msgstr ""
1435
2255
 
1436
- #. License.plural
2256
+ #. License.description
1437
2257
  #: followthemoney/schema/License.yaml
1438
- msgid "Licenses"
2258
+ msgid "A grant of land, rights or property. A type of Contract"
1439
2259
  msgstr ""
1440
2260
 
1441
2261
  #. License.properties.area.label
@@ -1459,50 +2279,182 @@ msgstr ""
1459
2279
  msgid "Membership"
1460
2280
  msgstr "Članstvo"
1461
2281
 
1462
- #. Membership.properties.member.label
1463
- #: followthemoney/schema/Membership.yaml
1464
- msgid "Member"
1465
- msgstr "Član"
1466
-
2282
+ #. Membership.plural
1467
2283
  #. Membership.properties.member.reverse.label
1468
2284
  #: followthemoney/schema/Membership.yaml
1469
2285
  msgid "Memberships"
1470
2286
  msgstr "Članstvo"
1471
2287
 
2288
+ #. Membership.edge.label
2289
+ #: followthemoney/schema/Membership.yaml
2290
+ msgid "belongs to"
2291
+ msgstr ""
2292
+
2293
+ #. Membership.properties.member.label
2294
+ #: followthemoney/schema/Membership.yaml
2295
+ msgid "Member"
2296
+ msgstr "Član"
2297
+
1472
2298
  #. Membership.properties.organization.reverse.label
1473
2299
  #: followthemoney/schema/Membership.yaml
1474
2300
  msgid "Members"
1475
2301
  msgstr "Članovi"
1476
2302
 
1477
- #. Organization.plural
1478
- #: followthemoney/schema/Organization.yaml
1479
- msgid "Organizations"
1480
- msgstr "Organizacije"
1481
-
1482
- #. Ownership.label
1483
- #: followthemoney/schema/Ownership.yaml
1484
- msgid "Ownership"
1485
- msgstr "Vlasništvo"
1486
-
1487
- #. Ownership.properties.owner.label
1488
- #. Vehicle.properties.owner.label
1489
- #: followthemoney/schema/Ownership.yaml followthemoney/schema/Vehicle.yaml
1490
- msgid "Owner"
1491
- msgstr "Vlasnik"
2303
+ #. Mention.label
2304
+ #: followthemoney/schema/Mention.yaml
2305
+ msgid "Mention"
2306
+ msgstr ""
1492
2307
 
1493
- #. Ownership.properties.owner.reverse.label
1494
- #: followthemoney/schema/Ownership.yaml
1495
- msgid "Assets and shares"
2308
+ #. Mention.plural
2309
+ #: followthemoney/schema/Mention.yaml
2310
+ msgid "Mentions"
1496
2311
  msgstr ""
1497
2312
 
1498
- #. Ownership.properties.asset.reverse.label
1499
- #: followthemoney/schema/Ownership.yaml
1500
- msgid "Owners"
1501
- msgstr "Vlasnici"
2313
+ #. Mention.properties.document.reverse.label
2314
+ #: followthemoney/schema/Mention.yaml
2315
+ msgid "Extracted names"
2316
+ msgstr ""
1502
2317
 
1503
- #. Ownership.properties.percentage.label
1504
- #: followthemoney/schema/Ownership.yaml
1505
- msgid "Percentage held"
2318
+ #. Mention.properties.resolved.reverse.label
2319
+ #: followthemoney/schema/Mention.yaml
2320
+ msgid "Document mentions"
2321
+ msgstr ""
2322
+
2323
+ #. Mention.properties.name.label
2324
+ #. Thing.properties.name.label
2325
+ #: followthemoney/schema/Mention.yaml followthemoney/schema/Thing.yaml
2326
+ #: followthemoney/types/name.py:26
2327
+ msgid "Name"
2328
+ msgstr "Naziv"
2329
+
2330
+ #. Mention.properties.detectedSchema.label
2331
+ #: followthemoney/schema/Mention.yaml
2332
+ msgid "Detected entity type"
2333
+ msgstr ""
2334
+
2335
+ #. Mention.properties.contextCountry.label
2336
+ #: followthemoney/schema/Mention.yaml
2337
+ msgid "Co-occurring countries"
2338
+ msgstr ""
2339
+
2340
+ #. Mention.properties.contextPhone.label
2341
+ #: followthemoney/schema/Mention.yaml
2342
+ msgid "Co-occurring phone numbers"
2343
+ msgstr ""
2344
+
2345
+ #. Mention.properties.contextEmail.label
2346
+ #: followthemoney/schema/Mention.yaml
2347
+ msgid "Co-occurring e-mail addresses"
2348
+ msgstr ""
2349
+
2350
+ #. Message.label
2351
+ #: followthemoney/schema/Message.yaml
2352
+ msgid "Message"
2353
+ msgstr ""
2354
+
2355
+ #. Message.plural
2356
+ #: followthemoney/schema/Message.yaml
2357
+ msgid "Messages"
2358
+ msgstr ""
2359
+
2360
+ #. Message.properties.sender.reverse.label
2361
+ #. Message.properties.senderAccount.reverse.label
2362
+ #: followthemoney/schema/Message.yaml
2363
+ msgid "Messages sent"
2364
+ msgstr ""
2365
+
2366
+ #. Message.properties.senderAccount.label
2367
+ #: followthemoney/schema/Message.yaml
2368
+ msgid "Sender Account"
2369
+ msgstr ""
2370
+
2371
+ #. Message.properties.recipients.reverse.label
2372
+ #. Message.properties.recipientAccount.reverse.label
2373
+ #: followthemoney/schema/Message.yaml
2374
+ msgid "Messages received"
2375
+ msgstr ""
2376
+
2377
+ #. Message.properties.recipientAccount.label
2378
+ #: followthemoney/schema/Message.yaml
2379
+ msgid "Recipient Account"
2380
+ msgstr ""
2381
+
2382
+ #. Message.properties.inReplyTo.description
2383
+ #: followthemoney/schema/Message.yaml
2384
+ msgid "Message ID of the preceding message in the thread"
2385
+ msgstr ""
2386
+
2387
+ #. Message.properties.metadata.label
2388
+ #: followthemoney/schema/Message.yaml
2389
+ msgid "Metadata"
2390
+ msgstr ""
2391
+
2392
+ #. Note.label
2393
+ #: followthemoney/schema/Note.yaml
2394
+ msgid "Note"
2395
+ msgstr ""
2396
+
2397
+ #. Note.plural
2398
+ #. Note.properties.entity.reverse.label
2399
+ #. Thing.properties.notes.label
2400
+ #: followthemoney/schema/Note.yaml followthemoney/schema/Thing.yaml
2401
+ msgid "Notes"
2402
+ msgstr "Bilješke"
2403
+
2404
+ #. Note.description
2405
+ #: followthemoney/schema/Note.yaml
2406
+ msgid "An annotation that applies to a document or entity.\n"
2407
+ msgstr ""
2408
+
2409
+ #. Organization.plural
2410
+ #: followthemoney/schema/Organization.yaml
2411
+ msgid "Organizations"
2412
+ msgstr "Organizacije"
2413
+
2414
+ #. Organization.description
2415
+ #: followthemoney/schema/Organization.yaml
2416
+ msgid ""
2417
+ "Any type of incorporated entity that cannot be owned by another (see "
2418
+ "Company). This might include charities, foundations or state-owned "
2419
+ "enterprises, depending on their juristiction.\n"
2420
+ msgstr ""
2421
+
2422
+ #. Ownership.label
2423
+ #: followthemoney/schema/Ownership.yaml
2424
+ msgid "Ownership"
2425
+ msgstr "Vlasništvo"
2426
+
2427
+ #. Ownership.plural
2428
+ #: followthemoney/schema/Ownership.yaml
2429
+ msgid "Ownerships"
2430
+ msgstr ""
2431
+
2432
+ #. Ownership.edge.label
2433
+ #: followthemoney/schema/Ownership.yaml
2434
+ msgid "owns"
2435
+ msgstr ""
2436
+
2437
+ #. Ownership.properties.owner.label
2438
+ #. UserAccount.properties.owner.label
2439
+ #. Vehicle.properties.owner.label
2440
+ #: followthemoney/schema/Ownership.yaml followthemoney/schema/UserAccount.yaml
2441
+ #: followthemoney/schema/Vehicle.yaml
2442
+ msgid "Owner"
2443
+ msgstr "Vlasnik"
2444
+
2445
+ #. Ownership.properties.owner.reverse.label
2446
+ #: followthemoney/schema/Ownership.yaml
2447
+ msgid "Assets and shares"
2448
+ msgstr ""
2449
+
2450
+ #. Ownership.properties.asset.reverse.label
2451
+ #: followthemoney/schema/Ownership.yaml
2452
+ msgid "Owners"
2453
+ msgstr "Vlasnici"
2454
+
2455
+ #. Ownership.properties.percentage.label
2456
+ #: followthemoney/schema/Ownership.yaml
2457
+ msgid "Percentage held"
1506
2458
  msgstr ""
1507
2459
 
1508
2460
  #. Ownership.properties.sharesCount.label
@@ -1535,37 +2487,85 @@ msgstr ""
1535
2487
  msgid "Type of ownership"
1536
2488
  msgstr "Tip vlasništva"
1537
2489
 
2490
+ #. Package.label
2491
+ #: followthemoney/schema/Package.yaml
2492
+ msgid "Package"
2493
+ msgstr ""
2494
+
2495
+ #. Package.plural
2496
+ #: followthemoney/schema/Package.yaml
2497
+ msgid "Packages"
2498
+ msgstr ""
2499
+
2500
+ #. Package.description
2501
+ #: followthemoney/schema/Package.yaml
2502
+ msgid ""
2503
+ "A bundle of files that have been packaged together into some form of "
2504
+ "archive.\n"
2505
+ msgstr ""
2506
+
2507
+ #. Page.label
2508
+ #: followthemoney/schema/Page.yaml
2509
+ msgid "Page"
2510
+ msgstr ""
2511
+
2512
+ #. Page.plural
2513
+ #. Page.properties.document.reverse.label
2514
+ #: followthemoney/schema/Page.yaml
2515
+ msgid "Pages"
2516
+ msgstr ""
2517
+
2518
+ #. Page.properties.index.label
2519
+ #: followthemoney/schema/Page.yaml
2520
+ msgid "Index"
2521
+ msgstr ""
2522
+
2523
+ #. Pages.description
2524
+ #: followthemoney/schema/Pages.yaml
2525
+ msgid ""
2526
+ "A multi-page document, such as a PDF or Word file or slide-show "
2527
+ "presentation.\n"
2528
+ msgstr ""
2529
+
2530
+ #. Pages.properties.pdfHash.label
2531
+ #: followthemoney/schema/Pages.yaml
2532
+ msgid "PDF alternative version checksum"
2533
+ msgstr ""
2534
+
1538
2535
  #. Passport.label
1539
- #. Passport.description
1540
- #. Person.properties.passportNumber.label
1541
- #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2536
+ #: followthemoney/schema/Passport.yaml
1542
2537
  msgid "Passport"
1543
2538
  msgstr "Pasoš"
1544
2539
 
1545
- #. Passport.properties.holder.label
2540
+ #. Passport.plural
1546
2541
  #: followthemoney/schema/Passport.yaml
1547
- msgid "Document holder"
2542
+ msgid "Passports"
1548
2543
  msgstr ""
1549
2544
 
1550
- #. Passport.properties.passportNumber.label
2545
+ #. Passport.description
1551
2546
  #: followthemoney/schema/Passport.yaml
1552
- msgid "Passport number"
2547
+ msgid "An passport held by a person.\n"
1553
2548
  msgstr ""
1554
2549
 
1555
2550
  #. Passport.properties.surname.label
1556
- #: followthemoney/schema/Passport.yaml
2551
+ #. TaxRoll.properties.surname.label
2552
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
1557
2553
  msgid "Surname"
1558
2554
  msgstr ""
1559
2555
 
1560
2556
  #. Passport.properties.givenName.label
1561
- #: followthemoney/schema/Passport.yaml
2557
+ #. TaxRoll.properties.givenName.label
2558
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
1562
2559
  msgid "Given name"
1563
2560
  msgstr ""
1564
2561
 
1565
2562
  #. Passport.properties.birthDate.label
1566
- #: followthemoney/schema/Passport.yaml
1567
- msgid "Date of birth"
1568
- msgstr ""
2563
+ #. Person.properties.birthDate.label
2564
+ #. TaxRoll.properties.birthDate.label
2565
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2566
+ #: followthemoney/schema/TaxRoll.yaml
2567
+ msgid "Birth date"
2568
+ msgstr "Datum rođenja"
1569
2569
 
1570
2570
  #. Passport.properties.birthPlace.label
1571
2571
  #. Person.properties.birthPlace.label
@@ -1584,16 +2584,27 @@ msgstr "Spol"
1584
2584
  msgid "Personal number"
1585
2585
  msgstr ""
1586
2586
 
1587
- #. Passport.properties.authority.label
1588
- #: followthemoney/schema/Passport.yaml
1589
- msgid "Authority"
1590
- msgstr ""
1591
-
1592
2587
  #. Payment.label
1593
2588
  #: followthemoney/schema/Payment.yaml
1594
2589
  msgid "Payment"
1595
2590
  msgstr "Plaćanje"
1596
2591
 
2592
+ #. Payment.plural
2593
+ #. Payment.properties.project.reverse.label
2594
+ #: followthemoney/schema/Payment.yaml
2595
+ msgid "Payments"
2596
+ msgstr ""
2597
+
2598
+ #. Payment.description
2599
+ #: followthemoney/schema/Payment.yaml
2600
+ msgid "A monetary payment between two parties."
2601
+ msgstr ""
2602
+
2603
+ #. Payment.edge.label
2604
+ #: followthemoney/schema/Payment.yaml
2605
+ msgid "paid"
2606
+ msgstr ""
2607
+
1597
2608
  #. Payment.properties.sequenceNumber.label
1598
2609
  #: followthemoney/schema/Payment.yaml
1599
2610
  msgid "Sequence number"
@@ -1651,19 +2662,21 @@ msgstr "Dobijene uplate"
1651
2662
  msgid "Beneficiary bank account"
1652
2663
  msgstr "Bankovni račun korisnika"
1653
2664
 
1654
- #. Person.label
1655
- #. Relationship.properties.person.label
1656
- #. TaxRoll.properties.person.label
1657
- #: followthemoney/schema/Person.yaml followthemoney/schema/Relationship.yaml
1658
- #: followthemoney/schema/TaxRoll.yaml
1659
- msgid "Person"
1660
- msgstr "Osoba"
2665
+ #. Payment.properties.contract.reverse.label
2666
+ #: followthemoney/schema/Payment.yaml
2667
+ msgid "Contractual payments"
2668
+ msgstr ""
1661
2669
 
1662
2670
  #. Person.plural
1663
2671
  #: followthemoney/schema/Person.yaml
1664
2672
  msgid "People"
1665
2673
  msgstr "Ljudi"
1666
2674
 
2675
+ #. Person.description
2676
+ #: followthemoney/schema/Person.yaml
2677
+ msgid "A natural person, as opposed to a corporation of some type.\n"
2678
+ msgstr ""
2679
+
1667
2680
  #. Person.properties.firstName.label
1668
2681
  #: followthemoney/schema/Person.yaml
1669
2682
  msgid "First name"
@@ -1694,11 +2707,6 @@ msgstr "Ime majke"
1694
2707
  msgid "Last name"
1695
2708
  msgstr "Prezime"
1696
2709
 
1697
- #. Person.properties.birthDate.label
1698
- #: followthemoney/schema/Person.yaml
1699
- msgid "Birth date"
1700
- msgstr "Datum rođenja"
1701
-
1702
2710
  #. Person.properties.deathDate.label
1703
2711
  #: followthemoney/schema/Person.yaml
1704
2712
  msgid "Death date"
@@ -1714,6 +2722,95 @@ msgstr "Položaj"
1714
2722
  msgid "Nationality"
1715
2723
  msgstr "Nacionalnost"
1716
2724
 
2725
+ #. Person.properties.ethnicity.label
2726
+ #: followthemoney/schema/Person.yaml
2727
+ msgid "Ethnicity"
2728
+ msgstr ""
2729
+
2730
+ #. Person.properties.religion.label
2731
+ #: followthemoney/schema/Person.yaml followthemoney/types/topic.py:61
2732
+ msgid "Religion"
2733
+ msgstr ""
2734
+
2735
+ #. Person.properties.political.label
2736
+ #: followthemoney/schema/Person.yaml
2737
+ msgid "Political association"
2738
+ msgstr ""
2739
+
2740
+ #. Person.properties.education.label
2741
+ #: followthemoney/schema/Person.yaml
2742
+ msgid "Education"
2743
+ msgstr ""
2744
+
2745
+ #. PlainText.label
2746
+ #: followthemoney/schema/PlainText.yaml
2747
+ msgid "Text file"
2748
+ msgstr "Tekstualni fajl"
2749
+
2750
+ #. PlainText.plural
2751
+ #: followthemoney/schema/PlainText.yaml
2752
+ msgid "Text files"
2753
+ msgstr "Tekstualni fajlovi"
2754
+
2755
+ #. PlainText.description
2756
+ #: followthemoney/schema/PlainText.yaml
2757
+ msgid "Text files, like .txt or source code.\n"
2758
+ msgstr ""
2759
+
2760
+ #. Project.plural
2761
+ #. ProjectParticipant.properties.participant.reverse.label
2762
+ #: followthemoney/schema/Project.yaml
2763
+ #: followthemoney/schema/ProjectParticipant.yaml
2764
+ msgid "Projects"
2765
+ msgstr ""
2766
+
2767
+ #. Project.description
2768
+ #. ProjectParticipant.description
2769
+ #: followthemoney/schema/Project.yaml
2770
+ #: followthemoney/schema/ProjectParticipant.yaml
2771
+ msgid "An activity carried out by a group of participants.\n"
2772
+ msgstr ""
2773
+
2774
+ #. Project.properties.projectId.label
2775
+ #: followthemoney/schema/Project.yaml
2776
+ msgid "Project ID"
2777
+ msgstr ""
2778
+
2779
+ #. Project.properties.phase.label
2780
+ #: followthemoney/schema/Project.yaml
2781
+ msgid "Phase"
2782
+ msgstr ""
2783
+
2784
+ #. Project.properties.goal.label
2785
+ #: followthemoney/schema/Project.yaml
2786
+ msgid "Project goal"
2787
+ msgstr ""
2788
+
2789
+ #. ProjectParticipant.label
2790
+ #: followthemoney/schema/ProjectParticipant.yaml
2791
+ msgid "Project participant"
2792
+ msgstr ""
2793
+
2794
+ #. ProjectParticipant.plural
2795
+ #: followthemoney/schema/ProjectParticipant.yaml
2796
+ msgid "Project participants"
2797
+ msgstr ""
2798
+
2799
+ #. ProjectParticipant.edge.label
2800
+ #: followthemoney/schema/ProjectParticipant.yaml
2801
+ msgid "participates in"
2802
+ msgstr ""
2803
+
2804
+ #. ProjectParticipant.properties.project.reverse.label
2805
+ #: followthemoney/schema/ProjectParticipant.yaml
2806
+ msgid "Participants"
2807
+ msgstr ""
2808
+
2809
+ #. ProjectParticipant.properties.participant.label
2810
+ #: followthemoney/schema/ProjectParticipant.yaml
2811
+ msgid "Participant"
2812
+ msgstr ""
2813
+
1717
2814
  #. PublicBody.label
1718
2815
  #: followthemoney/schema/PublicBody.yaml
1719
2816
  msgid "Public body"
@@ -1724,6 +2821,11 @@ msgstr "Javno tijelo"
1724
2821
  msgid "Public bodies"
1725
2822
  msgstr "Javna tijela"
1726
2823
 
2824
+ #. PublicBody.description
2825
+ #: followthemoney/schema/PublicBody.yaml
2826
+ msgid "A public body, such as a ministry, department or state company.\n"
2827
+ msgstr ""
2828
+
1727
2829
  #. RealEstate.label
1728
2830
  #: followthemoney/schema/RealEstate.yaml
1729
2831
  msgid "Real estate"
@@ -1734,15 +2836,10 @@ msgstr "Nekretnina"
1734
2836
  msgid "Real estates"
1735
2837
  msgstr "Nekretnine"
1736
2838
 
1737
- #. RealEstate.properties.latitude.label
1738
- #: followthemoney/schema/RealEstate.yaml
1739
- msgid "Latitude"
1740
- msgstr "Širina"
1741
-
1742
- #. RealEstate.properties.longitude.label
2839
+ #. RealEstate.description
1743
2840
  #: followthemoney/schema/RealEstate.yaml
1744
- msgid "Longitude"
1745
- msgstr "Dužina"
2841
+ msgid "A piece of land or property."
2842
+ msgstr ""
1746
2843
 
1747
2844
  #. RealEstate.properties.censusBlock.label
1748
2845
  #: followthemoney/schema/RealEstate.yaml
@@ -1792,55 +2889,16 @@ msgstr ""
1792
2889
  msgid "Record date"
1793
2890
  msgstr "Datum zapisa"
1794
2891
 
1795
- #. Relationship.label
1796
- #. Relationship.properties.relationship.label
1797
- #: followthemoney/schema/Relationship.yaml
1798
- msgid "Relationship"
1799
- msgstr ""
1800
-
1801
- #. Relationship.description
1802
- #: followthemoney/schema/Relationship.yaml
1803
- msgid "Person-to-person relationship"
1804
- msgstr ""
1805
-
1806
- #. Relationship.properties.person.description
1807
- #: followthemoney/schema/Relationship.yaml
1808
- msgid "The subject of the familial relation."
1809
- msgstr ""
1810
-
1811
- #. Relationship.properties.person.reverse.label
1812
- #: followthemoney/schema/Relationship.yaml
1813
- msgid "Related to"
1814
- msgstr ""
1815
-
1816
- #. Relationship.properties.relationship.description
1817
- #: followthemoney/schema/Relationship.yaml
1818
- msgid ""
1819
- "Nature of the relationship, from the *person's* perspective eg. 'mother', "
1820
- "where 'relative' is mother of 'person'."
1821
- msgstr ""
1822
-
1823
- #. Relationship.properties.supportingDocumentType.label
1824
- #: followthemoney/schema/Relationship.yaml
1825
- msgid "Supporting document"
1826
- msgstr ""
1827
-
1828
- #. Relationship.properties.supportingDocumentType.description
1829
- #: followthemoney/schema/Relationship.yaml
1830
- msgid ""
1831
- "Eg. birth certificate, marriage license. This is *not* just the data source."
1832
- msgstr ""
1833
-
1834
- #. Relationship.properties.supportingDocumentNumber.label
1835
- #: followthemoney/schema/Relationship.yaml
1836
- msgid "Supporting document number"
1837
- msgstr ""
1838
-
1839
2892
  #. Representation.label
1840
2893
  #: followthemoney/schema/Representation.yaml
1841
2894
  msgid "Representation"
1842
2895
  msgstr "Prikaz"
1843
2896
 
2897
+ #. Representation.plural
2898
+ #: followthemoney/schema/Representation.yaml
2899
+ msgid "Representations"
2900
+ msgstr ""
2901
+
1844
2902
  #. Representation.description
1845
2903
  #: followthemoney/schema/Representation.yaml
1846
2904
  msgid ""
@@ -1848,6 +2906,11 @@ msgid ""
1848
2906
  "entity."
1849
2907
  msgstr ""
1850
2908
 
2909
+ #. Representation.edge.label
2910
+ #: followthemoney/schema/Representation.yaml
2911
+ msgid "represents"
2912
+ msgstr ""
2913
+
1851
2914
  #. Representation.properties.agent.label
1852
2915
  #: followthemoney/schema/Representation.yaml
1853
2916
  msgid "Agent"
@@ -1855,8 +2918,8 @@ msgstr "Zastupnik"
1855
2918
 
1856
2919
  #. Representation.properties.agent.reverse.label
1857
2920
  #: followthemoney/schema/Representation.yaml
1858
- msgid "Agency clients"
1859
- msgstr "Klijenti agencije"
2921
+ msgid "Clients"
2922
+ msgstr ""
1860
2923
 
1861
2924
  #. Representation.properties.client.label
1862
2925
  #: followthemoney/schema/Representation.yaml
@@ -1879,80 +2942,204 @@ msgstr "Sankcija"
1879
2942
  msgid "Sanctions"
1880
2943
  msgstr "Sankcije"
1881
2944
 
1882
- #. Sanction.properties.entity.label
2945
+ #. Sanction.description
1883
2946
  #: followthemoney/schema/Sanction.yaml
1884
- msgid "Sanctioned entity"
1885
- msgstr "Sankcionisani entitet"
2947
+ msgid "A sanction designation"
2948
+ msgstr ""
1886
2949
 
1887
- #. Sanction.properties.authority.label
2950
+ #. Sanction.properties.authorityId.label
1888
2951
  #: followthemoney/schema/Sanction.yaml
1889
- msgid "Sanctioning authority"
2952
+ msgid "Authority-issued identifier"
1890
2953
  msgstr ""
1891
2954
 
1892
- #. Sanction.properties.authority.reverse.label
2955
+ #. Sanction.properties.unscId.label
1893
2956
  #: followthemoney/schema/Sanction.yaml
1894
- msgid "Sanctioned entities"
2957
+ msgid "UN SC identifier"
1895
2958
  msgstr ""
1896
2959
 
1897
2960
  #. Sanction.properties.program.label
1898
- #: followthemoney/schema/Sanction.yaml
1899
- msgid "Sanctions program"
1900
- msgstr "Program sankcije"
2961
+ #. Thing.properties.program.label
2962
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Thing.yaml
2963
+ msgid "Program"
2964
+ msgstr "Program"
1901
2965
 
1902
- #. Sanction.properties.sanctionStatus.label
2966
+ #. Sanction.properties.provisions.label
1903
2967
  #: followthemoney/schema/Sanction.yaml
1904
- msgid "Sanction status"
1905
- msgstr "Status sankcije"
2968
+ msgid "Scope of sanctions"
2969
+ msgstr ""
1906
2970
 
1907
- #. Sanction.properties.sanctionDuration.label
2971
+ #. Sanction.properties.reason.label
1908
2972
  #: followthemoney/schema/Sanction.yaml
1909
- msgid "Sanction duration"
1910
- msgstr "Dužina sankcije"
2973
+ msgid "Reason"
2974
+ msgstr ""
1911
2975
 
1912
- #. Sanction.properties.sanctionReason.label
2976
+ #. Sanction.properties.listingDate.label
1913
2977
  #: followthemoney/schema/Sanction.yaml
1914
- msgid "Sanction reason"
1915
- msgstr "Razlog sankcije"
2978
+ msgid "Listing date"
2979
+ msgstr ""
1916
2980
 
1917
- #. Sanction.properties.sanctionOccurrence.label
1918
- #: followthemoney/schema/Sanction.yaml
1919
- msgid "Sanction occurrence"
2981
+ #. Security.label
2982
+ #: followthemoney/schema/Security.yaml
2983
+ msgid "Security"
1920
2984
  msgstr ""
1921
2985
 
1922
- #. TaxRoll.label
1923
- #: followthemoney/schema/TaxRoll.yaml
1924
- msgid "Tax Roll"
2986
+ #. Security.plural
2987
+ #: followthemoney/schema/Security.yaml
2988
+ msgid "Securities"
1925
2989
  msgstr ""
1926
2990
 
1927
- #. TaxRoll.plural
1928
- #: followthemoney/schema/TaxRoll.yaml
1929
- msgid "Tax Rolls"
2991
+ #. Security.description
2992
+ #: followthemoney/schema/Security.yaml
2993
+ msgid "A tradeable financial asset."
1930
2994
  msgstr ""
1931
2995
 
1932
- #. TaxRoll.properties.income.label
1933
- #: followthemoney/schema/TaxRoll.yaml
1934
- msgid "Registered income"
2996
+ #. Security.properties.isin.label
2997
+ #: followthemoney/schema/Security.yaml
2998
+ msgid "ISIN"
1935
2999
  msgstr ""
1936
3000
 
1937
- #. TaxRoll.properties.taxPaid.label
1938
- #: followthemoney/schema/TaxRoll.yaml
1939
- msgid "Amount of tax paid"
3001
+ #. Security.properties.isin.description
3002
+ #: followthemoney/schema/Security.yaml
3003
+ msgid "International Securities Identification Number"
1940
3004
  msgstr ""
1941
3005
 
1942
- #. TaxRoll.properties.wealth.label
1943
- #: followthemoney/schema/TaxRoll.yaml
1944
- msgid "Registered wealth"
3006
+ #. Security.properties.ticker.label
3007
+ #: followthemoney/schema/Security.yaml
3008
+ msgid "Ticker"
1945
3009
  msgstr ""
1946
3010
 
1947
- #. Thing.properties.sameAs.label
1948
- #: followthemoney/schema/Thing.yaml
1949
- msgid "Same as"
3011
+ #. Security.properties.issuer.label
3012
+ #: followthemoney/schema/Security.yaml
3013
+ msgid "Issuer"
1950
3014
  msgstr ""
1951
3015
 
1952
- #. Thing.properties.alias.label
1953
- #: followthemoney/schema/Thing.yaml
1954
- msgid "Other name"
1955
- msgstr "Drugo ime"
3016
+ #. Security.properties.issuer.reverse.label
3017
+ #: followthemoney/schema/Security.yaml
3018
+ msgid "Issued securities"
3019
+ msgstr ""
3020
+
3021
+ #. Security.properties.issueDate.label
3022
+ #: followthemoney/schema/Security.yaml
3023
+ msgid "Date issued"
3024
+ msgstr ""
3025
+
3026
+ #. Security.properties.collateral.label
3027
+ #: followthemoney/schema/Security.yaml
3028
+ msgid "Collateral"
3029
+ msgstr ""
3030
+
3031
+ #. Succession.label
3032
+ #: followthemoney/schema/Succession.yaml
3033
+ msgid "Succession"
3034
+ msgstr ""
3035
+
3036
+ #. Succession.plural
3037
+ #: followthemoney/schema/Succession.yaml
3038
+ msgid "Successions"
3039
+ msgstr ""
3040
+
3041
+ #. Succession.description
3042
+ #: followthemoney/schema/Succession.yaml
3043
+ msgid "Two entities that legally succeed each other."
3044
+ msgstr ""
3045
+
3046
+ #. Succession.edge.label
3047
+ #: followthemoney/schema/Succession.yaml
3048
+ msgid "preceeds"
3049
+ msgstr ""
3050
+
3051
+ #. Succession.properties.predecessor.label
3052
+ #: followthemoney/schema/Succession.yaml
3053
+ msgid "Predecessor"
3054
+ msgstr ""
3055
+
3056
+ #. Succession.properties.predecessor.reverse.label
3057
+ #: followthemoney/schema/Succession.yaml
3058
+ msgid "Successors"
3059
+ msgstr ""
3060
+
3061
+ #. Succession.properties.successor.label
3062
+ #: followthemoney/schema/Succession.yaml
3063
+ msgid "Successor"
3064
+ msgstr ""
3065
+
3066
+ #. Succession.properties.successor.reverse.label
3067
+ #: followthemoney/schema/Succession.yaml
3068
+ msgid "Predecessors"
3069
+ msgstr ""
3070
+
3071
+ #. Table.label
3072
+ #: followthemoney/schema/Table.yaml
3073
+ msgid "Table"
3074
+ msgstr "Tabela"
3075
+
3076
+ #. Table.plural
3077
+ #: followthemoney/schema/Table.yaml
3078
+ msgid "Tables"
3079
+ msgstr "Tabele"
3080
+
3081
+ #. Table.description
3082
+ #: followthemoney/schema/Table.yaml
3083
+ msgid ""
3084
+ "A document structured into rows and cells. This includes simple CSV files, "
3085
+ "spreadsheet sheets or database relations.\n"
3086
+ msgstr ""
3087
+
3088
+ #. Table.properties.columns.label
3089
+ #: followthemoney/schema/Table.yaml
3090
+ msgid "Column headings"
3091
+ msgstr ""
3092
+
3093
+ #. Table.properties.rowCount.label
3094
+ #: followthemoney/schema/Table.yaml
3095
+ msgid "Number of rows"
3096
+ msgstr ""
3097
+
3098
+ #. Table.properties.csvHash.label
3099
+ #: followthemoney/schema/Table.yaml
3100
+ msgid "CSV alternative version checksum"
3101
+ msgstr ""
3102
+
3103
+ #. TaxRoll.label
3104
+ #: followthemoney/schema/TaxRoll.yaml
3105
+ msgid "Tax roll"
3106
+ msgstr ""
3107
+
3108
+ #. TaxRoll.plural
3109
+ #. TaxRoll.properties.taxee.reverse.label
3110
+ #: followthemoney/schema/TaxRoll.yaml
3111
+ msgid "Tax rolls"
3112
+ msgstr ""
3113
+
3114
+ #. TaxRoll.description
3115
+ #: followthemoney/schema/TaxRoll.yaml
3116
+ msgid "A tax declaration of an individual"
3117
+ msgstr ""
3118
+
3119
+ #. TaxRoll.properties.taxee.label
3120
+ #: followthemoney/schema/TaxRoll.yaml
3121
+ msgid "Taxee"
3122
+ msgstr ""
3123
+
3124
+ #. TaxRoll.properties.income.label
3125
+ #: followthemoney/schema/TaxRoll.yaml
3126
+ msgid "Registered income"
3127
+ msgstr ""
3128
+
3129
+ #. TaxRoll.properties.taxPaid.label
3130
+ #: followthemoney/schema/TaxRoll.yaml
3131
+ msgid "Amount of tax paid"
3132
+ msgstr ""
3133
+
3134
+ #. TaxRoll.properties.wealth.label
3135
+ #: followthemoney/schema/TaxRoll.yaml
3136
+ msgid "Registered wealth"
3137
+ msgstr ""
3138
+
3139
+ #. Thing.properties.alias.label
3140
+ #: followthemoney/schema/Thing.yaml
3141
+ msgid "Other name"
3142
+ msgstr "Drugo ime"
1956
3143
 
1957
3144
  #. Thing.properties.previousName.label
1958
3145
  #: followthemoney/schema/Thing.yaml
@@ -1961,17 +3148,17 @@ msgstr "Prethodno ime"
1961
3148
 
1962
3149
  #. Thing.properties.weakAlias.label
1963
3150
  #: followthemoney/schema/Thing.yaml
1964
- msgid "Weak aliass"
3151
+ msgid "Weak alias"
1965
3152
  msgstr ""
1966
3153
 
1967
- #. Thing.properties.sourceUrl.label
3154
+ #. Thing.properties.wikipediaUrl.label
1968
3155
  #: followthemoney/schema/Thing.yaml
1969
- msgid "Source link"
3156
+ msgid "Wikipedia Article"
1970
3157
  msgstr ""
1971
3158
 
1972
- #. Thing.properties.alephUrl.label
3159
+ #. Thing.properties.wikidataId.label
1973
3160
  #: followthemoney/schema/Thing.yaml
1974
- msgid "Federated Aleph link"
3161
+ msgid "Wikidata ID"
1975
3162
  msgstr ""
1976
3163
 
1977
3164
  #. Thing.properties.keywords.label
@@ -1979,30 +3166,45 @@ msgstr ""
1979
3166
  msgid "Keywords"
1980
3167
  msgstr "Ključne riječi"
1981
3168
 
1982
- #. Thing.properties.address.label
3169
+ #. Thing.properties.topics.label
3170
+ #: followthemoney/schema/Thing.yaml followthemoney/types/topic.py:22
3171
+ msgid "Topics"
3172
+ msgstr ""
3173
+
3174
+ #. Thing.properties.addressEntity.reverse.label
1983
3175
  #: followthemoney/schema/Thing.yaml
1984
- msgid "Address"
1985
- msgstr "Adresa"
3176
+ msgid "Located there"
3177
+ msgstr ""
1986
3178
 
1987
- #. Thing.properties.program.label
3179
+ #. Thing.properties.proof.label
1988
3180
  #: followthemoney/schema/Thing.yaml
1989
- msgid "Program"
1990
- msgstr "Program"
3181
+ msgid "Source document"
3182
+ msgstr ""
1991
3183
 
1992
- #. Thing.properties.notes.label
3184
+ #. Thing.properties.proof.reverse.label
1993
3185
  #: followthemoney/schema/Thing.yaml
1994
- msgid "Notes"
1995
- msgstr "Bilješke"
3186
+ msgid "Derived entities"
3187
+ msgstr ""
3188
+
3189
+ #. Thing.properties.createdAt.label
3190
+ #: followthemoney/schema/Thing.yaml
3191
+ msgid "Created at"
3192
+ msgstr ""
1996
3193
 
1997
3194
  #. UnknownLink.label
1998
3195
  #: followthemoney/schema/UnknownLink.yaml
1999
- msgid "Link"
2000
- msgstr "Link"
3196
+ msgid "Other link"
3197
+ msgstr ""
2001
3198
 
2002
- #. UnknownLink.properties.subject.label
3199
+ #. UnknownLink.plural
2003
3200
  #: followthemoney/schema/UnknownLink.yaml
2004
- msgid "Subject"
2005
- msgstr "Predmet"
3201
+ msgid "Other links"
3202
+ msgstr ""
3203
+
3204
+ #. UnknownLink.edge.label
3205
+ #: followthemoney/schema/UnknownLink.yaml
3206
+ msgid "linked to"
3207
+ msgstr ""
2006
3208
 
2007
3209
  #. UnknownLink.properties.subject.reverse.label
2008
3210
  #: followthemoney/schema/UnknownLink.yaml
@@ -2019,11 +3221,47 @@ msgstr "Objekat"
2019
3221
  msgid "Linked from"
2020
3222
  msgstr ""
2021
3223
 
3224
+ #. UserAccount.label
3225
+ #: followthemoney/schema/UserAccount.yaml
3226
+ msgid "User account"
3227
+ msgstr ""
3228
+
3229
+ #. UserAccount.plural
3230
+ #. UserAccount.properties.owner.reverse.label
3231
+ #: followthemoney/schema/UserAccount.yaml
3232
+ msgid "User accounts"
3233
+ msgstr ""
3234
+
3235
+ #. UserAccount.properties.service.label
3236
+ #: followthemoney/schema/UserAccount.yaml
3237
+ msgid "Service"
3238
+ msgstr ""
3239
+
3240
+ #. UserAccount.properties.number.label
3241
+ #: followthemoney/schema/UserAccount.yaml
3242
+ msgid "Phone Number"
3243
+ msgstr ""
3244
+
3245
+ #. UserAccount.properties.username.label
3246
+ #: followthemoney/schema/UserAccount.yaml
3247
+ msgid "Username"
3248
+ msgstr ""
3249
+
3250
+ #. UserAccount.properties.password.label
3251
+ #: followthemoney/schema/UserAccount.yaml
3252
+ msgid "Password"
3253
+ msgstr ""
3254
+
2022
3255
  #. Value.label
2023
3256
  #: followthemoney/schema/Value.yaml
2024
3257
  msgid "Value"
2025
3258
  msgstr "Vrijednost"
2026
3259
 
3260
+ #. Value.plural
3261
+ #: followthemoney/schema/Value.yaml
3262
+ msgid "Values"
3263
+ msgstr ""
3264
+
2027
3265
  #. Value.properties.amount.label
2028
3266
  #: followthemoney/schema/Value.yaml
2029
3267
  msgid "Amount"
@@ -2054,14 +3292,14 @@ msgstr ""
2054
3292
  msgid "Vehicles"
2055
3293
  msgstr ""
2056
3294
 
2057
- #. Vehicle.properties.registrationNumber.label
3295
+ #. Vehicle.properties.model.label
2058
3296
  #: followthemoney/schema/Vehicle.yaml
2059
- msgid "Registration Number"
3297
+ msgid "Model"
2060
3298
  msgstr ""
2061
3299
 
2062
- #. Vehicle.properties.model.label
3300
+ #. Vehicle.properties.owner.reverse.label
2063
3301
  #: followthemoney/schema/Vehicle.yaml
2064
- msgid "Model"
3302
+ msgid "Vehicles owned"
2065
3303
  msgstr ""
2066
3304
 
2067
3305
  #. Vehicle.properties.operator.label
@@ -2069,6 +3307,11 @@ msgstr ""
2069
3307
  msgid "Operator"
2070
3308
  msgstr ""
2071
3309
 
3310
+ #. Vehicle.properties.operator.reverse.label
3311
+ #: followthemoney/schema/Vehicle.yaml
3312
+ msgid "Vehicles operated"
3313
+ msgstr ""
3314
+
2072
3315
  #. Vehicle.properties.buildDate.label
2073
3316
  #: followthemoney/schema/Vehicle.yaml
2074
3317
  msgid "Build Date"
@@ -2089,6 +3332,11 @@ msgstr ""
2089
3332
  msgid "Vessels"
2090
3333
  msgstr ""
2091
3334
 
3335
+ #. Vessel.description
3336
+ #: followthemoney/schema/Vessel.yaml
3337
+ msgid "A boat or ship. Typically flying some sort of national flag.\n"
3338
+ msgstr ""
3339
+
2092
3340
  #. Vessel.properties.imoNumber.label
2093
3341
  #: followthemoney/schema/Vessel.yaml
2094
3342
  msgid "IMO Number"
@@ -2134,11 +3382,6 @@ msgstr "Datum promjene imena"
2134
3382
  msgid "Call Sign"
2135
3383
  msgstr ""
2136
3384
 
2137
- #. Vessel.properties.pastNames.label
2138
- #: followthemoney/schema/Vessel.yaml
2139
- msgid "Past Names"
2140
- msgstr "Prošla imena"
2141
-
2142
3385
  #. Vessel.properties.pastFlags.label
2143
3386
  #: followthemoney/schema/Vessel.yaml
2144
3387
  msgid "Past Flags"
@@ -2154,50 +3397,395 @@ msgstr "Prošli tipovi"
2154
3397
  msgid "MMSI"
2155
3398
  msgstr ""
2156
3399
 
2157
- #: followthemoney/types/country.py:24
3400
+ #. Video.label
3401
+ #: followthemoney/schema/Video.yaml
3402
+ msgid "Video"
3403
+ msgstr ""
3404
+
3405
+ #. Video.plural
3406
+ #: followthemoney/schema/Video.yaml
3407
+ msgid "Videos"
3408
+ msgstr ""
3409
+
3410
+ #. Video.properties.duration.description
3411
+ #: followthemoney/schema/Video.yaml
3412
+ msgid "Duration of the video in ms"
3413
+ msgstr ""
3414
+
3415
+ #. Workbook.label
3416
+ #: followthemoney/schema/Workbook.yaml
3417
+ msgid "Workbook"
3418
+ msgstr ""
3419
+
3420
+ #. Workbook.plural
3421
+ #: followthemoney/schema/Workbook.yaml
3422
+ msgid "Workbooks"
3423
+ msgstr ""
3424
+
3425
+ #. Workbook.description
3426
+ #: followthemoney/schema/Workbook.yaml
3427
+ msgid ""
3428
+ "A spreadsheet document, for example from Excel. Each spreadsheet contains a "
3429
+ "set of sheets that hold actual data.\n"
3430
+ msgstr ""
3431
+
3432
+ #: followthemoney/types/checksum.py:19
3433
+ msgid "Checksums"
3434
+ msgstr ""
3435
+
3436
+ #: followthemoney/types/country.py:22
3437
+ msgid "Countries"
3438
+ msgstr ""
3439
+
3440
+ #: followthemoney/types/country.py:28
2158
3441
  msgid "Global"
2159
3442
  msgstr ""
2160
3443
 
2161
- #: followthemoney/types/country.py:25
3444
+ #: followthemoney/types/country.py:29
2162
3445
  msgid "European Union"
3446
+ msgstr "Evropska unija"
3447
+
3448
+ #: followthemoney/types/country.py:30
3449
+ msgid "Zaire"
2163
3450
  msgstr ""
2164
3451
 
2165
- #: followthemoney/types/country.py:26
3452
+ #: followthemoney/types/country.py:32
3453
+ msgid "Czech Republic"
3454
+ msgstr ""
3455
+
3456
+ #: followthemoney/types/country.py:33
2166
3457
  msgid "Kosovo"
2167
3458
  msgstr ""
2168
3459
 
2169
- #: followthemoney/types/country.py:27
3460
+ #: followthemoney/types/country.py:34
3461
+ msgid "East Germany"
3462
+ msgstr ""
3463
+
3464
+ #: followthemoney/types/country.py:35
2170
3465
  msgid "Yugoslavia"
2171
3466
  msgstr ""
2172
3467
 
2173
- #: followthemoney/types/country.py:28
3468
+ #: followthemoney/types/country.py:36
2174
3469
  msgid "Serbia and Montenegro"
2175
3470
  msgstr ""
2176
3471
 
2177
- #: followthemoney/types/country.py:29
3472
+ #: followthemoney/types/country.py:37
3473
+ msgid "Czechoslovakia"
3474
+ msgstr ""
3475
+
3476
+ #: followthemoney/types/country.py:38
2178
3477
  msgid "Soviet Union"
2179
3478
  msgstr ""
2180
3479
 
2181
- #: followthemoney/types/country.py:30
3480
+ #: followthemoney/types/country.py:39
2182
3481
  msgid "Abkhazia"
2183
3482
  msgstr ""
2184
3483
 
2185
- #: followthemoney/types/country.py:31
3484
+ #: followthemoney/types/country.py:40
2186
3485
  msgid "South Ossetia"
2187
3486
  msgstr ""
2188
3487
 
2189
- #: followthemoney/types/country.py:32
3488
+ #: followthemoney/types/country.py:41
3489
+ msgid "Luhansk (Ukraine)"
3490
+ msgstr ""
3491
+
3492
+ #: followthemoney/types/country.py:42
3493
+ msgid "Donetsk (Ukraine)"
3494
+ msgstr ""
3495
+
3496
+ #: followthemoney/types/country.py:43
3497
+ msgid "Crimea (Ukraine)"
3498
+ msgstr ""
3499
+
3500
+ #: followthemoney/types/country.py:44
2190
3501
  msgid "Somaliland"
2191
3502
  msgstr ""
2192
3503
 
2193
- #: followthemoney/types/country.py:33
3504
+ #: followthemoney/types/country.py:45
3505
+ msgid "Northern Cyprus"
3506
+ msgstr ""
3507
+
3508
+ #: followthemoney/types/country.py:46
3509
+ msgid "Nagorno-Karabakh"
3510
+ msgstr ""
3511
+
3512
+ #: followthemoney/types/country.py:47
3513
+ msgid "Tibet"
3514
+ msgstr ""
3515
+
3516
+ #: followthemoney/types/country.py:48
3517
+ msgid "Sark"
3518
+ msgstr ""
3519
+
3520
+ #: followthemoney/types/country.py:49
2194
3521
  msgid "Wales"
2195
3522
  msgstr ""
2196
3523
 
2197
- #: followthemoney/types/country.py:34
3524
+ #: followthemoney/types/country.py:50
2198
3525
  msgid "Scotland"
2199
3526
  msgstr ""
2200
3527
 
2201
- #: followthemoney/types/country.py:35
3528
+ #: followthemoney/types/country.py:51
3529
+ msgid "Northern Ireland"
3530
+ msgstr ""
3531
+
3532
+ #: followthemoney/types/country.py:52
2202
3533
  msgid "Transnistria"
2203
3534
  msgstr ""
3535
+
3536
+ #: followthemoney/types/date.py:27
3537
+ msgid "Dates"
3538
+ msgstr ""
3539
+
3540
+ #: followthemoney/types/email.py:25
3541
+ msgid "E-Mail Address"
3542
+ msgstr ""
3543
+
3544
+ #: followthemoney/types/email.py:26
3545
+ msgid "E-Mail Addresses"
3546
+ msgstr ""
3547
+
3548
+ #: followthemoney/types/entity.py:28
3549
+ msgid "Entities"
3550
+ msgstr ""
3551
+
3552
+ #: followthemoney/types/entity.py:61
3553
+ #, python-format
3554
+ msgid "Self-relationship (%s): %s"
3555
+ msgstr ""
3556
+
3557
+ #: followthemoney/types/iban.py:25
3558
+ msgid "IBANs"
3559
+ msgstr ""
3560
+
3561
+ #: followthemoney/types/identifier.py:21
3562
+ msgid "Identifier"
3563
+ msgstr ""
3564
+
3565
+ #: followthemoney/types/identifier.py:22
3566
+ msgid "Identifiers"
3567
+ msgstr ""
3568
+
3569
+ #: followthemoney/types/ip.py:19
3570
+ msgid "IP-Address"
3571
+ msgstr ""
3572
+
3573
+ #: followthemoney/types/ip.py:20
3574
+ msgid "IP-Addresses"
3575
+ msgstr ""
3576
+
3577
+ #: followthemoney/types/json.py:19 followthemoney/types/json.py:20
3578
+ msgid "Nested data"
3579
+ msgstr ""
3580
+
3581
+ #: followthemoney/types/language.py:23
3582
+ msgid "Languages"
3583
+ msgstr ""
3584
+
3585
+ #: followthemoney/types/mimetype.py:24
3586
+ msgid "MIME-Type"
3587
+ msgstr ""
3588
+
3589
+ #: followthemoney/types/mimetype.py:25
3590
+ msgid "MIME-Types"
3591
+ msgstr ""
3592
+
3593
+ #: followthemoney/types/name.py:27
3594
+ msgid "Names"
3595
+ msgstr ""
3596
+
3597
+ #: followthemoney/types/number.py:18
3598
+ msgid "Number"
3599
+ msgstr ""
3600
+
3601
+ #: followthemoney/types/number.py:19
3602
+ msgid "Numbers"
3603
+ msgstr ""
3604
+
3605
+ #: followthemoney/types/phone.py:36
3606
+ msgid "Phone numbers"
3607
+ msgstr "Brojeve telefona"
3608
+
3609
+ #: followthemoney/types/string.py:10
3610
+ msgid "Label"
3611
+ msgstr ""
3612
+
3613
+ #: followthemoney/types/string.py:11
3614
+ msgid "Labels"
3615
+ msgstr ""
3616
+
3617
+ #: followthemoney/types/string.py:25
3618
+ msgid "Texts"
3619
+ msgstr ""
3620
+
3621
+ #: followthemoney/types/string.py:39
3622
+ msgid "HTMLs"
3623
+ msgstr ""
3624
+
3625
+ #: followthemoney/types/topic.py:21
3626
+ msgid "Topic"
3627
+ msgstr ""
3628
+
3629
+ #: followthemoney/types/topic.py:26
3630
+ msgid "Crime"
3631
+ msgstr ""
3632
+
3633
+ #: followthemoney/types/topic.py:27
3634
+ msgid "Fraud"
3635
+ msgstr ""
3636
+
3637
+ #: followthemoney/types/topic.py:28
3638
+ msgid "Cybercrime"
3639
+ msgstr ""
3640
+
3641
+ #: followthemoney/types/topic.py:29
3642
+ msgid "Financial crime"
3643
+ msgstr ""
3644
+
3645
+ #: followthemoney/types/topic.py:30
3646
+ msgid "Theft"
3647
+ msgstr ""
3648
+
3649
+ #: followthemoney/types/topic.py:31
3650
+ msgid "War crimes"
3651
+ msgstr ""
3652
+
3653
+ #: followthemoney/types/topic.py:32
3654
+ msgid "Criminal leadership"
3655
+ msgstr ""
3656
+
3657
+ #: followthemoney/types/topic.py:33
3658
+ msgid "Terrorism"
3659
+ msgstr ""
3660
+
3661
+ #: followthemoney/types/topic.py:34
3662
+ msgid "Trafficking"
3663
+ msgstr ""
3664
+
3665
+ #: followthemoney/types/topic.py:35
3666
+ msgid "Drug trafficking"
3667
+ msgstr ""
3668
+
3669
+ #: followthemoney/types/topic.py:36
3670
+ msgid "Human trafficking"
3671
+ msgstr ""
3672
+
3673
+ #: followthemoney/types/topic.py:37
3674
+ msgid "Offshore"
3675
+ msgstr ""
3676
+
3677
+ #: followthemoney/types/topic.py:38
3678
+ msgid "Shell company"
3679
+ msgstr ""
3680
+
3681
+ #: followthemoney/types/topic.py:39
3682
+ msgid "Government"
3683
+ msgstr ""
3684
+
3685
+ #: followthemoney/types/topic.py:40
3686
+ msgid "National government"
3687
+ msgstr ""
3688
+
3689
+ #: followthemoney/types/topic.py:41
3690
+ msgid "State government"
3691
+ msgstr ""
3692
+
3693
+ #: followthemoney/types/topic.py:42
3694
+ msgid "Municipal government"
3695
+ msgstr ""
3696
+
3697
+ #: followthemoney/types/topic.py:43
3698
+ msgid "State-owned enterprise"
3699
+ msgstr ""
3700
+
3701
+ #: followthemoney/types/topic.py:44
3702
+ msgid "Intergovernmental organization"
3703
+ msgstr ""
3704
+
3705
+ #: followthemoney/types/topic.py:45
3706
+ msgid "Financial services"
3707
+ msgstr ""
3708
+
3709
+ #: followthemoney/types/topic.py:47
3710
+ msgid "Fund"
3711
+ msgstr ""
3712
+
3713
+ #: followthemoney/types/topic.py:48
3714
+ msgid "Financial advisor"
3715
+ msgstr ""
3716
+
3717
+ #: followthemoney/types/topic.py:49
3718
+ msgid "Politician"
3719
+ msgstr ""
3720
+
3721
+ #: followthemoney/types/topic.py:50
3722
+ msgid "Close Associate"
3723
+ msgstr ""
3724
+
3725
+ #: followthemoney/types/topic.py:51
3726
+ msgid "Judge"
3727
+ msgstr ""
3728
+
3729
+ #: followthemoney/types/topic.py:52
3730
+ msgid "Civil servant"
3731
+ msgstr ""
3732
+
3733
+ #: followthemoney/types/topic.py:53
3734
+ msgid "Diplomat"
3735
+ msgstr ""
3736
+
3737
+ #: followthemoney/types/topic.py:54
3738
+ msgid "Lawyer"
3739
+ msgstr ""
3740
+
3741
+ #: followthemoney/types/topic.py:55
3742
+ msgid "Accountant"
3743
+ msgstr ""
3744
+
3745
+ #: followthemoney/types/topic.py:56
3746
+ msgid "Spy"
3747
+ msgstr ""
3748
+
3749
+ #: followthemoney/types/topic.py:57
3750
+ msgid "Journalist"
3751
+ msgstr ""
3752
+
3753
+ #: followthemoney/types/topic.py:58
3754
+ msgid "Activist"
3755
+ msgstr ""
3756
+
3757
+ #: followthemoney/types/topic.py:59
3758
+ msgid "Political party"
3759
+ msgstr ""
3760
+
3761
+ #: followthemoney/types/topic.py:60
3762
+ msgid "Union"
3763
+ msgstr ""
3764
+
3765
+ #: followthemoney/types/topic.py:62
3766
+ msgid "Military"
3767
+ msgstr ""
3768
+
3769
+ #: followthemoney/types/topic.py:63
3770
+ msgid "Frozen asset"
3771
+ msgstr ""
3772
+
3773
+ #: followthemoney/types/topic.py:64
3774
+ msgid "Sanctioned entity"
3775
+ msgstr ""
3776
+
3777
+ #: followthemoney/types/topic.py:65
3778
+ msgid "Debarred entity"
3779
+ msgstr ""
3780
+
3781
+ #: followthemoney/types/topic.py:66
3782
+ msgid "Person of interest"
3783
+ msgstr ""
3784
+
3785
+ #: followthemoney/types/url.py:22
3786
+ msgid "URL"
3787
+ msgstr ""
3788
+
3789
+ #: followthemoney/types/url.py:23
3790
+ msgid "URLs"
3791
+ msgstr ""