followthemoney 1.3.6__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 +132 -55
  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.6.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.6.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.6.dist-info/DESCRIPTION.rst +0 -3
  163. followthemoney-1.3.6.dist-info/METADATA +0 -39
  164. followthemoney-1.3.6.dist-info/RECORD +0 -108
  165. followthemoney-1.3.6.dist-info/entry_points.txt +0 -3
  166. followthemoney-1.3.6.dist-info/metadata.json +0 -1
  167. followthemoney-1.3.6.dist-info/namespace_packages.txt +0 -1
  168. followthemoney-1.3.6.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 -27
  172. tests/types/test_countries.py +0 -21
  173. tests/types/test_dates.py +0 -72
  174. tests/types/test_domains.py +0 -23
  175. tests/types/test_emails.py +0 -30
  176. tests/types/test_entity.py +0 -16
  177. tests/types/test_iban.py +0 -109
  178. tests/types/test_identifiers.py +0 -25
  179. tests/types/test_ip.py +0 -26
  180. tests/types/test_languages.py +0 -20
  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
@@ -0,0 +1,3837 @@
1
+ # Translations template for PROJECT.
2
+ # Copyright (C) 2022 ORGANIZATION
3
+ # This file is distributed under the same license as the PROJECT project.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: PROJECT VERSION\n"
10
+ "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11
+ "POT-Creation-Date: 2022-04-19 22:20+0200\n"
12
+ "PO-Revision-Date: 2021-05-07 13:11+0000\n"
13
+ "Language-Team: Dutch (https://www.transifex.com/aleph/teams/76591/nl/)\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Generated-By: Babel 2.9.1\n"
18
+ "Language: nl\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+
21
+ #: followthemoney/property.py:166
22
+ msgid "Property cannot be written"
23
+ msgstr ""
24
+
25
+ #: followthemoney/property.py:169
26
+ msgid "Invalid value"
27
+ msgstr ""
28
+
29
+ #: followthemoney/proxy.py:62
30
+ msgid "No schema for entity."
31
+ msgstr ""
32
+
33
+ #: followthemoney/proxy.py:115
34
+ #, python-format
35
+ msgid "Unknown property (%s): %s"
36
+ msgstr ""
37
+
38
+ #: followthemoney/proxy.py:188
39
+ #, python-format
40
+ msgid "Stub property (%s): %s"
41
+ msgstr ""
42
+
43
+ #: followthemoney/schema.py:339
44
+ msgid "Required"
45
+ msgstr ""
46
+
47
+ #: followthemoney/schema.py:343
48
+ msgid "Entity validation failed"
49
+ msgstr ""
50
+
51
+ #. Address.label
52
+ #. CryptoWallet.properties.publicKey.label
53
+ #. Thing.properties.address.label
54
+ #. Thing.properties.addressEntity.label
55
+ #: followthemoney/schema/Address.yaml followthemoney/schema/CryptoWallet.yaml
56
+ #: followthemoney/schema/Thing.yaml followthemoney/types/address.py:24
57
+ msgid "Address"
58
+ msgstr ""
59
+
60
+ #. Address.plural
61
+ #: followthemoney/schema/Address.yaml followthemoney/types/address.py:25
62
+ msgid "Addresses"
63
+ msgstr ""
64
+
65
+ #. Address.description
66
+ #: followthemoney/schema/Address.yaml
67
+ msgid "A location associated with an entity.\n"
68
+ msgstr ""
69
+
70
+ #. Address.properties.full.label
71
+ #: followthemoney/schema/Address.yaml
72
+ msgid "Full address"
73
+ msgstr ""
74
+
75
+ #. Address.properties.remarks.label
76
+ #: followthemoney/schema/Address.yaml
77
+ msgid "Remarks"
78
+ msgstr ""
79
+
80
+ #. Address.properties.remarks.description
81
+ #: followthemoney/schema/Address.yaml
82
+ msgid "Handling instructions, like 'care of'."
83
+ msgstr ""
84
+
85
+ #. Address.properties.postOfficeBox.label
86
+ #: followthemoney/schema/Address.yaml
87
+ msgid "PO Box"
88
+ msgstr ""
89
+
90
+ #. Address.properties.postOfficeBox.description
91
+ #: followthemoney/schema/Address.yaml
92
+ msgid "A mailbox indentifier at the post office"
93
+ msgstr ""
94
+
95
+ #. Address.properties.street.label
96
+ #: followthemoney/schema/Address.yaml
97
+ msgid "Street address"
98
+ msgstr ""
99
+
100
+ #. Address.properties.street2.label
101
+ #: followthemoney/schema/Address.yaml
102
+ msgid "Street address (ctd.)"
103
+ msgstr ""
104
+
105
+ #. Address.properties.city.label
106
+ #: followthemoney/schema/Address.yaml
107
+ msgid "City"
108
+ msgstr ""
109
+
110
+ #. Address.properties.city.description
111
+ #: followthemoney/schema/Address.yaml
112
+ msgid "City, town, village or other locality"
113
+ msgstr ""
114
+
115
+ #. Address.properties.postalCode.label
116
+ #: followthemoney/schema/Address.yaml
117
+ msgid "Postal code"
118
+ msgstr ""
119
+
120
+ #. Address.properties.postalCode.description
121
+ #: followthemoney/schema/Address.yaml
122
+ msgid "Zip code or postcode."
123
+ msgstr ""
124
+
125
+ #. Address.properties.region.label
126
+ #: followthemoney/schema/Address.yaml
127
+ msgid "Region"
128
+ msgstr ""
129
+
130
+ #. Address.properties.region.description
131
+ #: followthemoney/schema/Address.yaml
132
+ msgid "Also province or area."
133
+ msgstr ""
134
+
135
+ #. Address.properties.state.label
136
+ #: followthemoney/schema/Address.yaml
137
+ msgid "State"
138
+ msgstr ""
139
+
140
+ #. Address.properties.state.description
141
+ #: followthemoney/schema/Address.yaml
142
+ msgid "State or federal unit."
143
+ msgstr ""
144
+
145
+ #. Address.properties.latitude.label
146
+ #. RealEstate.properties.latitude.label
147
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
148
+ msgid "Latitude"
149
+ msgstr ""
150
+
151
+ #. Address.properties.longitude.label
152
+ #. RealEstate.properties.longitude.label
153
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
154
+ msgid "Longitude"
155
+ msgstr ""
156
+
157
+ #. Address.properties.country.label
158
+ #. Event.properties.country.label
159
+ #. Identification.properties.country.label
160
+ #. Sanction.properties.country.label
161
+ #. TaxRoll.properties.country.label
162
+ #. Thing.properties.country.label
163
+ #: followthemoney/schema/Address.yaml followthemoney/schema/Event.yaml
164
+ #: followthemoney/schema/Identification.yaml
165
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/TaxRoll.yaml
166
+ #: followthemoney/schema/Thing.yaml followthemoney/types/country.py:21
167
+ msgid "Country"
168
+ msgstr ""
169
+
170
+ #. Airplane.label
171
+ #: followthemoney/schema/Airplane.yaml
172
+ msgid "Airplane"
173
+ msgstr ""
174
+
175
+ #. Airplane.plural
176
+ #: followthemoney/schema/Airplane.yaml
177
+ msgid "Airplanes"
178
+ msgstr ""
179
+
180
+ #. Airplane.description
181
+ #: followthemoney/schema/Airplane.yaml
182
+ msgid "An airplane, helicopter or other flying vehicle.\n"
183
+ msgstr ""
184
+
185
+ #. Airplane.properties.serialNumber.label
186
+ #: followthemoney/schema/Airplane.yaml
187
+ msgid "Serial Number"
188
+ msgstr ""
189
+
190
+ #. Airplane.properties.icaoCode.label
191
+ #: followthemoney/schema/Airplane.yaml
192
+ msgid "ICAO aircraft type designator"
193
+ msgstr ""
194
+
195
+ #. Airplane.properties.manufacturer.label
196
+ #: followthemoney/schema/Airplane.yaml
197
+ msgid "Manufacturer"
198
+ msgstr ""
199
+
200
+ #. Analyzable.label
201
+ #: followthemoney/schema/Analyzable.yaml
202
+ msgid "Analyzable"
203
+ msgstr ""
204
+
205
+ #. Analyzable.plural
206
+ #: followthemoney/schema/Analyzable.yaml
207
+ msgid "Analyzables"
208
+ msgstr ""
209
+
210
+ #. Analyzable.description
211
+ #: followthemoney/schema/Analyzable.yaml
212
+ msgid "An entity suitable for being processed via named-entity recognition.\n"
213
+ msgstr ""
214
+
215
+ #. Analyzable.properties.detectedLanguage.label
216
+ #. Page.properties.detectedLanguage.label
217
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Page.yaml
218
+ msgid "Detected language"
219
+ msgstr ""
220
+
221
+ #. Analyzable.properties.detectedCountry.label
222
+ #: followthemoney/schema/Analyzable.yaml
223
+ msgid "Detected country"
224
+ msgstr ""
225
+
226
+ #. Analyzable.properties.namesMentioned.label
227
+ #. Interval.properties.namesMentioned.label
228
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Interval.yaml
229
+ msgid "Detected names"
230
+ msgstr ""
231
+
232
+ #. Analyzable.properties.peopleMentioned.label
233
+ #: followthemoney/schema/Analyzable.yaml
234
+ msgid "Detected people"
235
+ msgstr ""
236
+
237
+ #. Analyzable.properties.companiesMentioned.label
238
+ #: followthemoney/schema/Analyzable.yaml
239
+ msgid "Detected companies"
240
+ msgstr ""
241
+
242
+ #. Analyzable.properties.ibanMentioned.label
243
+ #: followthemoney/schema/Analyzable.yaml
244
+ msgid "Detected IBANs"
245
+ msgstr ""
246
+
247
+ #. Analyzable.properties.ipMentioned.label
248
+ #: followthemoney/schema/Analyzable.yaml
249
+ msgid "Detected IP addresses"
250
+ msgstr ""
251
+
252
+ #. Analyzable.properties.locationMentioned.label
253
+ #: followthemoney/schema/Analyzable.yaml
254
+ msgid "Detected locations"
255
+ msgstr ""
256
+
257
+ #. Analyzable.properties.phoneMentioned.label
258
+ #: followthemoney/schema/Analyzable.yaml
259
+ msgid "Detected phones"
260
+ msgstr ""
261
+
262
+ #. Analyzable.properties.emailMentioned.label
263
+ #: followthemoney/schema/Analyzable.yaml
264
+ msgid "Detected e-mail addresses"
265
+ msgstr ""
266
+
267
+ #. Article.label
268
+ #: followthemoney/schema/Article.yaml
269
+ msgid "Article"
270
+ msgstr ""
271
+
272
+ #. Article.plural
273
+ #: followthemoney/schema/Article.yaml
274
+ msgid "Articles"
275
+ msgstr ""
276
+
277
+ #. Article.description
278
+ #: followthemoney/schema/Article.yaml
279
+ msgid "A piece of media reporting about a subject.\n"
280
+ msgstr ""
281
+
282
+ #. Assessment.label
283
+ #: followthemoney/schema/Assessment.yaml
284
+ msgid "Assessment"
285
+ msgstr ""
286
+
287
+ #. Assessment.plural
288
+ #: followthemoney/schema/Assessment.yaml
289
+ msgid "Assessments"
290
+ msgstr ""
291
+
292
+ #. Assessment.properties.publishDate.label
293
+ #: followthemoney/schema/Assessment.yaml
294
+ msgid "Date of publishing"
295
+ msgstr ""
296
+
297
+ #. Assessment.properties.assessmentId.label
298
+ #: followthemoney/schema/Assessment.yaml
299
+ msgid "Assessment ID"
300
+ msgstr ""
301
+
302
+ #. Assessment.properties.author.label
303
+ #. Document.properties.author.label
304
+ #: followthemoney/schema/Assessment.yaml followthemoney/schema/Document.yaml
305
+ msgid "Author"
306
+ msgstr ""
307
+
308
+ #. Assessment.properties.author.plural
309
+ #: followthemoney/schema/Assessment.yaml
310
+ msgid "Authors"
311
+ msgstr ""
312
+
313
+ #. Assessment.properties.author.reverse.label
314
+ #: followthemoney/schema/Assessment.yaml
315
+ msgid "Assessments authored"
316
+ msgstr ""
317
+
318
+ #. Asset.label
319
+ #. Ownership.properties.asset.label
320
+ #: followthemoney/schema/Asset.yaml followthemoney/schema/Ownership.yaml
321
+ msgid "Asset"
322
+ msgstr ""
323
+
324
+ #. Asset.plural
325
+ #: followthemoney/schema/Asset.yaml
326
+ msgid "Assets"
327
+ msgstr ""
328
+
329
+ #. Asset.description
330
+ #: followthemoney/schema/Asset.yaml
331
+ msgid "A piece of property which can be owned and assigned a monetary value.\n"
332
+ msgstr ""
333
+
334
+ #. Associate.label
335
+ #. Associate.properties.associate.label
336
+ #: followthemoney/schema/Associate.yaml
337
+ msgid "Associate"
338
+ msgstr ""
339
+
340
+ #. Associate.plural
341
+ #. Associate.properties.person.reverse.label
342
+ #: followthemoney/schema/Associate.yaml
343
+ msgid "Associates"
344
+ msgstr ""
345
+
346
+ #. Associate.description
347
+ #: followthemoney/schema/Associate.yaml
348
+ msgid "Non-family association between two people"
349
+ msgstr ""
350
+
351
+ #. Associate.edge.label
352
+ #: followthemoney/schema/Associate.yaml
353
+ msgid "associated with"
354
+ msgstr ""
355
+
356
+ #. Associate.properties.person.label
357
+ #. Family.properties.person.label
358
+ #. Person.label
359
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
360
+ #: followthemoney/schema/Person.yaml
361
+ msgid "Person"
362
+ msgstr ""
363
+
364
+ #. Associate.properties.person.description
365
+ #: followthemoney/schema/Associate.yaml
366
+ msgid "The subject of the association."
367
+ msgstr ""
368
+
369
+ #. Associate.properties.associate.description
370
+ #: followthemoney/schema/Associate.yaml
371
+ msgid "An associate of the subject person."
372
+ msgstr ""
373
+
374
+ #. Associate.properties.associate.reverse.label
375
+ #: followthemoney/schema/Associate.yaml
376
+ msgid "Associations"
377
+ msgstr ""
378
+
379
+ #. Associate.properties.relationship.label
380
+ #. Family.properties.relationship.label
381
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
382
+ msgid "Relationship"
383
+ msgstr ""
384
+
385
+ #. Associate.properties.relationship.description
386
+ #: followthemoney/schema/Associate.yaml
387
+ msgid "Nature of the association"
388
+ msgstr ""
389
+
390
+ #. Audio.label
391
+ #: followthemoney/schema/Audio.yaml
392
+ msgid "Audio"
393
+ msgstr ""
394
+
395
+ #. Audio.plural
396
+ #: followthemoney/schema/Audio.yaml
397
+ msgid "Audio files"
398
+ msgstr ""
399
+
400
+ #. Audio.properties.duration.label
401
+ #. Call.properties.duration.label
402
+ #. Sanction.properties.duration.label
403
+ #. Video.properties.duration.label
404
+ #: followthemoney/schema/Audio.yaml followthemoney/schema/Call.yaml
405
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Video.yaml
406
+ msgid "Duration"
407
+ msgstr ""
408
+
409
+ #. Audio.properties.duration.description
410
+ #: followthemoney/schema/Audio.yaml
411
+ msgid "Duration of the audio in ms"
412
+ msgstr ""
413
+
414
+ #. Audio.properties.samplingRate.label
415
+ #: followthemoney/schema/Audio.yaml
416
+ msgid "Sampling Rate"
417
+ msgstr ""
418
+
419
+ #. Audio.properties.samplingRate.description
420
+ #: followthemoney/schema/Audio.yaml
421
+ msgid "Sampling rate of the audio in Hz"
422
+ msgstr ""
423
+
424
+ #. BankAccount.label
425
+ #: followthemoney/schema/BankAccount.yaml
426
+ msgid "Bank account"
427
+ msgstr ""
428
+
429
+ #. BankAccount.plural
430
+ #. BankAccount.properties.bank.reverse.label
431
+ #: followthemoney/schema/BankAccount.yaml
432
+ msgid "Bank accounts"
433
+ msgstr ""
434
+
435
+ #. BankAccount.description
436
+ #: followthemoney/schema/BankAccount.yaml
437
+ msgid ""
438
+ "An account held at a bank and controlled by an owner. This may also be used"
439
+ " to describe more complex arrangements like correspondent bank settlement "
440
+ "accounts.\n"
441
+ msgstr ""
442
+
443
+ #. BankAccount.properties.bankName.label
444
+ #: followthemoney/schema/BankAccount.yaml
445
+ msgid "Bank name"
446
+ msgstr ""
447
+
448
+ #. BankAccount.properties.accountNumber.label
449
+ #: followthemoney/schema/BankAccount.yaml
450
+ msgid "Account number"
451
+ msgstr ""
452
+
453
+ #. BankAccount.properties.iban.label
454
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/iban.py:24
455
+ msgid "IBAN"
456
+ msgstr ""
457
+
458
+ #. BankAccount.properties.bic.label
459
+ #: followthemoney/schema/BankAccount.yaml
460
+ msgid "Bank Identifier Code"
461
+ msgstr ""
462
+
463
+ #. BankAccount.properties.bank.label
464
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/topic.py:46
465
+ msgid "Bank"
466
+ msgstr ""
467
+
468
+ #. BankAccount.properties.accountType.label
469
+ #: followthemoney/schema/BankAccount.yaml
470
+ msgid "Account type"
471
+ msgstr ""
472
+
473
+ #. BankAccount.properties.balance.label
474
+ #. CryptoWallet.properties.balance.label
475
+ #: followthemoney/schema/BankAccount.yaml
476
+ #: followthemoney/schema/CryptoWallet.yaml
477
+ msgid "Balance"
478
+ msgstr ""
479
+
480
+ #. BankAccount.properties.balanceDate.label
481
+ #. CryptoWallet.properties.balanceDate.label
482
+ #: followthemoney/schema/BankAccount.yaml
483
+ #: followthemoney/schema/CryptoWallet.yaml
484
+ msgid "Balance date"
485
+ msgstr ""
486
+
487
+ #. BankAccount.properties.maxBalance.label
488
+ #: followthemoney/schema/BankAccount.yaml
489
+ msgid "Maximum balance"
490
+ msgstr ""
491
+
492
+ #. BankAccount.properties.maxBalanceDate.label
493
+ #: followthemoney/schema/BankAccount.yaml
494
+ msgid "Maximum balance date"
495
+ msgstr ""
496
+
497
+ #. BankAccount.properties.bankAddress.label
498
+ #: followthemoney/schema/BankAccount.yaml
499
+ msgid "Bank address"
500
+ msgstr ""
501
+
502
+ #. Call.label
503
+ #: followthemoney/schema/Call.yaml
504
+ msgid "Call"
505
+ msgstr ""
506
+
507
+ #. Call.plural
508
+ #: followthemoney/schema/Call.yaml
509
+ msgid "Calls"
510
+ msgstr ""
511
+
512
+ #. Call.properties.caller.label
513
+ #: followthemoney/schema/Call.yaml
514
+ msgid "Caller"
515
+ msgstr ""
516
+
517
+ #. Call.properties.caller.reverse.label
518
+ #: followthemoney/schema/Call.yaml
519
+ msgid "Calls made"
520
+ msgstr ""
521
+
522
+ #. Call.properties.callerNumber.label
523
+ #: followthemoney/schema/Call.yaml
524
+ msgid "Caller's Number"
525
+ msgstr ""
526
+
527
+ #. Call.properties.receiver.label
528
+ #. EconomicActivity.properties.receiver.label
529
+ #: followthemoney/schema/Call.yaml followthemoney/schema/EconomicActivity.yaml
530
+ msgid "Receiver"
531
+ msgstr ""
532
+
533
+ #. Call.properties.receiver.reverse.label
534
+ #: followthemoney/schema/Call.yaml
535
+ msgid "Calls received"
536
+ msgstr ""
537
+
538
+ #. Call.properties.receiverNumber.label
539
+ #: followthemoney/schema/Call.yaml
540
+ msgid "Receiver's Number"
541
+ msgstr ""
542
+
543
+ #. Company.label
544
+ #: followthemoney/schema/Company.yaml
545
+ msgid "Company"
546
+ msgstr ""
547
+
548
+ #. Company.plural
549
+ #: followthemoney/schema/Company.yaml
550
+ msgid "Companies"
551
+ msgstr ""
552
+
553
+ #. Company.description
554
+ #: followthemoney/schema/Company.yaml
555
+ msgid ""
556
+ "A corporation, usually for profit. Does not distinguish between private and "
557
+ "public companies, and can also be used to model more specific constructs "
558
+ "like trusts and funds. Companies are assets, so they can be owned by other "
559
+ "legal entities.\n"
560
+ msgstr ""
561
+
562
+ #. Company.properties.jurisdiction.label
563
+ #. LegalEntity.properties.jurisdiction.label
564
+ #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
565
+ msgid "Jurisdiction"
566
+ msgstr ""
567
+
568
+ #. Company.properties.registrationNumber.label
569
+ #. LegalEntity.properties.registrationNumber.label
570
+ #. RealEstate.properties.registrationNumber.label
571
+ #. Vehicle.properties.registrationNumber.label
572
+ #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
573
+ #: followthemoney/schema/RealEstate.yaml followthemoney/schema/Vehicle.yaml
574
+ msgid "Registration number"
575
+ msgstr ""
576
+
577
+ #. Company.properties.capital.label
578
+ #: followthemoney/schema/Company.yaml
579
+ msgid "Capital"
580
+ msgstr ""
581
+
582
+ #. Company.properties.voenCode.label
583
+ #: followthemoney/schema/Company.yaml
584
+ msgid "VOEN"
585
+ msgstr ""
586
+
587
+ #. Company.properties.voenCode.description
588
+ #: followthemoney/schema/Company.yaml
589
+ msgid "Azerbaijan taxpayer ID"
590
+ msgstr ""
591
+
592
+ #. Company.properties.coatoCode.label
593
+ #: followthemoney/schema/Company.yaml
594
+ msgid "COATO / SOATO / OKATO"
595
+ msgstr ""
596
+
597
+ #. Company.properties.irsCode.label
598
+ #: followthemoney/schema/Company.yaml
599
+ msgid "IRS Number"
600
+ msgstr ""
601
+
602
+ #. Company.properties.irsCode.description
603
+ #: followthemoney/schema/Company.yaml
604
+ msgid "US tax ID"
605
+ msgstr ""
606
+
607
+ #. Company.properties.ipoCode.label
608
+ #: followthemoney/schema/Company.yaml
609
+ msgid "IPO"
610
+ msgstr ""
611
+
612
+ #. Company.properties.cikCode.label
613
+ #: followthemoney/schema/Company.yaml
614
+ msgid "SEC Central Index Key"
615
+ msgstr ""
616
+
617
+ #. Company.properties.cikCode.description
618
+ #: followthemoney/schema/Company.yaml
619
+ msgid "US SEC Central Index Key"
620
+ msgstr ""
621
+
622
+ #. Company.properties.jibCode.label
623
+ #: followthemoney/schema/Company.yaml
624
+ msgid "JIB"
625
+ msgstr ""
626
+
627
+ #. Company.properties.jibCode.description
628
+ #: followthemoney/schema/Company.yaml
629
+ msgid "Yugoslavia company ID"
630
+ msgstr ""
631
+
632
+ #. Company.properties.mbsCode.label
633
+ #: followthemoney/schema/Company.yaml
634
+ msgid "MBS"
635
+ msgstr ""
636
+
637
+ #. Company.properties.ibcRuc.label
638
+ #: followthemoney/schema/Company.yaml
639
+ msgid "ibcRUC"
640
+ msgstr ""
641
+
642
+ #. Company.properties.caemCode.label
643
+ #: followthemoney/schema/Company.yaml
644
+ msgid "COD CAEM"
645
+ msgstr ""
646
+
647
+ #. Company.properties.caemCode.description
648
+ #: followthemoney/schema/Company.yaml
649
+ msgid "(RO) What kind of activity a legal entity is allowed to develop"
650
+ msgstr ""
651
+
652
+ #. Company.properties.kppCode.label
653
+ #: followthemoney/schema/Company.yaml
654
+ msgid "KPP"
655
+ msgstr ""
656
+
657
+ #. Company.properties.kppCode.description
658
+ #: followthemoney/schema/Company.yaml
659
+ msgid "(RU, КПП) in addition to INN for orgs; reason for registration at FNS"
660
+ msgstr ""
661
+
662
+ #. Company.properties.okvedCode.label
663
+ #: followthemoney/schema/Company.yaml
664
+ msgid "OKVED(2) Classifier"
665
+ msgstr ""
666
+
667
+ #. Company.properties.okvedCode.description
668
+ #: followthemoney/schema/Company.yaml
669
+ msgid ""
670
+ "(RU, ОКВЭД) Economical activity classifier. OKVED2 is the same but newer"
671
+ msgstr ""
672
+
673
+ #. Company.properties.okopfCode.label
674
+ #: followthemoney/schema/Company.yaml
675
+ msgid "OKOPF"
676
+ msgstr ""
677
+
678
+ #. Company.properties.okopfCode.description
679
+ #: followthemoney/schema/Company.yaml
680
+ msgid "(RU, ОКОПФ) What kind of business entity"
681
+ msgstr ""
682
+
683
+ #. Company.properties.fnsCode.label
684
+ #: followthemoney/schema/Company.yaml
685
+ msgid "Federal tax service code"
686
+ msgstr ""
687
+
688
+ #. Company.properties.fnsCode.description
689
+ #: followthemoney/schema/Company.yaml
690
+ msgid "(RU, ФНС) Federal Tax Service related info"
691
+ msgstr ""
692
+
693
+ #. Company.properties.fssCode.label
694
+ #: followthemoney/schema/Company.yaml
695
+ msgid "FSS"
696
+ msgstr ""
697
+
698
+ #. Company.properties.fssCode.description
699
+ #: followthemoney/schema/Company.yaml
700
+ msgid "(RU, ФСС) Social Security"
701
+ msgstr ""
702
+
703
+ #. Company.properties.ogrnCode.label
704
+ #: followthemoney/schema/Company.yaml
705
+ msgid "OGRN"
706
+ msgstr ""
707
+
708
+ #. Company.properties.ogrnCode.description
709
+ #: followthemoney/schema/Company.yaml
710
+ msgid "Major State Registration Number"
711
+ msgstr ""
712
+
713
+ #. Company.properties.bikCode.label
714
+ #: followthemoney/schema/Company.yaml
715
+ msgid "BIK"
716
+ msgstr ""
717
+
718
+ #. Company.properties.bikCode.description
719
+ #: followthemoney/schema/Company.yaml
720
+ msgid "Russian bank account code"
721
+ msgstr ""
722
+
723
+ #. Company.properties.pfrNumber.label
724
+ #: followthemoney/schema/Company.yaml
725
+ msgid "PFR Number"
726
+ msgstr ""
727
+
728
+ #. Company.properties.pfrNumber.description
729
+ #: followthemoney/schema/Company.yaml
730
+ msgid ""
731
+ "(RU, ПФР) Pension Fund Registration number. AAA-BBB-CCCCCC, where AAA is "
732
+ "organisation region, BBB is district, CCCCCC number at a specific branch"
733
+ msgstr ""
734
+
735
+ #. Company.properties.oksmCode.label
736
+ #: followthemoney/schema/Company.yaml
737
+ msgid "OKSM"
738
+ msgstr ""
739
+
740
+ #. Company.properties.oksmCode.description
741
+ #: followthemoney/schema/Company.yaml
742
+ msgid "Russian (ОКСМ) countries classifer"
743
+ msgstr ""
744
+
745
+ #. Contract.label
746
+ #. ContractAward.properties.contract.label
747
+ #. EconomicActivity.properties.contract.label
748
+ #. Payment.properties.contract.label
749
+ #: followthemoney/schema/Contract.yaml
750
+ #: followthemoney/schema/ContractAward.yaml
751
+ #: followthemoney/schema/EconomicActivity.yaml
752
+ #: followthemoney/schema/Payment.yaml
753
+ msgid "Contract"
754
+ msgstr ""
755
+
756
+ #. Contract.plural
757
+ #. Contract.properties.project.reverse.label
758
+ #. ContractAward.properties.contract.plural
759
+ #: followthemoney/schema/Contract.yaml
760
+ #: followthemoney/schema/ContractAward.yaml
761
+ msgid "Contracts"
762
+ msgstr ""
763
+
764
+ #. Contract.description
765
+ #: followthemoney/schema/Contract.yaml
766
+ msgid ""
767
+ "An contract or contract lot issued by an authority. Multiple lots may be "
768
+ "awarded to different suppliers (see ContractAward).\n"
769
+ msgstr ""
770
+
771
+ #. Contract.properties.title.label
772
+ #: followthemoney/schema/Contract.yaml
773
+ msgid "Contract title"
774
+ msgstr ""
775
+
776
+ #. Contract.properties.authority.label
777
+ #: followthemoney/schema/Contract.yaml
778
+ msgid "Contract authority"
779
+ msgstr ""
780
+
781
+ #. Contract.properties.authority.plural
782
+ #: followthemoney/schema/Contract.yaml
783
+ msgid "Contract authorities"
784
+ msgstr ""
785
+
786
+ #. Contract.properties.authority.reverse.label
787
+ #: followthemoney/schema/Contract.yaml
788
+ msgid "Contracts issued"
789
+ msgstr ""
790
+
791
+ #. Contract.properties.project.label
792
+ #. Payment.properties.project.label
793
+ #. Project.label
794
+ #. ProjectParticipant.properties.project.label
795
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Payment.yaml
796
+ #: followthemoney/schema/Project.yaml
797
+ #: followthemoney/schema/ProjectParticipant.yaml
798
+ msgid "Project"
799
+ msgstr ""
800
+
801
+ #. Contract.properties.type.label
802
+ #. CourtCase.properties.type.label
803
+ #. Identification.properties.type.label
804
+ #. Security.properties.type.label
805
+ #. Vehicle.properties.type.label
806
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
807
+ #: followthemoney/schema/Identification.yaml
808
+ #: followthemoney/schema/Security.yaml followthemoney/schema/Vehicle.yaml
809
+ msgid "Type"
810
+ msgstr ""
811
+
812
+ #. Contract.properties.type.description
813
+ #: followthemoney/schema/Contract.yaml
814
+ msgid "Type of contract. Potentially W (Works), U (Supplies), S (Services).\n"
815
+ msgstr ""
816
+
817
+ #. Contract.properties.contractDate.label
818
+ #: followthemoney/schema/Contract.yaml
819
+ msgid "Contract date"
820
+ msgstr ""
821
+
822
+ #. Contract.properties.procedureNumber.label
823
+ #: followthemoney/schema/Contract.yaml
824
+ msgid "Procedure number"
825
+ msgstr ""
826
+
827
+ #. Contract.properties.procedure.label
828
+ #: followthemoney/schema/Contract.yaml
829
+ msgid "Contract procedure"
830
+ msgstr ""
831
+
832
+ #. Contract.properties.noticeId.label
833
+ #: followthemoney/schema/Contract.yaml
834
+ msgid "Contract Award Notice ID"
835
+ msgstr ""
836
+
837
+ #. Contract.properties.numberAwards.label
838
+ #: followthemoney/schema/Contract.yaml
839
+ msgid "Number of awards"
840
+ msgstr ""
841
+
842
+ #. Contract.properties.status.label
843
+ #. CourtCase.properties.status.label
844
+ #. Interest.properties.status.label
845
+ #. LegalEntity.properties.status.label
846
+ #. Project.properties.status.label
847
+ #. Sanction.properties.status.label
848
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
849
+ #: followthemoney/schema/Interest.yaml followthemoney/schema/LegalEntity.yaml
850
+ #: followthemoney/schema/Project.yaml followthemoney/schema/Sanction.yaml
851
+ msgid "Status"
852
+ msgstr ""
853
+
854
+ #. Contract.properties.method.label
855
+ #: followthemoney/schema/Contract.yaml
856
+ msgid "Procurement method"
857
+ msgstr ""
858
+
859
+ #. Contract.properties.criteria.label
860
+ #: followthemoney/schema/Contract.yaml
861
+ msgid "Contract award criteria"
862
+ msgstr ""
863
+
864
+ #. Contract.properties.classification.label
865
+ #. LegalEntity.properties.classification.label
866
+ #. Security.properties.classification.label
867
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/LegalEntity.yaml
868
+ #: followthemoney/schema/Security.yaml
869
+ msgid "Classification"
870
+ msgstr ""
871
+
872
+ #. Contract.properties.cancelled.label
873
+ #: followthemoney/schema/Contract.yaml
874
+ msgid "Cancelled?"
875
+ msgstr ""
876
+
877
+ #. Contract.properties.language.label
878
+ #. Document.properties.language.label
879
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Document.yaml
880
+ #: followthemoney/types/language.py:22
881
+ msgid "Language"
882
+ msgstr ""
883
+
884
+ #. ContractAward.label
885
+ #: followthemoney/schema/ContractAward.yaml
886
+ msgid "Contract award"
887
+ msgstr ""
888
+
889
+ #. ContractAward.plural
890
+ #: followthemoney/schema/ContractAward.yaml
891
+ msgid "Contract awards"
892
+ msgstr ""
893
+
894
+ #. ContractAward.description
895
+ #: followthemoney/schema/ContractAward.yaml
896
+ msgid "A contract or contract lot as awarded to a supplier."
897
+ msgstr ""
898
+
899
+ #. ContractAward.edge.label
900
+ #: followthemoney/schema/ContractAward.yaml
901
+ msgid "awarded to"
902
+ msgstr ""
903
+
904
+ #. ContractAward.properties.supplier.label
905
+ #: followthemoney/schema/ContractAward.yaml
906
+ msgid "Supplier"
907
+ msgstr ""
908
+
909
+ #. ContractAward.properties.supplier.description
910
+ #: followthemoney/schema/ContractAward.yaml
911
+ msgid "The entity the contract was awarded to"
912
+ msgstr ""
913
+
914
+ #. ContractAward.properties.supplier.plural
915
+ #: followthemoney/schema/ContractAward.yaml
916
+ msgid "Suppliers"
917
+ msgstr ""
918
+
919
+ #. ContractAward.properties.supplier.reverse.label
920
+ #: followthemoney/schema/ContractAward.yaml
921
+ msgid "Contracts awarded"
922
+ msgstr ""
923
+
924
+ #. ContractAward.properties.contract.reverse.label
925
+ #: followthemoney/schema/ContractAward.yaml
926
+ msgid "Lots awarded"
927
+ msgstr ""
928
+
929
+ #. ContractAward.properties.lotNumber.label
930
+ #: followthemoney/schema/ContractAward.yaml
931
+ msgid "Lot number"
932
+ msgstr ""
933
+
934
+ #. ContractAward.properties.documentNumber.label
935
+ #: followthemoney/schema/ContractAward.yaml
936
+ msgid "Document number"
937
+ msgstr ""
938
+
939
+ #. ContractAward.properties.documentType.label
940
+ #: followthemoney/schema/ContractAward.yaml
941
+ msgid "Document type"
942
+ msgstr ""
943
+
944
+ #. ContractAward.properties.decisionReason.label
945
+ #: followthemoney/schema/ContractAward.yaml
946
+ msgid "Decision reason"
947
+ msgstr ""
948
+
949
+ #. ContractAward.properties.cpvCode.label
950
+ #: followthemoney/schema/ContractAward.yaml
951
+ msgid "CPV code"
952
+ msgstr ""
953
+
954
+ #. ContractAward.properties.cpvCode.description
955
+ #: followthemoney/schema/ContractAward.yaml
956
+ msgid "Contract Procurement Vocabulary (what type of goods/services, EU)"
957
+ msgstr ""
958
+
959
+ #. ContractAward.properties.nutsCode.label
960
+ #: followthemoney/schema/ContractAward.yaml
961
+ msgid "NUTS code"
962
+ msgstr ""
963
+
964
+ #. ContractAward.properties.nutsCode.description
965
+ #: followthemoney/schema/ContractAward.yaml
966
+ msgid "Nomencalture of Territorial Units for Statistics (NUTS)"
967
+ msgstr ""
968
+
969
+ #. ContractAward.properties.amended.label
970
+ #: followthemoney/schema/ContractAward.yaml
971
+ msgid "Amended"
972
+ msgstr ""
973
+
974
+ #. ContractAward.properties.amended.description
975
+ #: followthemoney/schema/ContractAward.yaml
976
+ msgid "Was this award amended, modified or updated by a subsequent document?"
977
+ msgstr ""
978
+
979
+ #. CourtCase.label
980
+ #: followthemoney/schema/CourtCase.yaml
981
+ msgid "Court case"
982
+ msgstr ""
983
+
984
+ #. CourtCase.plural
985
+ #. CourtCaseParty.properties.party.reverse.label
986
+ #: followthemoney/schema/CourtCase.yaml
987
+ #: followthemoney/schema/CourtCaseParty.yaml
988
+ msgid "Court cases"
989
+ msgstr ""
990
+
991
+ #. CourtCase.properties.category.label
992
+ #: followthemoney/schema/CourtCase.yaml
993
+ msgid "Category"
994
+ msgstr ""
995
+
996
+ #. CourtCase.properties.caseNumber.label
997
+ #: followthemoney/schema/CourtCase.yaml
998
+ msgid "Case number"
999
+ msgstr ""
1000
+
1001
+ #. CourtCase.properties.court.label
1002
+ #: followthemoney/schema/CourtCase.yaml
1003
+ msgid "Court"
1004
+ msgstr ""
1005
+
1006
+ #. CourtCase.properties.fileDate.label
1007
+ #: followthemoney/schema/CourtCase.yaml
1008
+ msgid "File date"
1009
+ msgstr ""
1010
+
1011
+ #. CourtCase.properties.closeDate.label
1012
+ #: followthemoney/schema/CourtCase.yaml
1013
+ msgid "Close date"
1014
+ msgstr ""
1015
+
1016
+ #. CourtCaseParty.label
1017
+ #: followthemoney/schema/CourtCaseParty.yaml
1018
+ msgid "Case party"
1019
+ msgstr ""
1020
+
1021
+ #. CourtCaseParty.plural
1022
+ #: followthemoney/schema/CourtCaseParty.yaml
1023
+ msgid "Case parties"
1024
+ msgstr ""
1025
+
1026
+ #. CourtCaseParty.edge.label
1027
+ #: followthemoney/schema/CourtCaseParty.yaml
1028
+ msgid "involved in"
1029
+ msgstr ""
1030
+
1031
+ #. CourtCaseParty.properties.party.label
1032
+ #: followthemoney/schema/CourtCaseParty.yaml
1033
+ msgid "Party"
1034
+ msgstr ""
1035
+
1036
+ #. CourtCaseParty.properties.case.label
1037
+ #: followthemoney/schema/CourtCaseParty.yaml
1038
+ msgid "Case"
1039
+ msgstr ""
1040
+
1041
+ #. CourtCaseParty.properties.case.reverse.label
1042
+ #: followthemoney/schema/CourtCaseParty.yaml
1043
+ msgid "Parties"
1044
+ msgstr ""
1045
+
1046
+ #. CryptoWallet.label
1047
+ #: followthemoney/schema/CryptoWallet.yaml
1048
+ msgid "Cryptocurrency wallet"
1049
+ msgstr ""
1050
+
1051
+ #. CryptoWallet.plural
1052
+ #. CryptoWallet.properties.holder.reverse.label
1053
+ #: followthemoney/schema/CryptoWallet.yaml
1054
+ msgid "Cryptocurrency wallets"
1055
+ msgstr ""
1056
+
1057
+ #. CryptoWallet.description
1058
+ #: followthemoney/schema/CryptoWallet.yaml
1059
+ msgid ""
1060
+ "A cryptocurrency wallet is a view on the transactions conducted by one "
1061
+ "participant on a blockchain / distributed ledger system.\n"
1062
+ msgstr ""
1063
+
1064
+ #. CryptoWallet.properties.publicKey.description
1065
+ #: followthemoney/schema/CryptoWallet.yaml
1066
+ msgid "Public key used to identify the wallet"
1067
+ msgstr ""
1068
+
1069
+ #. CryptoWallet.properties.privateKey.label
1070
+ #: followthemoney/schema/CryptoWallet.yaml
1071
+ msgid "Private key"
1072
+ msgstr ""
1073
+
1074
+ #. CryptoWallet.properties.creationDate.label
1075
+ #: followthemoney/schema/CryptoWallet.yaml
1076
+ msgid "Creation date"
1077
+ msgstr ""
1078
+
1079
+ #. CryptoWallet.properties.currencySymbol.label
1080
+ #: followthemoney/schema/CryptoWallet.yaml
1081
+ msgid "Currency short code"
1082
+ msgstr ""
1083
+
1084
+ #. CryptoWallet.properties.mangingExchange.label
1085
+ #: followthemoney/schema/CryptoWallet.yaml
1086
+ msgid "Managing exchange"
1087
+ msgstr ""
1088
+
1089
+ #. CryptoWallet.properties.holder.label
1090
+ #: followthemoney/schema/CryptoWallet.yaml
1091
+ msgid "Wallet holder"
1092
+ msgstr ""
1093
+
1094
+ #. Debt.label
1095
+ #: followthemoney/schema/Debt.yaml
1096
+ msgid "Debt"
1097
+ msgstr ""
1098
+
1099
+ #. Debt.plural
1100
+ #. Debt.properties.debtor.reverse.label
1101
+ #: followthemoney/schema/Debt.yaml
1102
+ msgid "Debts"
1103
+ msgstr ""
1104
+
1105
+ #. Debt.description
1106
+ #: followthemoney/schema/Debt.yaml
1107
+ msgid "A monetary debt between two parties."
1108
+ msgstr ""
1109
+
1110
+ #. Debt.edge.label
1111
+ #: followthemoney/schema/Debt.yaml
1112
+ msgid "owes"
1113
+ msgstr ""
1114
+
1115
+ #. Debt.properties.debtor.label
1116
+ #: followthemoney/schema/Debt.yaml
1117
+ msgid "Debtor"
1118
+ msgstr ""
1119
+
1120
+ #. Debt.properties.creditor.label
1121
+ #: followthemoney/schema/Debt.yaml
1122
+ msgid "creditor"
1123
+ msgstr ""
1124
+
1125
+ #. Debt.properties.creditor.reverse.label
1126
+ #: followthemoney/schema/Debt.yaml
1127
+ msgid "Credits"
1128
+ msgstr ""
1129
+
1130
+ #. Directorship.label
1131
+ #: followthemoney/schema/Directorship.yaml
1132
+ msgid "Directorship"
1133
+ msgstr ""
1134
+
1135
+ #. Directorship.plural
1136
+ #. Directorship.properties.director.reverse.label
1137
+ #: followthemoney/schema/Directorship.yaml
1138
+ msgid "Directorships"
1139
+ msgstr ""
1140
+
1141
+ #. Directorship.edge.label
1142
+ #: followthemoney/schema/Directorship.yaml
1143
+ msgid "directs"
1144
+ msgstr ""
1145
+
1146
+ #. Directorship.properties.director.label
1147
+ #: followthemoney/schema/Directorship.yaml
1148
+ msgid "Director"
1149
+ msgstr ""
1150
+
1151
+ #. Directorship.properties.organization.label
1152
+ #. Membership.properties.organization.label
1153
+ #. Organization.label
1154
+ #: followthemoney/schema/Directorship.yaml
1155
+ #: followthemoney/schema/Membership.yaml
1156
+ #: followthemoney/schema/Organization.yaml
1157
+ msgid "Organization"
1158
+ msgstr ""
1159
+
1160
+ #. Directorship.properties.organization.reverse.label
1161
+ #: followthemoney/schema/Directorship.yaml
1162
+ msgid "Directors"
1163
+ msgstr ""
1164
+
1165
+ #. Directorship.properties.secretary.label
1166
+ #: followthemoney/schema/Directorship.yaml
1167
+ msgid "Secretary"
1168
+ msgstr ""
1169
+
1170
+ #. Document.label
1171
+ #: followthemoney/schema/Document.yaml
1172
+ msgid "File"
1173
+ msgstr ""
1174
+
1175
+ #. Document.plural
1176
+ #: followthemoney/schema/Document.yaml
1177
+ msgid "Files"
1178
+ msgstr ""
1179
+
1180
+ #. Document.properties.contentHash.label
1181
+ #: followthemoney/schema/Document.yaml followthemoney/types/checksum.py:18
1182
+ msgid "Checksum"
1183
+ msgstr ""
1184
+
1185
+ #. Document.properties.contentHash.description
1186
+ #: followthemoney/schema/Document.yaml
1187
+ msgid "SHA1 hash of the data"
1188
+ msgstr ""
1189
+
1190
+ #. Document.properties.title.label
1191
+ #. Person.properties.title.label
1192
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Person.yaml
1193
+ msgid "Title"
1194
+ msgstr ""
1195
+
1196
+ #. Document.properties.author.description
1197
+ #: followthemoney/schema/Document.yaml
1198
+ msgid "The original author, not the uploader"
1199
+ msgstr ""
1200
+
1201
+ #. Document.properties.generator.label
1202
+ #: followthemoney/schema/Document.yaml
1203
+ msgid "Generator"
1204
+ msgstr ""
1205
+
1206
+ #. Document.properties.generator.description
1207
+ #: followthemoney/schema/Document.yaml
1208
+ msgid "The program used to generate this file"
1209
+ msgstr ""
1210
+
1211
+ #. Document.properties.crawler.label
1212
+ #: followthemoney/schema/Document.yaml
1213
+ msgid "Crawler"
1214
+ msgstr ""
1215
+
1216
+ #. Document.properties.crawler.description
1217
+ #: followthemoney/schema/Document.yaml
1218
+ msgid "The crawler used to acquire this file"
1219
+ msgstr ""
1220
+
1221
+ #. Document.properties.fileSize.label
1222
+ #: followthemoney/schema/Document.yaml
1223
+ msgid "File size"
1224
+ msgstr ""
1225
+
1226
+ #. Document.properties.fileName.label
1227
+ #: followthemoney/schema/Document.yaml
1228
+ msgid "File name"
1229
+ msgstr ""
1230
+
1231
+ #. Document.properties.extension.label
1232
+ #: followthemoney/schema/Document.yaml
1233
+ msgid "File extension"
1234
+ msgstr ""
1235
+
1236
+ #. Document.properties.encoding.label
1237
+ #: followthemoney/schema/Document.yaml
1238
+ msgid "File encoding"
1239
+ msgstr ""
1240
+
1241
+ #. Document.properties.bodyText.label
1242
+ #. Page.properties.bodyText.label
1243
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1244
+ #: followthemoney/types/string.py:24
1245
+ msgid "Text"
1246
+ msgstr ""
1247
+
1248
+ #. Document.properties.messageId.label
1249
+ #: followthemoney/schema/Document.yaml
1250
+ msgid "Message ID"
1251
+ msgstr ""
1252
+
1253
+ #. Document.properties.messageId.description
1254
+ #: followthemoney/schema/Document.yaml
1255
+ msgid "Message ID of a document; unique in most cases"
1256
+ msgstr ""
1257
+
1258
+ #. Document.properties.mimeType.label
1259
+ #: followthemoney/schema/Document.yaml
1260
+ msgid "MIME type"
1261
+ msgstr ""
1262
+
1263
+ #. Document.properties.translatedLanguage.label
1264
+ #. Page.properties.translatedTextLanguage.label
1265
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1266
+ msgid "The language of the translated text"
1267
+ msgstr ""
1268
+
1269
+ #. Document.properties.translatedText.label
1270
+ #. Page.properties.translatedText.label
1271
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1272
+ msgid "Translated version of the body text"
1273
+ msgstr ""
1274
+
1275
+ #. Document.properties.date.label
1276
+ #. Interval.properties.date.label
1277
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Interval.yaml
1278
+ #: followthemoney/types/date.py:26
1279
+ msgid "Date"
1280
+ msgstr ""
1281
+
1282
+ #. Document.properties.date.description
1283
+ #: followthemoney/schema/Document.yaml
1284
+ msgid "If not otherwise specified"
1285
+ msgstr ""
1286
+
1287
+ #. Document.properties.authoredAt.label
1288
+ #: followthemoney/schema/Document.yaml
1289
+ msgid "Authored on"
1290
+ msgstr ""
1291
+
1292
+ #. Document.properties.publishedAt.label
1293
+ #: followthemoney/schema/Document.yaml
1294
+ msgid "Published on"
1295
+ msgstr ""
1296
+
1297
+ #. Document.properties.parent.label
1298
+ #. Folder.label
1299
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Folder.yaml
1300
+ msgid "Folder"
1301
+ msgstr ""
1302
+
1303
+ #. Document.properties.parent.reverse.label
1304
+ #: followthemoney/schema/Document.yaml
1305
+ msgid "Child documents"
1306
+ msgstr ""
1307
+
1308
+ #. Document.properties.ancestors.label
1309
+ #: followthemoney/schema/Document.yaml
1310
+ msgid "Ancestors"
1311
+ msgstr ""
1312
+
1313
+ #. Document.properties.ancestors.reverse.label
1314
+ #: followthemoney/schema/Document.yaml
1315
+ msgid "Descendants"
1316
+ msgstr ""
1317
+
1318
+ #. Document.properties.processingStatus.label
1319
+ #: followthemoney/schema/Document.yaml
1320
+ msgid "Processing status"
1321
+ msgstr ""
1322
+
1323
+ #. Document.properties.processingError.label
1324
+ #: followthemoney/schema/Document.yaml
1325
+ msgid "Processing error"
1326
+ msgstr ""
1327
+
1328
+ #. Documentation.label
1329
+ #: followthemoney/schema/Documentation.yml
1330
+ msgid "Documentation"
1331
+ msgstr ""
1332
+
1333
+ #. Documentation.plural
1334
+ #: followthemoney/schema/Documentation.yml
1335
+ msgid "Documentations"
1336
+ msgstr ""
1337
+
1338
+ #. Documentation.description
1339
+ #: followthemoney/schema/Documentation.yml
1340
+ msgid ""
1341
+ "Links some entity to a document, which might provide further detail or "
1342
+ "evidence regarding the entity.\n"
1343
+ msgstr ""
1344
+
1345
+ #. Documentation.edge.label
1346
+ #: followthemoney/schema/Documentation.yml
1347
+ msgid "documents"
1348
+ msgstr ""
1349
+
1350
+ #. Documentation.properties.document.label
1351
+ #. Mention.properties.document.label
1352
+ #. Page.properties.document.label
1353
+ #. Pages.label
1354
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Mention.yaml
1355
+ #: followthemoney/schema/Page.yaml followthemoney/schema/Pages.yaml
1356
+ msgid "Document"
1357
+ msgstr ""
1358
+
1359
+ #. Documentation.properties.document.reverse.label
1360
+ #: followthemoney/schema/Documentation.yml
1361
+ msgid "Related entities"
1362
+ msgstr ""
1363
+
1364
+ #. Documentation.properties.entity.label
1365
+ #. Mention.properties.resolved.label
1366
+ #. Note.properties.entity.label
1367
+ #. Sanction.properties.entity.label
1368
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Mention.yaml
1369
+ #: followthemoney/schema/Note.yaml followthemoney/schema/Sanction.yaml
1370
+ #: followthemoney/types/entity.py:27
1371
+ msgid "Entity"
1372
+ msgstr ""
1373
+
1374
+ #. Documentation.properties.entity.reverse.label
1375
+ #. Pages.plural
1376
+ #: followthemoney/schema/Documentation.yml followthemoney/schema/Pages.yaml
1377
+ msgid "Documents"
1378
+ msgstr ""
1379
+
1380
+ #. EconomicActivity.label
1381
+ #: followthemoney/schema/EconomicActivity.yaml
1382
+ msgid "Customs declaration"
1383
+ msgstr ""
1384
+
1385
+ #. EconomicActivity.plural
1386
+ #. EconomicActivity.properties.declarant.reverse.label
1387
+ #. EconomicActivity.properties.bankAccount.reverse.label
1388
+ #. EconomicActivity.properties.transport.reverse.label
1389
+ #: followthemoney/schema/EconomicActivity.yaml
1390
+ msgid "Customs declarations"
1391
+ msgstr ""
1392
+
1393
+ #. EconomicActivity.description
1394
+ #: followthemoney/schema/EconomicActivity.yaml
1395
+ msgid "A foreign economic activity"
1396
+ msgstr ""
1397
+
1398
+ #. EconomicActivity.properties.contract.reverse.label
1399
+ #: followthemoney/schema/EconomicActivity.yaml
1400
+ msgid "Used in customs"
1401
+ msgstr ""
1402
+
1403
+ #. EconomicActivity.properties.ccdNumber.label
1404
+ #: followthemoney/schema/EconomicActivity.yaml
1405
+ msgid "Customs Cargo Declaration Number"
1406
+ msgstr ""
1407
+
1408
+ #. EconomicActivity.properties.ccdValue.label
1409
+ #: followthemoney/schema/EconomicActivity.yaml
1410
+ msgid "CCD Value"
1411
+ msgstr ""
1412
+
1413
+ #. EconomicActivity.properties.ccdValue.description
1414
+ #: followthemoney/schema/EconomicActivity.yaml
1415
+ msgid "Declaration Value"
1416
+ msgstr ""
1417
+
1418
+ #. EconomicActivity.properties.directionOfTransportation.label
1419
+ #: followthemoney/schema/EconomicActivity.yaml
1420
+ msgid "Direction of transportation"
1421
+ msgstr ""
1422
+
1423
+ #. EconomicActivity.properties.directionOfTransportation.description
1424
+ #: followthemoney/schema/EconomicActivity.yaml
1425
+ msgid "Direction of transportation (import/export)"
1426
+ msgstr ""
1427
+
1428
+ #. EconomicActivity.properties.customsProcedure.label
1429
+ #: followthemoney/schema/EconomicActivity.yaml
1430
+ msgid "Customs Procedure"
1431
+ msgstr ""
1432
+
1433
+ #. EconomicActivity.properties.customsProcedure.description
1434
+ #: followthemoney/schema/EconomicActivity.yaml
1435
+ msgid "Customs Procedure — type of customs clearance"
1436
+ msgstr ""
1437
+
1438
+ #. EconomicActivity.properties.vedCode.label
1439
+ #: followthemoney/schema/EconomicActivity.yaml
1440
+ msgid "FEAC Code"
1441
+ msgstr ""
1442
+
1443
+ #. EconomicActivity.properties.vedCode.description
1444
+ #: followthemoney/schema/EconomicActivity.yaml
1445
+ msgid "(Код ТН ВЭД) Foreign Economic Activity Commodity Code"
1446
+ msgstr ""
1447
+
1448
+ #. EconomicActivity.properties.vedCodeDescription.label
1449
+ #: followthemoney/schema/EconomicActivity.yaml
1450
+ msgid "FEAC Code description"
1451
+ msgstr ""
1452
+
1453
+ #. EconomicActivity.properties.vedCodeDescription.description
1454
+ #: followthemoney/schema/EconomicActivity.yaml
1455
+ msgid ""
1456
+ "(Описание кода ТН ВЭД) Foreign Economic Activity Commodity Code description"
1457
+ msgstr ""
1458
+
1459
+ #. EconomicActivity.properties.goodsDescription.label
1460
+ #. Interval.properties.description.label
1461
+ #. Thing.properties.description.label
1462
+ #: followthemoney/schema/EconomicActivity.yaml
1463
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
1464
+ msgid "Description"
1465
+ msgstr ""
1466
+
1467
+ #. EconomicActivity.properties.goodsDescription.description
1468
+ #: followthemoney/schema/EconomicActivity.yaml
1469
+ msgid "Description of goods"
1470
+ msgstr ""
1471
+
1472
+ #. EconomicActivity.properties.declarant.label
1473
+ #: followthemoney/schema/EconomicActivity.yaml
1474
+ msgid "Declarant"
1475
+ msgstr ""
1476
+
1477
+ #. EconomicActivity.properties.declarant.description
1478
+ #: followthemoney/schema/EconomicActivity.yaml
1479
+ msgid "Customs declarant"
1480
+ msgstr ""
1481
+
1482
+ #. EconomicActivity.properties.sender.label
1483
+ #. Email.properties.sender.label
1484
+ #. Message.properties.sender.label
1485
+ #: followthemoney/schema/EconomicActivity.yaml
1486
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1487
+ msgid "Sender"
1488
+ msgstr ""
1489
+
1490
+ #. EconomicActivity.properties.sender.description
1491
+ #: followthemoney/schema/EconomicActivity.yaml
1492
+ msgid "Origin of the goods"
1493
+ msgstr ""
1494
+
1495
+ #. EconomicActivity.properties.sender.reverse.label
1496
+ #: followthemoney/schema/EconomicActivity.yaml
1497
+ msgid "Goods originated"
1498
+ msgstr ""
1499
+
1500
+ #. EconomicActivity.properties.receiver.description
1501
+ #: followthemoney/schema/EconomicActivity.yaml
1502
+ msgid "Destination of the goods"
1503
+ msgstr ""
1504
+
1505
+ #. EconomicActivity.properties.receiver.reverse.label
1506
+ #: followthemoney/schema/EconomicActivity.yaml
1507
+ msgid "Goods received"
1508
+ msgstr ""
1509
+
1510
+ #. EconomicActivity.properties.contractHolder.label
1511
+ #: followthemoney/schema/EconomicActivity.yaml
1512
+ msgid "Contract holder"
1513
+ msgstr ""
1514
+
1515
+ #. EconomicActivity.properties.contractHolder.description
1516
+ #: followthemoney/schema/EconomicActivity.yaml
1517
+ msgid "Customs formalities caretaker"
1518
+ msgstr ""
1519
+
1520
+ #. EconomicActivity.properties.contractHolder.reverse.label
1521
+ #: followthemoney/schema/EconomicActivity.yaml
1522
+ msgid "Customs declarations facilitated"
1523
+ msgstr ""
1524
+
1525
+ #. EconomicActivity.properties.invoiceAmount.label
1526
+ #: followthemoney/schema/EconomicActivity.yaml
1527
+ msgid "Invoice Value Amount"
1528
+ msgstr ""
1529
+
1530
+ #. EconomicActivity.properties.invoiceAmount.description
1531
+ #: followthemoney/schema/EconomicActivity.yaml
1532
+ msgid "Invoice Value of goods"
1533
+ msgstr ""
1534
+
1535
+ #. EconomicActivity.properties.customsAmount.label
1536
+ #: followthemoney/schema/EconomicActivity.yaml
1537
+ msgid "Customs Value Amount"
1538
+ msgstr ""
1539
+
1540
+ #. EconomicActivity.properties.customsAmount.description
1541
+ #: followthemoney/schema/EconomicActivity.yaml
1542
+ msgid "Customs Value of goods"
1543
+ msgstr ""
1544
+
1545
+ #. EconomicActivity.properties.dollarExchRate.label
1546
+ #: followthemoney/schema/EconomicActivity.yaml
1547
+ msgid "USD Exchange Rate"
1548
+ msgstr ""
1549
+
1550
+ #. EconomicActivity.properties.dollarExchRate.description
1551
+ #: followthemoney/schema/EconomicActivity.yaml
1552
+ msgid "USD Exchange Rate for the activity"
1553
+ msgstr ""
1554
+
1555
+ #. EconomicActivity.properties.tradingCountry.label
1556
+ #: followthemoney/schema/EconomicActivity.yaml
1557
+ msgid "Trading Country"
1558
+ msgstr ""
1559
+
1560
+ #. EconomicActivity.properties.tradingCountry.description
1561
+ #: followthemoney/schema/EconomicActivity.yaml
1562
+ msgid ""
1563
+ "Trading Country of the company which transports the goods via Russian border"
1564
+ msgstr ""
1565
+
1566
+ #. EconomicActivity.properties.departureCountry.label
1567
+ #: followthemoney/schema/EconomicActivity.yaml
1568
+ msgid "Country of departure"
1569
+ msgstr ""
1570
+
1571
+ #. EconomicActivity.properties.departureCountry.description
1572
+ #: followthemoney/schema/EconomicActivity.yaml
1573
+ msgid "Country out of which the goods are transported"
1574
+ msgstr ""
1575
+
1576
+ #. EconomicActivity.properties.destinationCountry.label
1577
+ #: followthemoney/schema/EconomicActivity.yaml
1578
+ msgid "Country of destination"
1579
+ msgstr ""
1580
+
1581
+ #. EconomicActivity.properties.destinationCountry.description
1582
+ #: followthemoney/schema/EconomicActivity.yaml
1583
+ msgid "Final destination for the goods"
1584
+ msgstr ""
1585
+
1586
+ #. EconomicActivity.properties.originCountry.label
1587
+ #. LegalEntity.properties.mainCountry.label
1588
+ #: followthemoney/schema/EconomicActivity.yaml
1589
+ #: followthemoney/schema/LegalEntity.yaml
1590
+ msgid "Country of origin"
1591
+ msgstr ""
1592
+
1593
+ #. EconomicActivity.properties.originCountry.description
1594
+ #: followthemoney/schema/EconomicActivity.yaml
1595
+ msgid "Country of origin of goods"
1596
+ msgstr ""
1597
+
1598
+ #. EconomicActivity.properties.bankAccount.label
1599
+ #: followthemoney/schema/EconomicActivity.yaml
1600
+ msgid "Bank Account"
1601
+ msgstr ""
1602
+
1603
+ #. EconomicActivity.properties.bankAccount.description
1604
+ #: followthemoney/schema/EconomicActivity.yaml
1605
+ msgid "Bank account of the contract"
1606
+ msgstr ""
1607
+
1608
+ #. EconomicActivity.properties.bankRub.label
1609
+ #: followthemoney/schema/EconomicActivity.yaml
1610
+ msgid "Rouble bank"
1611
+ msgstr ""
1612
+
1613
+ #. EconomicActivity.properties.bankRub.description
1614
+ #: followthemoney/schema/EconomicActivity.yaml
1615
+ msgid "Bank account for payments in roubles"
1616
+ msgstr ""
1617
+
1618
+ #. EconomicActivity.properties.bankRub.reverse.label
1619
+ #: followthemoney/schema/EconomicActivity.yaml
1620
+ msgid "Customs declarations (as rouble bank)"
1621
+ msgstr ""
1622
+
1623
+ #. EconomicActivity.properties.bankForeign.label
1624
+ #: followthemoney/schema/EconomicActivity.yaml
1625
+ msgid "Foreign currency bank"
1626
+ msgstr ""
1627
+
1628
+ #. EconomicActivity.properties.bankForeign.description
1629
+ #: followthemoney/schema/EconomicActivity.yaml
1630
+ msgid "Bank account for payments in foreign currency"
1631
+ msgstr ""
1632
+
1633
+ #. EconomicActivity.properties.bankForeign.reverse.label
1634
+ #: followthemoney/schema/EconomicActivity.yaml
1635
+ msgid "Customs declarations (as foreign bank)"
1636
+ msgstr ""
1637
+
1638
+ #. EconomicActivity.properties.transport.label
1639
+ #: followthemoney/schema/EconomicActivity.yaml
1640
+ msgid "Transport"
1641
+ msgstr ""
1642
+
1643
+ #. EconomicActivity.properties.transport.description
1644
+ #: followthemoney/schema/EconomicActivity.yaml
1645
+ msgid "Means of transportation"
1646
+ msgstr ""
1647
+
1648
+ #. Email.label
1649
+ #. LegalEntity.properties.email.label
1650
+ #. UserAccount.properties.email.label
1651
+ #: followthemoney/schema/Email.yaml followthemoney/schema/LegalEntity.yaml
1652
+ #: followthemoney/schema/UserAccount.yaml
1653
+ msgid "E-Mail"
1654
+ msgstr ""
1655
+
1656
+ #. Email.plural
1657
+ #: followthemoney/schema/Email.yaml
1658
+ msgid "E-Mails"
1659
+ msgstr ""
1660
+
1661
+ #. Email.description
1662
+ #: followthemoney/schema/Email.yaml
1663
+ msgid ""
1664
+ "An internet mail message. The body can be formatted as plain text and/or "
1665
+ "HTML, and the message may have any number of attachments."
1666
+ msgstr ""
1667
+
1668
+ #. Email.properties.subject.label
1669
+ #. Message.properties.subject.label
1670
+ #. UnknownLink.properties.subject.label
1671
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1672
+ #: followthemoney/schema/UnknownLink.yaml
1673
+ msgid "Subject"
1674
+ msgstr ""
1675
+
1676
+ #. Email.properties.threadTopic.label
1677
+ #. Message.properties.threadTopic.label
1678
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1679
+ msgid "Thread topic"
1680
+ msgstr ""
1681
+
1682
+ #. Email.properties.from.label
1683
+ #: followthemoney/schema/Email.yaml
1684
+ msgid "From"
1685
+ msgstr ""
1686
+
1687
+ #. Email.properties.to.label
1688
+ #: followthemoney/schema/Email.yaml
1689
+ msgid "To"
1690
+ msgstr ""
1691
+
1692
+ #. Email.properties.cc.label
1693
+ #: followthemoney/schema/Email.yaml
1694
+ msgid "CC"
1695
+ msgstr ""
1696
+
1697
+ #. Email.properties.cc.description
1698
+ #: followthemoney/schema/Email.yaml
1699
+ msgid "Carbon copy"
1700
+ msgstr ""
1701
+
1702
+ #. Email.properties.bcc.label
1703
+ #: followthemoney/schema/Email.yaml
1704
+ msgid "BCC"
1705
+ msgstr ""
1706
+
1707
+ #. Email.properties.bcc.description
1708
+ #: followthemoney/schema/Email.yaml
1709
+ msgid "Blind carbon copy"
1710
+ msgstr ""
1711
+
1712
+ #. Email.properties.emitters.label
1713
+ #: followthemoney/schema/Email.yaml
1714
+ msgid "Emitter"
1715
+ msgstr ""
1716
+
1717
+ #. Email.properties.emitters.reverse.label
1718
+ #: followthemoney/schema/Email.yaml
1719
+ msgid "E-Mails sent"
1720
+ msgstr ""
1721
+
1722
+ #. Email.properties.recipients.label
1723
+ #. Message.properties.recipients.label
1724
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1725
+ msgid "Recipients"
1726
+ msgstr ""
1727
+
1728
+ #. Email.properties.recipients.reverse.label
1729
+ #: followthemoney/schema/Email.yaml
1730
+ msgid "E-Mails received"
1731
+ msgstr ""
1732
+
1733
+ #. Email.properties.inReplyTo.label
1734
+ #. Message.properties.inReplyTo.label
1735
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1736
+ msgid "In Reply To"
1737
+ msgstr ""
1738
+
1739
+ #. Email.properties.inReplyTo.description
1740
+ #: followthemoney/schema/Email.yaml
1741
+ msgid "Message ID of the preceding email in the thread"
1742
+ msgstr ""
1743
+
1744
+ #. Email.properties.inReplyToEmail.label
1745
+ #. Message.properties.inReplyToMessage.label
1746
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1747
+ msgid "Responding to"
1748
+ msgstr ""
1749
+
1750
+ #. Email.properties.inReplyToEmail.reverse.label
1751
+ #. Message.properties.inReplyToMessage.reverse.label
1752
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1753
+ msgid "Responses"
1754
+ msgstr ""
1755
+
1756
+ #. Email.properties.headers.label
1757
+ #: followthemoney/schema/Email.yaml
1758
+ msgid "Raw headers"
1759
+ msgstr ""
1760
+
1761
+ #. Employment.label
1762
+ #: followthemoney/schema/Employment.yaml
1763
+ msgid "Employment"
1764
+ msgstr ""
1765
+
1766
+ #. Employment.plural
1767
+ #: followthemoney/schema/Employment.yaml
1768
+ msgid "Employments"
1769
+ msgstr ""
1770
+
1771
+ #. Employment.edge.label
1772
+ #: followthemoney/schema/Employment.yaml
1773
+ msgid "works for"
1774
+ msgstr ""
1775
+
1776
+ #. Employment.properties.employer.label
1777
+ #: followthemoney/schema/Employment.yaml
1778
+ msgid "Employer"
1779
+ msgstr ""
1780
+
1781
+ #. Employment.properties.employer.reverse.label
1782
+ #: followthemoney/schema/Employment.yaml
1783
+ msgid "Employees"
1784
+ msgstr ""
1785
+
1786
+ #. Employment.properties.employee.label
1787
+ #: followthemoney/schema/Employment.yaml
1788
+ msgid "Employee"
1789
+ msgstr ""
1790
+
1791
+ #. Employment.properties.employee.reverse.label
1792
+ #: followthemoney/schema/Employment.yaml
1793
+ msgid "Employers"
1794
+ msgstr ""
1795
+
1796
+ #. Event.label
1797
+ #: followthemoney/schema/Event.yaml
1798
+ msgid "Event"
1799
+ msgstr ""
1800
+
1801
+ #. Event.plural
1802
+ #. Event.properties.involved.reverse.label
1803
+ #: followthemoney/schema/Event.yaml
1804
+ msgid "Events"
1805
+ msgstr ""
1806
+
1807
+ #. Event.properties.location.label
1808
+ #: followthemoney/schema/Event.yaml
1809
+ msgid "Location"
1810
+ msgstr ""
1811
+
1812
+ #. Event.properties.important.label
1813
+ #: followthemoney/schema/Event.yaml
1814
+ msgid "Important"
1815
+ msgstr ""
1816
+
1817
+ #. Event.properties.organizer.label
1818
+ #: followthemoney/schema/Event.yaml
1819
+ msgid "Organizer"
1820
+ msgstr ""
1821
+
1822
+ #. Event.properties.organizer.reverse.label
1823
+ #: followthemoney/schema/Event.yaml
1824
+ msgid "Organized events"
1825
+ msgstr ""
1826
+
1827
+ #. Event.properties.involved.label
1828
+ #: followthemoney/schema/Event.yaml
1829
+ msgid "Involved"
1830
+ msgstr ""
1831
+
1832
+ #. Family.label
1833
+ #: followthemoney/schema/Family.yaml
1834
+ msgid "Family"
1835
+ msgstr ""
1836
+
1837
+ #. Family.plural
1838
+ #. Family.properties.person.reverse.label
1839
+ #: followthemoney/schema/Family.yaml
1840
+ msgid "Family members"
1841
+ msgstr ""
1842
+
1843
+ #. Family.description
1844
+ #: followthemoney/schema/Family.yaml
1845
+ msgid "Family relationship between two people"
1846
+ msgstr ""
1847
+
1848
+ #. Family.edge.label
1849
+ #: followthemoney/schema/Family.yaml
1850
+ msgid "related to"
1851
+ msgstr ""
1852
+
1853
+ #. Family.properties.person.description
1854
+ #: followthemoney/schema/Family.yaml
1855
+ msgid "The subject of the familial relation."
1856
+ msgstr ""
1857
+
1858
+ #. Family.properties.relative.label
1859
+ #: followthemoney/schema/Family.yaml
1860
+ msgid "Relative"
1861
+ msgstr ""
1862
+
1863
+ #. Family.properties.relative.reverse.label
1864
+ #: followthemoney/schema/Family.yaml
1865
+ msgid "Relatives"
1866
+ msgstr ""
1867
+
1868
+ #. Family.properties.relative.description
1869
+ #: followthemoney/schema/Family.yaml
1870
+ msgid "The relative of the subject person."
1871
+ msgstr ""
1872
+
1873
+ #. Family.properties.relationship.description
1874
+ #: followthemoney/schema/Family.yaml
1875
+ msgid ""
1876
+ "Nature of the relationship, from the person's perspective eg. 'mother', "
1877
+ "where 'relative' is mother of 'person'."
1878
+ msgstr ""
1879
+
1880
+ #. Folder.plural
1881
+ #: followthemoney/schema/Folder.yaml
1882
+ msgid "Folders"
1883
+ msgstr ""
1884
+
1885
+ #. HyperText.label
1886
+ #: followthemoney/schema/HyperText.yaml
1887
+ msgid "Web page"
1888
+ msgstr ""
1889
+
1890
+ #. HyperText.plural
1891
+ #: followthemoney/schema/HyperText.yaml
1892
+ msgid "Web pages"
1893
+ msgstr ""
1894
+
1895
+ #. HyperText.properties.bodyHtml.label
1896
+ #: followthemoney/schema/HyperText.yaml followthemoney/types/string.py:38
1897
+ msgid "HTML"
1898
+ msgstr ""
1899
+
1900
+ #. Identification.label
1901
+ #: followthemoney/schema/Identification.yaml
1902
+ msgid "Identification"
1903
+ msgstr ""
1904
+
1905
+ #. Identification.plural
1906
+ #. Identification.properties.holder.reverse.label
1907
+ #: followthemoney/schema/Identification.yaml
1908
+ msgid "Identifications"
1909
+ msgstr ""
1910
+
1911
+ #. Identification.description
1912
+ #: followthemoney/schema/Identification.yaml
1913
+ msgid ""
1914
+ "An form of identification associated with its holder and some issuing "
1915
+ "country. This can be used for national ID cards, voter enrollments and "
1916
+ "similar instruments.\n"
1917
+ msgstr ""
1918
+
1919
+ #. Identification.properties.holder.label
1920
+ #: followthemoney/schema/Identification.yaml
1921
+ msgid "Identification holder"
1922
+ msgstr ""
1923
+
1924
+ #. Identification.properties.number.label
1925
+ #. Passport.properties.passportNumber.label
1926
+ #. Person.properties.passportNumber.label
1927
+ #: followthemoney/schema/Identification.yaml
1928
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
1929
+ msgid "Passport number"
1930
+ msgstr ""
1931
+
1932
+ #. Identification.properties.authority.label
1933
+ #. Sanction.properties.authority.label
1934
+ #: followthemoney/schema/Identification.yaml
1935
+ #: followthemoney/schema/Sanction.yaml
1936
+ msgid "Authority"
1937
+ msgstr ""
1938
+
1939
+ #. Image.label
1940
+ #: followthemoney/schema/Image.yaml
1941
+ msgid "Image"
1942
+ msgstr ""
1943
+
1944
+ #. Image.plural
1945
+ #: followthemoney/schema/Image.yaml
1946
+ msgid "Images"
1947
+ msgstr ""
1948
+
1949
+ #. Image.description
1950
+ #: followthemoney/schema/Image.yaml
1951
+ msgid "An image file.\n"
1952
+ msgstr ""
1953
+
1954
+ #. Interest.label
1955
+ #: followthemoney/schema/Interest.yaml
1956
+ msgid "Interest"
1957
+ msgstr ""
1958
+
1959
+ #. Interest.properties.role.label
1960
+ #: followthemoney/schema/Interest.yaml
1961
+ msgid "Role"
1962
+ msgstr ""
1963
+
1964
+ #. Interval.label
1965
+ #: followthemoney/schema/Interval.yaml
1966
+ msgid "Interval"
1967
+ msgstr ""
1968
+
1969
+ #. Interval.description
1970
+ #: followthemoney/schema/Interval.yaml
1971
+ msgid "An object which is bounded in time.\n"
1972
+ msgstr ""
1973
+
1974
+ #. Interval.properties.startDate.label
1975
+ #: followthemoney/schema/Interval.yaml
1976
+ msgid "Start date"
1977
+ msgstr ""
1978
+
1979
+ #. Interval.properties.endDate.label
1980
+ #: followthemoney/schema/Interval.yaml
1981
+ msgid "End date"
1982
+ msgstr ""
1983
+
1984
+ #. Interval.properties.summary.label
1985
+ #. Thing.properties.summary.label
1986
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
1987
+ msgid "Summary"
1988
+ msgstr ""
1989
+
1990
+ #. Interval.properties.recordId.label
1991
+ #: followthemoney/schema/Interval.yaml
1992
+ msgid "Record ID"
1993
+ msgstr ""
1994
+
1995
+ #. Interval.properties.sourceUrl.label
1996
+ #. Thing.properties.sourceUrl.label
1997
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
1998
+ msgid "Source link"
1999
+ msgstr ""
2000
+
2001
+ #. Interval.properties.publisher.label
2002
+ #. Thing.properties.publisher.label
2003
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2004
+ msgid "Publishing source"
2005
+ msgstr ""
2006
+
2007
+ #. Interval.properties.publisherUrl.label
2008
+ #. Thing.properties.publisherUrl.label
2009
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2010
+ msgid "Publishing source URL"
2011
+ msgstr ""
2012
+
2013
+ #. Interval.properties.alephUrl.label
2014
+ #. Thing.properties.alephUrl.label
2015
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2016
+ msgid "Aleph URL"
2017
+ msgstr ""
2018
+
2019
+ #. Interval.properties.indexText.label
2020
+ #. Page.properties.indexText.label
2021
+ #. Thing.properties.indexText.label
2022
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Page.yaml
2023
+ #: followthemoney/schema/Thing.yaml
2024
+ msgid "Index text"
2025
+ msgstr ""
2026
+
2027
+ #. Interval.properties.modifiedAt.label
2028
+ #. Thing.properties.modifiedAt.label
2029
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2030
+ msgid "Modified on"
2031
+ msgstr ""
2032
+
2033
+ #. Interval.properties.retrievedAt.label
2034
+ #. Thing.properties.retrievedAt.label
2035
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2036
+ msgid "Retrieved on"
2037
+ msgstr ""
2038
+
2039
+ #. LegalEntity.label
2040
+ #: followthemoney/schema/LegalEntity.yaml
2041
+ msgid "Legal entity"
2042
+ msgstr ""
2043
+
2044
+ #. LegalEntity.plural
2045
+ #: followthemoney/schema/LegalEntity.yaml
2046
+ msgid "Legal entities"
2047
+ msgstr ""
2048
+
2049
+ #. LegalEntity.description
2050
+ #: followthemoney/schema/LegalEntity.yaml
2051
+ msgid ""
2052
+ "Any party to legal proceedings, such as asset ownership, corporate "
2053
+ "governance or social interactions. Often used when raw data does not specify"
2054
+ " if something is a person or company.\n"
2055
+ msgstr ""
2056
+
2057
+ #. LegalEntity.properties.email.description
2058
+ #: followthemoney/schema/LegalEntity.yaml
2059
+ msgid "Email address"
2060
+ msgstr ""
2061
+
2062
+ #. LegalEntity.properties.phone.label
2063
+ #: followthemoney/schema/LegalEntity.yaml
2064
+ msgid "Phone"
2065
+ msgstr ""
2066
+
2067
+ #. LegalEntity.properties.phone.description
2068
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/types/phone.py:35
2069
+ msgid "Phone number"
2070
+ msgstr ""
2071
+
2072
+ #. LegalEntity.properties.website.label
2073
+ #: followthemoney/schema/LegalEntity.yaml
2074
+ msgid "Website"
2075
+ msgstr ""
2076
+
2077
+ #. LegalEntity.properties.website.description
2078
+ #: followthemoney/schema/LegalEntity.yaml
2079
+ msgid "Website address"
2080
+ msgstr ""
2081
+
2082
+ #. LegalEntity.properties.legalForm.label
2083
+ #: followthemoney/schema/LegalEntity.yaml
2084
+ msgid "Legal form"
2085
+ msgstr ""
2086
+
2087
+ #. LegalEntity.properties.incorporationDate.label
2088
+ #: followthemoney/schema/LegalEntity.yaml
2089
+ msgid "Incorporation date"
2090
+ msgstr ""
2091
+
2092
+ #. LegalEntity.properties.incorporationDate.description
2093
+ #: followthemoney/schema/LegalEntity.yaml
2094
+ msgid "The date the legal entity was incorporated"
2095
+ msgstr ""
2096
+
2097
+ #. LegalEntity.properties.dissolutionDate.label
2098
+ #: followthemoney/schema/LegalEntity.yaml
2099
+ msgid "Dissolution date"
2100
+ msgstr ""
2101
+
2102
+ #. LegalEntity.properties.dissolutionDate.description
2103
+ #: followthemoney/schema/LegalEntity.yaml
2104
+ msgid "The date the legal entity was dissolved, if applicable"
2105
+ msgstr ""
2106
+
2107
+ #. LegalEntity.properties.taxStatus.label
2108
+ #: followthemoney/schema/LegalEntity.yaml
2109
+ msgid "Tax status"
2110
+ msgstr ""
2111
+
2112
+ #. LegalEntity.properties.sector.label
2113
+ #: followthemoney/schema/LegalEntity.yaml
2114
+ msgid "Sector"
2115
+ msgstr ""
2116
+
2117
+ #. LegalEntity.properties.registrationNumber.description
2118
+ #: followthemoney/schema/LegalEntity.yaml
2119
+ msgid "Company registration number"
2120
+ msgstr ""
2121
+
2122
+ #. LegalEntity.properties.idNumber.label
2123
+ #: followthemoney/schema/LegalEntity.yaml
2124
+ msgid "ID Number"
2125
+ msgstr ""
2126
+
2127
+ #. LegalEntity.properties.idNumber.description
2128
+ #: followthemoney/schema/LegalEntity.yaml
2129
+ msgid "ID number of any applicable ID"
2130
+ msgstr ""
2131
+
2132
+ #. LegalEntity.properties.taxNumber.label
2133
+ #: followthemoney/schema/LegalEntity.yaml
2134
+ msgid "Tax Number"
2135
+ msgstr ""
2136
+
2137
+ #. LegalEntity.properties.taxNumber.description
2138
+ #: followthemoney/schema/LegalEntity.yaml
2139
+ msgid "Tax identification number"
2140
+ msgstr ""
2141
+
2142
+ #. LegalEntity.properties.vatCode.label
2143
+ #: followthemoney/schema/LegalEntity.yaml
2144
+ msgid "V.A.T. Identifier"
2145
+ msgstr ""
2146
+
2147
+ #. LegalEntity.properties.vatCode.description
2148
+ #: followthemoney/schema/LegalEntity.yaml
2149
+ msgid "(EU) VAT number"
2150
+ msgstr ""
2151
+
2152
+ #. LegalEntity.properties.jurisdiction.description
2153
+ #: followthemoney/schema/LegalEntity.yaml
2154
+ msgid "Country or region in which this entity operates"
2155
+ msgstr ""
2156
+
2157
+ #. LegalEntity.properties.mainCountry.description
2158
+ #: followthemoney/schema/LegalEntity.yaml
2159
+ msgid "Primary country of this entity"
2160
+ msgstr ""
2161
+
2162
+ #. LegalEntity.properties.opencorporatesUrl.label
2163
+ #: followthemoney/schema/LegalEntity.yaml
2164
+ msgid "OpenCorporates URL"
2165
+ msgstr ""
2166
+
2167
+ #. LegalEntity.properties.bvdId.label
2168
+ #: followthemoney/schema/LegalEntity.yaml
2169
+ msgid "Bureau van Dijk ID"
2170
+ msgstr ""
2171
+
2172
+ #. LegalEntity.properties.icijId.label
2173
+ #: followthemoney/schema/LegalEntity.yaml
2174
+ msgid "ICIJ ID"
2175
+ msgstr ""
2176
+
2177
+ #. LegalEntity.properties.icijId.description
2178
+ #: followthemoney/schema/LegalEntity.yaml
2179
+ msgid "ID according to International Consortium for Investigative Journalists"
2180
+ msgstr ""
2181
+
2182
+ #. LegalEntity.properties.okpoCode.label
2183
+ #: followthemoney/schema/LegalEntity.yaml
2184
+ msgid "OKPO"
2185
+ msgstr ""
2186
+
2187
+ #. LegalEntity.properties.okpoCode.description
2188
+ #: followthemoney/schema/LegalEntity.yaml
2189
+ msgid "Russian industry classifier"
2190
+ msgstr ""
2191
+
2192
+ #. LegalEntity.properties.innCode.label
2193
+ #: followthemoney/schema/LegalEntity.yaml
2194
+ msgid "INN"
2195
+ msgstr ""
2196
+
2197
+ #. LegalEntity.properties.innCode.description
2198
+ #: followthemoney/schema/LegalEntity.yaml
2199
+ msgid "Russian company ID"
2200
+ msgstr ""
2201
+
2202
+ #. LegalEntity.properties.dunsCode.label
2203
+ #: followthemoney/schema/LegalEntity.yaml
2204
+ msgid "D-U-N-S"
2205
+ msgstr ""
2206
+
2207
+ #. LegalEntity.properties.dunsCode.description
2208
+ #: followthemoney/schema/LegalEntity.yaml
2209
+ msgid "Dun & Bradstreet identifier"
2210
+ msgstr ""
2211
+
2212
+ #. LegalEntity.properties.swiftBic.label
2213
+ #: followthemoney/schema/LegalEntity.yaml
2214
+ msgid "SWIFT/BIC"
2215
+ msgstr ""
2216
+
2217
+ #. LegalEntity.properties.swiftBic.description
2218
+ #: followthemoney/schema/LegalEntity.yaml
2219
+ msgid "Bank identifier code"
2220
+ msgstr ""
2221
+
2222
+ #. LegalEntity.properties.parent.label
2223
+ #: followthemoney/schema/LegalEntity.yaml
2224
+ msgid "Parent company"
2225
+ msgstr ""
2226
+
2227
+ #. LegalEntity.properties.parent.description
2228
+ #: followthemoney/schema/LegalEntity.yaml
2229
+ msgid ""
2230
+ "If this entity is a subsidiary, another entity (company or organisation) is "
2231
+ "its parent"
2232
+ msgstr ""
2233
+
2234
+ #. LegalEntity.properties.parent.reverse.label
2235
+ #: followthemoney/schema/LegalEntity.yaml
2236
+ msgid "Subsidiaries"
2237
+ msgstr ""
2238
+
2239
+ #. License.label
2240
+ #: followthemoney/schema/License.yaml
2241
+ msgid "License"
2242
+ msgstr ""
2243
+
2244
+ #. License.plural
2245
+ #: followthemoney/schema/License.yaml
2246
+ msgid "Licenses"
2247
+ msgstr ""
2248
+
2249
+ #. License.description
2250
+ #: followthemoney/schema/License.yaml
2251
+ msgid "A grant of land, rights or property. A type of Contract"
2252
+ msgstr ""
2253
+
2254
+ #. License.properties.area.label
2255
+ #. RealEstate.properties.area.label
2256
+ #: followthemoney/schema/License.yaml followthemoney/schema/RealEstate.yaml
2257
+ msgid "Area"
2258
+ msgstr ""
2259
+
2260
+ #. License.properties.commodities.label
2261
+ #: followthemoney/schema/License.yaml
2262
+ msgid "Commodities"
2263
+ msgstr ""
2264
+
2265
+ #. License.properties.reviewDate.label
2266
+ #: followthemoney/schema/License.yaml
2267
+ msgid "License review date"
2268
+ msgstr ""
2269
+
2270
+ #. Membership.label
2271
+ #: followthemoney/schema/Membership.yaml
2272
+ msgid "Membership"
2273
+ msgstr ""
2274
+
2275
+ #. Membership.plural
2276
+ #. Membership.properties.member.reverse.label
2277
+ #: followthemoney/schema/Membership.yaml
2278
+ msgid "Memberships"
2279
+ msgstr ""
2280
+
2281
+ #. Membership.edge.label
2282
+ #: followthemoney/schema/Membership.yaml
2283
+ msgid "belongs to"
2284
+ msgstr ""
2285
+
2286
+ #. Membership.properties.member.label
2287
+ #: followthemoney/schema/Membership.yaml
2288
+ msgid "Member"
2289
+ msgstr ""
2290
+
2291
+ #. Membership.properties.organization.reverse.label
2292
+ #: followthemoney/schema/Membership.yaml
2293
+ msgid "Members"
2294
+ msgstr ""
2295
+
2296
+ #. Mention.label
2297
+ #: followthemoney/schema/Mention.yaml
2298
+ msgid "Mention"
2299
+ msgstr ""
2300
+
2301
+ #. Mention.plural
2302
+ #: followthemoney/schema/Mention.yaml
2303
+ msgid "Mentions"
2304
+ msgstr ""
2305
+
2306
+ #. Mention.properties.document.reverse.label
2307
+ #: followthemoney/schema/Mention.yaml
2308
+ msgid "Extracted names"
2309
+ msgstr ""
2310
+
2311
+ #. Mention.properties.resolved.reverse.label
2312
+ #: followthemoney/schema/Mention.yaml
2313
+ msgid "Document mentions"
2314
+ msgstr ""
2315
+
2316
+ #. Mention.properties.name.label
2317
+ #. Thing.properties.name.label
2318
+ #: followthemoney/schema/Mention.yaml followthemoney/schema/Thing.yaml
2319
+ #: followthemoney/types/name.py:26
2320
+ msgid "Name"
2321
+ msgstr ""
2322
+
2323
+ #. Mention.properties.detectedSchema.label
2324
+ #: followthemoney/schema/Mention.yaml
2325
+ msgid "Detected entity type"
2326
+ msgstr ""
2327
+
2328
+ #. Mention.properties.contextCountry.label
2329
+ #: followthemoney/schema/Mention.yaml
2330
+ msgid "Co-occurring countries"
2331
+ msgstr ""
2332
+
2333
+ #. Mention.properties.contextPhone.label
2334
+ #: followthemoney/schema/Mention.yaml
2335
+ msgid "Co-occurring phone numbers"
2336
+ msgstr ""
2337
+
2338
+ #. Mention.properties.contextEmail.label
2339
+ #: followthemoney/schema/Mention.yaml
2340
+ msgid "Co-occurring e-mail addresses"
2341
+ msgstr ""
2342
+
2343
+ #. Message.label
2344
+ #: followthemoney/schema/Message.yaml
2345
+ msgid "Message"
2346
+ msgstr ""
2347
+
2348
+ #. Message.plural
2349
+ #: followthemoney/schema/Message.yaml
2350
+ msgid "Messages"
2351
+ msgstr ""
2352
+
2353
+ #. Message.properties.sender.reverse.label
2354
+ #. Message.properties.senderAccount.reverse.label
2355
+ #: followthemoney/schema/Message.yaml
2356
+ msgid "Messages sent"
2357
+ msgstr ""
2358
+
2359
+ #. Message.properties.senderAccount.label
2360
+ #: followthemoney/schema/Message.yaml
2361
+ msgid "Sender Account"
2362
+ msgstr ""
2363
+
2364
+ #. Message.properties.recipients.reverse.label
2365
+ #. Message.properties.recipientAccount.reverse.label
2366
+ #: followthemoney/schema/Message.yaml
2367
+ msgid "Messages received"
2368
+ msgstr ""
2369
+
2370
+ #. Message.properties.recipientAccount.label
2371
+ #: followthemoney/schema/Message.yaml
2372
+ msgid "Recipient Account"
2373
+ msgstr ""
2374
+
2375
+ #. Message.properties.inReplyTo.description
2376
+ #: followthemoney/schema/Message.yaml
2377
+ msgid "Message ID of the preceding message in the thread"
2378
+ msgstr ""
2379
+
2380
+ #. Message.properties.metadata.label
2381
+ #: followthemoney/schema/Message.yaml
2382
+ msgid "Metadata"
2383
+ msgstr ""
2384
+
2385
+ #. Note.label
2386
+ #: followthemoney/schema/Note.yaml
2387
+ msgid "Note"
2388
+ msgstr ""
2389
+
2390
+ #. Note.plural
2391
+ #. Note.properties.entity.reverse.label
2392
+ #. Thing.properties.notes.label
2393
+ #: followthemoney/schema/Note.yaml followthemoney/schema/Thing.yaml
2394
+ msgid "Notes"
2395
+ msgstr ""
2396
+
2397
+ #. Note.description
2398
+ #: followthemoney/schema/Note.yaml
2399
+ msgid "An annotation that applies to a document or entity.\n"
2400
+ msgstr ""
2401
+
2402
+ #. Organization.plural
2403
+ #: followthemoney/schema/Organization.yaml
2404
+ msgid "Organizations"
2405
+ msgstr ""
2406
+
2407
+ #. Organization.description
2408
+ #: followthemoney/schema/Organization.yaml
2409
+ msgid ""
2410
+ "Any type of incorporated entity that cannot be owned by another (see "
2411
+ "Company). This might include charities, foundations or state-owned "
2412
+ "enterprises, depending on their juristiction.\n"
2413
+ msgstr ""
2414
+
2415
+ #. Ownership.label
2416
+ #: followthemoney/schema/Ownership.yaml
2417
+ msgid "Ownership"
2418
+ msgstr ""
2419
+
2420
+ #. Ownership.plural
2421
+ #: followthemoney/schema/Ownership.yaml
2422
+ msgid "Ownerships"
2423
+ msgstr ""
2424
+
2425
+ #. Ownership.edge.label
2426
+ #: followthemoney/schema/Ownership.yaml
2427
+ msgid "owns"
2428
+ msgstr ""
2429
+
2430
+ #. Ownership.properties.owner.label
2431
+ #. UserAccount.properties.owner.label
2432
+ #. Vehicle.properties.owner.label
2433
+ #: followthemoney/schema/Ownership.yaml followthemoney/schema/UserAccount.yaml
2434
+ #: followthemoney/schema/Vehicle.yaml
2435
+ msgid "Owner"
2436
+ msgstr ""
2437
+
2438
+ #. Ownership.properties.owner.reverse.label
2439
+ #: followthemoney/schema/Ownership.yaml
2440
+ msgid "Assets and shares"
2441
+ msgstr ""
2442
+
2443
+ #. Ownership.properties.asset.reverse.label
2444
+ #: followthemoney/schema/Ownership.yaml
2445
+ msgid "Owners"
2446
+ msgstr ""
2447
+
2448
+ #. Ownership.properties.percentage.label
2449
+ #: followthemoney/schema/Ownership.yaml
2450
+ msgid "Percentage held"
2451
+ msgstr ""
2452
+
2453
+ #. Ownership.properties.sharesCount.label
2454
+ #: followthemoney/schema/Ownership.yaml
2455
+ msgid "Number of shares"
2456
+ msgstr ""
2457
+
2458
+ #. Ownership.properties.sharesValue.label
2459
+ #: followthemoney/schema/Ownership.yaml
2460
+ msgid "Value of shares"
2461
+ msgstr ""
2462
+
2463
+ #. Ownership.properties.sharesCurrency.label
2464
+ #: followthemoney/schema/Ownership.yaml
2465
+ msgid "Currency of shares"
2466
+ msgstr ""
2467
+
2468
+ #. Ownership.properties.sharesType.label
2469
+ #: followthemoney/schema/Ownership.yaml
2470
+ msgid "Type of shares"
2471
+ msgstr ""
2472
+
2473
+ #. Ownership.properties.legalBasis.label
2474
+ #: followthemoney/schema/Ownership.yaml
2475
+ msgid "Legal basis"
2476
+ msgstr ""
2477
+
2478
+ #. Ownership.properties.ownershipType.label
2479
+ #: followthemoney/schema/Ownership.yaml
2480
+ msgid "Type of ownership"
2481
+ msgstr ""
2482
+
2483
+ #. Package.label
2484
+ #: followthemoney/schema/Package.yaml
2485
+ msgid "Package"
2486
+ msgstr ""
2487
+
2488
+ #. Package.plural
2489
+ #: followthemoney/schema/Package.yaml
2490
+ msgid "Packages"
2491
+ msgstr ""
2492
+
2493
+ #. Package.description
2494
+ #: followthemoney/schema/Package.yaml
2495
+ msgid ""
2496
+ "A bundle of files that have been packaged together into some form of "
2497
+ "archive.\n"
2498
+ msgstr ""
2499
+
2500
+ #. Page.label
2501
+ #: followthemoney/schema/Page.yaml
2502
+ msgid "Page"
2503
+ msgstr ""
2504
+
2505
+ #. Page.plural
2506
+ #. Page.properties.document.reverse.label
2507
+ #: followthemoney/schema/Page.yaml
2508
+ msgid "Pages"
2509
+ msgstr ""
2510
+
2511
+ #. Page.properties.index.label
2512
+ #: followthemoney/schema/Page.yaml
2513
+ msgid "Index"
2514
+ msgstr ""
2515
+
2516
+ #. Pages.description
2517
+ #: followthemoney/schema/Pages.yaml
2518
+ msgid ""
2519
+ "A multi-page document, such as a PDF or Word file or slide-show "
2520
+ "presentation.\n"
2521
+ msgstr ""
2522
+
2523
+ #. Pages.properties.pdfHash.label
2524
+ #: followthemoney/schema/Pages.yaml
2525
+ msgid "PDF alternative version checksum"
2526
+ msgstr ""
2527
+
2528
+ #. Passport.label
2529
+ #: followthemoney/schema/Passport.yaml
2530
+ msgid "Passport"
2531
+ msgstr ""
2532
+
2533
+ #. Passport.plural
2534
+ #: followthemoney/schema/Passport.yaml
2535
+ msgid "Passports"
2536
+ msgstr ""
2537
+
2538
+ #. Passport.description
2539
+ #: followthemoney/schema/Passport.yaml
2540
+ msgid "An passport held by a person.\n"
2541
+ msgstr ""
2542
+
2543
+ #. Passport.properties.surname.label
2544
+ #. TaxRoll.properties.surname.label
2545
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
2546
+ msgid "Surname"
2547
+ msgstr ""
2548
+
2549
+ #. Passport.properties.givenName.label
2550
+ #. TaxRoll.properties.givenName.label
2551
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
2552
+ msgid "Given name"
2553
+ msgstr ""
2554
+
2555
+ #. Passport.properties.birthDate.label
2556
+ #. Person.properties.birthDate.label
2557
+ #. TaxRoll.properties.birthDate.label
2558
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2559
+ #: followthemoney/schema/TaxRoll.yaml
2560
+ msgid "Birth date"
2561
+ msgstr ""
2562
+
2563
+ #. Passport.properties.birthPlace.label
2564
+ #. Person.properties.birthPlace.label
2565
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2566
+ msgid "Place of birth"
2567
+ msgstr ""
2568
+
2569
+ #. Passport.properties.gender.label
2570
+ #. Person.properties.gender.label
2571
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2572
+ #: followthemoney/types/gender.py:40
2573
+ msgid "Gender"
2574
+ msgstr ""
2575
+
2576
+ #. Passport.properties.personalNumber.label
2577
+ #: followthemoney/schema/Passport.yaml
2578
+ msgid "Personal number"
2579
+ msgstr ""
2580
+
2581
+ #. Payment.label
2582
+ #: followthemoney/schema/Payment.yaml
2583
+ msgid "Payment"
2584
+ msgstr ""
2585
+
2586
+ #. Payment.plural
2587
+ #. Payment.properties.project.reverse.label
2588
+ #: followthemoney/schema/Payment.yaml
2589
+ msgid "Payments"
2590
+ msgstr ""
2591
+
2592
+ #. Payment.description
2593
+ #: followthemoney/schema/Payment.yaml
2594
+ msgid "A monetary payment between two parties."
2595
+ msgstr ""
2596
+
2597
+ #. Payment.edge.label
2598
+ #: followthemoney/schema/Payment.yaml
2599
+ msgid "paid"
2600
+ msgstr ""
2601
+
2602
+ #. Payment.properties.sequenceNumber.label
2603
+ #: followthemoney/schema/Payment.yaml
2604
+ msgid "Sequence number"
2605
+ msgstr ""
2606
+
2607
+ #. Payment.properties.transactionNumber.label
2608
+ #: followthemoney/schema/Payment.yaml
2609
+ msgid "Transaction number"
2610
+ msgstr ""
2611
+
2612
+ #. Payment.properties.purpose.label
2613
+ #: followthemoney/schema/Payment.yaml
2614
+ msgid "Payment purpose"
2615
+ msgstr ""
2616
+
2617
+ #. Payment.properties.programme.label
2618
+ #: followthemoney/schema/Payment.yaml
2619
+ msgid "Payment programme"
2620
+ msgstr ""
2621
+
2622
+ #. Payment.properties.programme.description
2623
+ #: followthemoney/schema/Payment.yaml
2624
+ msgid "Programme name, funding code, category identifier, etc."
2625
+ msgstr ""
2626
+
2627
+ #. Payment.properties.payer.label
2628
+ #: followthemoney/schema/Payment.yaml
2629
+ msgid "Payer"
2630
+ msgstr ""
2631
+
2632
+ #. Payment.properties.payer.reverse.label
2633
+ #. Payment.properties.payerAccount.reverse.label
2634
+ #: followthemoney/schema/Payment.yaml
2635
+ msgid "Payments made"
2636
+ msgstr ""
2637
+
2638
+ #. Payment.properties.payerAccount.label
2639
+ #: followthemoney/schema/Payment.yaml
2640
+ msgid "Payer bank account"
2641
+ msgstr ""
2642
+
2643
+ #. Payment.properties.beneficiary.label
2644
+ #: followthemoney/schema/Payment.yaml
2645
+ msgid "Beneficiary"
2646
+ msgstr ""
2647
+
2648
+ #. Payment.properties.beneficiary.reverse.label
2649
+ #. Payment.properties.beneficiaryAccount.reverse.label
2650
+ #: followthemoney/schema/Payment.yaml
2651
+ msgid "Payments received"
2652
+ msgstr ""
2653
+
2654
+ #. Payment.properties.beneficiaryAccount.label
2655
+ #: followthemoney/schema/Payment.yaml
2656
+ msgid "Beneficiary bank account"
2657
+ msgstr ""
2658
+
2659
+ #. Payment.properties.contract.reverse.label
2660
+ #: followthemoney/schema/Payment.yaml
2661
+ msgid "Contractual payments"
2662
+ msgstr ""
2663
+
2664
+ #. Person.plural
2665
+ #: followthemoney/schema/Person.yaml
2666
+ msgid "People"
2667
+ msgstr ""
2668
+
2669
+ #. Person.description
2670
+ #: followthemoney/schema/Person.yaml
2671
+ msgid "A natural person, as opposed to a corporation of some type.\n"
2672
+ msgstr ""
2673
+
2674
+ #. Person.properties.firstName.label
2675
+ #: followthemoney/schema/Person.yaml
2676
+ msgid "First name"
2677
+ msgstr ""
2678
+
2679
+ #. Person.properties.secondName.label
2680
+ #: followthemoney/schema/Person.yaml
2681
+ msgid "Second name"
2682
+ msgstr ""
2683
+
2684
+ #. Person.properties.middleName.label
2685
+ #: followthemoney/schema/Person.yaml
2686
+ msgid "Middle name"
2687
+ msgstr ""
2688
+
2689
+ #. Person.properties.fatherName.label
2690
+ #: followthemoney/schema/Person.yaml
2691
+ msgid "Patronymic"
2692
+ msgstr ""
2693
+
2694
+ #. Person.properties.motherName.label
2695
+ #: followthemoney/schema/Person.yaml
2696
+ msgid "Matronymic"
2697
+ msgstr ""
2698
+
2699
+ #. Person.properties.lastName.label
2700
+ #: followthemoney/schema/Person.yaml
2701
+ msgid "Last name"
2702
+ msgstr ""
2703
+
2704
+ #. Person.properties.deathDate.label
2705
+ #: followthemoney/schema/Person.yaml
2706
+ msgid "Death date"
2707
+ msgstr ""
2708
+
2709
+ #. Person.properties.position.label
2710
+ #: followthemoney/schema/Person.yaml
2711
+ msgid "Position"
2712
+ msgstr ""
2713
+
2714
+ #. Person.properties.nationality.label
2715
+ #: followthemoney/schema/Person.yaml
2716
+ msgid "Nationality"
2717
+ msgstr ""
2718
+
2719
+ #. Person.properties.ethnicity.label
2720
+ #: followthemoney/schema/Person.yaml
2721
+ msgid "Ethnicity"
2722
+ msgstr ""
2723
+
2724
+ #. Person.properties.religion.label
2725
+ #: followthemoney/schema/Person.yaml followthemoney/types/topic.py:62
2726
+ msgid "Religion"
2727
+ msgstr ""
2728
+
2729
+ #. Person.properties.political.label
2730
+ #: followthemoney/schema/Person.yaml
2731
+ msgid "Political association"
2732
+ msgstr ""
2733
+
2734
+ #. Person.properties.education.label
2735
+ #: followthemoney/schema/Person.yaml
2736
+ msgid "Education"
2737
+ msgstr ""
2738
+
2739
+ #. PlainText.label
2740
+ #: followthemoney/schema/PlainText.yaml
2741
+ msgid "Text file"
2742
+ msgstr ""
2743
+
2744
+ #. PlainText.plural
2745
+ #: followthemoney/schema/PlainText.yaml
2746
+ msgid "Text files"
2747
+ msgstr ""
2748
+
2749
+ #. PlainText.description
2750
+ #: followthemoney/schema/PlainText.yaml
2751
+ msgid "Text files, like .txt or source code.\n"
2752
+ msgstr ""
2753
+
2754
+ #. Project.plural
2755
+ #. ProjectParticipant.properties.participant.reverse.label
2756
+ #: followthemoney/schema/Project.yaml
2757
+ #: followthemoney/schema/ProjectParticipant.yaml
2758
+ msgid "Projects"
2759
+ msgstr ""
2760
+
2761
+ #. Project.description
2762
+ #. ProjectParticipant.description
2763
+ #: followthemoney/schema/Project.yaml
2764
+ #: followthemoney/schema/ProjectParticipant.yaml
2765
+ msgid "An activity carried out by a group of participants.\n"
2766
+ msgstr ""
2767
+
2768
+ #. Project.properties.projectId.label
2769
+ #: followthemoney/schema/Project.yaml
2770
+ msgid "Project ID"
2771
+ msgstr ""
2772
+
2773
+ #. Project.properties.phase.label
2774
+ #: followthemoney/schema/Project.yaml
2775
+ msgid "Phase"
2776
+ msgstr ""
2777
+
2778
+ #. Project.properties.goal.label
2779
+ #: followthemoney/schema/Project.yaml
2780
+ msgid "Project goal"
2781
+ msgstr ""
2782
+
2783
+ #. ProjectParticipant.label
2784
+ #: followthemoney/schema/ProjectParticipant.yaml
2785
+ msgid "Project participant"
2786
+ msgstr ""
2787
+
2788
+ #. ProjectParticipant.plural
2789
+ #: followthemoney/schema/ProjectParticipant.yaml
2790
+ msgid "Project participants"
2791
+ msgstr ""
2792
+
2793
+ #. ProjectParticipant.edge.label
2794
+ #: followthemoney/schema/ProjectParticipant.yaml
2795
+ msgid "participates in"
2796
+ msgstr ""
2797
+
2798
+ #. ProjectParticipant.properties.project.reverse.label
2799
+ #: followthemoney/schema/ProjectParticipant.yaml
2800
+ msgid "Participants"
2801
+ msgstr ""
2802
+
2803
+ #. ProjectParticipant.properties.participant.label
2804
+ #: followthemoney/schema/ProjectParticipant.yaml
2805
+ msgid "Participant"
2806
+ msgstr ""
2807
+
2808
+ #. PublicBody.label
2809
+ #: followthemoney/schema/PublicBody.yaml
2810
+ msgid "Public body"
2811
+ msgstr ""
2812
+
2813
+ #. PublicBody.plural
2814
+ #: followthemoney/schema/PublicBody.yaml
2815
+ msgid "Public bodies"
2816
+ msgstr ""
2817
+
2818
+ #. PublicBody.description
2819
+ #: followthemoney/schema/PublicBody.yaml
2820
+ msgid "A public body, such as a ministry, department or state company.\n"
2821
+ msgstr ""
2822
+
2823
+ #. RealEstate.label
2824
+ #: followthemoney/schema/RealEstate.yaml
2825
+ msgid "Real estate"
2826
+ msgstr ""
2827
+
2828
+ #. RealEstate.plural
2829
+ #: followthemoney/schema/RealEstate.yaml
2830
+ msgid "Real estates"
2831
+ msgstr ""
2832
+
2833
+ #. RealEstate.description
2834
+ #: followthemoney/schema/RealEstate.yaml
2835
+ msgid "A piece of land or property."
2836
+ msgstr ""
2837
+
2838
+ #. RealEstate.properties.censusBlock.label
2839
+ #: followthemoney/schema/RealEstate.yaml
2840
+ msgid "Census block"
2841
+ msgstr ""
2842
+
2843
+ #. RealEstate.properties.cadastralCode.label
2844
+ #: followthemoney/schema/RealEstate.yaml
2845
+ msgid "Cadastral code"
2846
+ msgstr ""
2847
+
2848
+ #. RealEstate.properties.titleNumber.label
2849
+ #: followthemoney/schema/RealEstate.yaml
2850
+ msgid "Title number"
2851
+ msgstr ""
2852
+
2853
+ #. RealEstate.properties.tenure.label
2854
+ #: followthemoney/schema/RealEstate.yaml
2855
+ msgid "Tenure"
2856
+ msgstr ""
2857
+
2858
+ #. RealEstate.properties.encumbrance.label
2859
+ #: followthemoney/schema/RealEstate.yaml
2860
+ msgid "Encumbrance"
2861
+ msgstr ""
2862
+
2863
+ #. RealEstate.properties.encumbrance.description
2864
+ #: followthemoney/schema/RealEstate.yaml
2865
+ msgid ""
2866
+ "An encumbrance is a right to, interest in, or legal liability on real "
2867
+ "property that does not prohibit passing title to the property but that "
2868
+ "diminishes its value.\n"
2869
+ msgstr ""
2870
+
2871
+ #. RealEstate.properties.propertyType.label
2872
+ #: followthemoney/schema/RealEstate.yaml
2873
+ msgid "Property type"
2874
+ msgstr ""
2875
+
2876
+ #. RealEstate.properties.landType.label
2877
+ #: followthemoney/schema/RealEstate.yaml
2878
+ msgid "Land type"
2879
+ msgstr ""
2880
+
2881
+ #. RealEstate.properties.createDate.label
2882
+ #: followthemoney/schema/RealEstate.yaml
2883
+ msgid "Record date"
2884
+ msgstr ""
2885
+
2886
+ #. Representation.label
2887
+ #: followthemoney/schema/Representation.yaml
2888
+ msgid "Representation"
2889
+ msgstr ""
2890
+
2891
+ #. Representation.plural
2892
+ #: followthemoney/schema/Representation.yaml
2893
+ msgid "Representations"
2894
+ msgstr ""
2895
+
2896
+ #. Representation.description
2897
+ #: followthemoney/schema/Representation.yaml
2898
+ msgid ""
2899
+ "A mediatory, intermediary, middleman, or broker acting on behalf of a legal "
2900
+ "entity."
2901
+ msgstr ""
2902
+
2903
+ #. Representation.edge.label
2904
+ #: followthemoney/schema/Representation.yaml
2905
+ msgid "represents"
2906
+ msgstr ""
2907
+
2908
+ #. Representation.properties.agent.label
2909
+ #: followthemoney/schema/Representation.yaml
2910
+ msgid "Agent"
2911
+ msgstr ""
2912
+
2913
+ #. Representation.properties.agent.reverse.label
2914
+ #: followthemoney/schema/Representation.yaml
2915
+ msgid "Clients"
2916
+ msgstr ""
2917
+
2918
+ #. Representation.properties.client.label
2919
+ #: followthemoney/schema/Representation.yaml
2920
+ msgid "Client"
2921
+ msgstr ""
2922
+
2923
+ #. Representation.properties.client.reverse.label
2924
+ #: followthemoney/schema/Representation.yaml
2925
+ msgid "Agents"
2926
+ msgstr ""
2927
+
2928
+ #. Sanction.label
2929
+ #: followthemoney/schema/Sanction.yaml
2930
+ msgid "Sanction"
2931
+ msgstr ""
2932
+
2933
+ #. Sanction.plural
2934
+ #. Sanction.properties.entity.reverse.label
2935
+ #: followthemoney/schema/Sanction.yaml
2936
+ msgid "Sanctions"
2937
+ msgstr ""
2938
+
2939
+ #. Sanction.description
2940
+ #: followthemoney/schema/Sanction.yaml
2941
+ msgid "A sanction designation"
2942
+ msgstr ""
2943
+
2944
+ #. Sanction.properties.authorityId.label
2945
+ #: followthemoney/schema/Sanction.yaml
2946
+ msgid "Authority-issued identifier"
2947
+ msgstr ""
2948
+
2949
+ #. Sanction.properties.unscId.label
2950
+ #: followthemoney/schema/Sanction.yaml
2951
+ msgid "UN SC identifier"
2952
+ msgstr ""
2953
+
2954
+ #. Sanction.properties.program.label
2955
+ #. Thing.properties.program.label
2956
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Thing.yaml
2957
+ msgid "Program"
2958
+ msgstr ""
2959
+
2960
+ #. Sanction.properties.provisions.label
2961
+ #: followthemoney/schema/Sanction.yaml
2962
+ msgid "Scope of sanctions"
2963
+ msgstr ""
2964
+
2965
+ #. Sanction.properties.reason.label
2966
+ #: followthemoney/schema/Sanction.yaml
2967
+ msgid "Reason"
2968
+ msgstr ""
2969
+
2970
+ #. Sanction.properties.listingDate.label
2971
+ #: followthemoney/schema/Sanction.yaml
2972
+ msgid "Listing date"
2973
+ msgstr ""
2974
+
2975
+ #. Security.label
2976
+ #: followthemoney/schema/Security.yaml
2977
+ msgid "Security"
2978
+ msgstr ""
2979
+
2980
+ #. Security.plural
2981
+ #: followthemoney/schema/Security.yaml
2982
+ msgid "Securities"
2983
+ msgstr ""
2984
+
2985
+ #. Security.description
2986
+ #: followthemoney/schema/Security.yaml
2987
+ msgid "A tradeable financial asset."
2988
+ msgstr ""
2989
+
2990
+ #. Security.properties.isin.label
2991
+ #: followthemoney/schema/Security.yaml
2992
+ msgid "ISIN"
2993
+ msgstr ""
2994
+
2995
+ #. Security.properties.isin.description
2996
+ #: followthemoney/schema/Security.yaml
2997
+ msgid "International Securities Identification Number"
2998
+ msgstr ""
2999
+
3000
+ #. Security.properties.ticker.label
3001
+ #: followthemoney/schema/Security.yaml
3002
+ msgid "Ticker"
3003
+ msgstr ""
3004
+
3005
+ #. Security.properties.issuer.label
3006
+ #: followthemoney/schema/Security.yaml
3007
+ msgid "Issuer"
3008
+ msgstr ""
3009
+
3010
+ #. Security.properties.issuer.reverse.label
3011
+ #: followthemoney/schema/Security.yaml
3012
+ msgid "Issued securities"
3013
+ msgstr ""
3014
+
3015
+ #. Security.properties.issueDate.label
3016
+ #: followthemoney/schema/Security.yaml
3017
+ msgid "Date issued"
3018
+ msgstr ""
3019
+
3020
+ #. Security.properties.collateral.label
3021
+ #: followthemoney/schema/Security.yaml
3022
+ msgid "Collateral"
3023
+ msgstr ""
3024
+
3025
+ #. Succession.label
3026
+ #: followthemoney/schema/Succession.yaml
3027
+ msgid "Succession"
3028
+ msgstr ""
3029
+
3030
+ #. Succession.plural
3031
+ #: followthemoney/schema/Succession.yaml
3032
+ msgid "Successions"
3033
+ msgstr ""
3034
+
3035
+ #. Succession.description
3036
+ #: followthemoney/schema/Succession.yaml
3037
+ msgid "Two entities that legally succeed each other."
3038
+ msgstr ""
3039
+
3040
+ #. Succession.edge.label
3041
+ #: followthemoney/schema/Succession.yaml
3042
+ msgid "preceeds"
3043
+ msgstr ""
3044
+
3045
+ #. Succession.properties.predecessor.label
3046
+ #: followthemoney/schema/Succession.yaml
3047
+ msgid "Predecessor"
3048
+ msgstr ""
3049
+
3050
+ #. Succession.properties.predecessor.reverse.label
3051
+ #: followthemoney/schema/Succession.yaml
3052
+ msgid "Successors"
3053
+ msgstr ""
3054
+
3055
+ #. Succession.properties.successor.label
3056
+ #: followthemoney/schema/Succession.yaml
3057
+ msgid "Successor"
3058
+ msgstr ""
3059
+
3060
+ #. Succession.properties.successor.reverse.label
3061
+ #: followthemoney/schema/Succession.yaml
3062
+ msgid "Predecessors"
3063
+ msgstr ""
3064
+
3065
+ #. Table.label
3066
+ #: followthemoney/schema/Table.yaml
3067
+ msgid "Table"
3068
+ msgstr ""
3069
+
3070
+ #. Table.plural
3071
+ #: followthemoney/schema/Table.yaml
3072
+ msgid "Tables"
3073
+ msgstr ""
3074
+
3075
+ #. Table.description
3076
+ #: followthemoney/schema/Table.yaml
3077
+ msgid ""
3078
+ "A document structured into rows and cells. This includes simple CSV files, "
3079
+ "spreadsheet sheets or database relations.\n"
3080
+ msgstr ""
3081
+
3082
+ #. Table.properties.columns.label
3083
+ #: followthemoney/schema/Table.yaml
3084
+ msgid "Column headings"
3085
+ msgstr ""
3086
+
3087
+ #. Table.properties.rowCount.label
3088
+ #: followthemoney/schema/Table.yaml
3089
+ msgid "Number of rows"
3090
+ msgstr ""
3091
+
3092
+ #. Table.properties.csvHash.label
3093
+ #: followthemoney/schema/Table.yaml
3094
+ msgid "CSV alternative version checksum"
3095
+ msgstr ""
3096
+
3097
+ #. TaxRoll.label
3098
+ #: followthemoney/schema/TaxRoll.yaml
3099
+ msgid "Tax roll"
3100
+ msgstr ""
3101
+
3102
+ #. TaxRoll.plural
3103
+ #. TaxRoll.properties.taxee.reverse.label
3104
+ #: followthemoney/schema/TaxRoll.yaml
3105
+ msgid "Tax rolls"
3106
+ msgstr ""
3107
+
3108
+ #. TaxRoll.description
3109
+ #: followthemoney/schema/TaxRoll.yaml
3110
+ msgid "A tax declaration of an individual"
3111
+ msgstr ""
3112
+
3113
+ #. TaxRoll.properties.taxee.label
3114
+ #: followthemoney/schema/TaxRoll.yaml
3115
+ msgid "Taxee"
3116
+ msgstr ""
3117
+
3118
+ #. TaxRoll.properties.income.label
3119
+ #: followthemoney/schema/TaxRoll.yaml
3120
+ msgid "Registered income"
3121
+ msgstr ""
3122
+
3123
+ #. TaxRoll.properties.taxPaid.label
3124
+ #: followthemoney/schema/TaxRoll.yaml
3125
+ msgid "Amount of tax paid"
3126
+ msgstr ""
3127
+
3128
+ #. TaxRoll.properties.wealth.label
3129
+ #: followthemoney/schema/TaxRoll.yaml
3130
+ msgid "Registered wealth"
3131
+ msgstr ""
3132
+
3133
+ #. Thing.properties.alias.label
3134
+ #: followthemoney/schema/Thing.yaml
3135
+ msgid "Other name"
3136
+ msgstr ""
3137
+
3138
+ #. Thing.properties.previousName.label
3139
+ #: followthemoney/schema/Thing.yaml
3140
+ msgid "Previous name"
3141
+ msgstr ""
3142
+
3143
+ #. Thing.properties.weakAlias.label
3144
+ #: followthemoney/schema/Thing.yaml
3145
+ msgid "Weak alias"
3146
+ msgstr ""
3147
+
3148
+ #. Thing.properties.wikipediaUrl.label
3149
+ #: followthemoney/schema/Thing.yaml
3150
+ msgid "Wikipedia Article"
3151
+ msgstr ""
3152
+
3153
+ #. Thing.properties.wikidataId.label
3154
+ #: followthemoney/schema/Thing.yaml
3155
+ msgid "Wikidata ID"
3156
+ msgstr ""
3157
+
3158
+ #. Thing.properties.keywords.label
3159
+ #: followthemoney/schema/Thing.yaml
3160
+ msgid "Keywords"
3161
+ msgstr ""
3162
+
3163
+ #. Thing.properties.topics.label
3164
+ #: followthemoney/schema/Thing.yaml followthemoney/types/topic.py:22
3165
+ msgid "Topics"
3166
+ msgstr ""
3167
+
3168
+ #. Thing.properties.addressEntity.reverse.label
3169
+ #: followthemoney/schema/Thing.yaml
3170
+ msgid "Located there"
3171
+ msgstr ""
3172
+
3173
+ #. Thing.properties.proof.label
3174
+ #: followthemoney/schema/Thing.yaml
3175
+ msgid "Source document"
3176
+ msgstr ""
3177
+
3178
+ #. Thing.properties.proof.reverse.label
3179
+ #: followthemoney/schema/Thing.yaml
3180
+ msgid "Derived entities"
3181
+ msgstr ""
3182
+
3183
+ #. Thing.properties.createdAt.label
3184
+ #: followthemoney/schema/Thing.yaml
3185
+ msgid "Created at"
3186
+ msgstr ""
3187
+
3188
+ #. Trip.label
3189
+ #: followthemoney/schema/Trip.yaml
3190
+ msgid "Trip"
3191
+ msgstr ""
3192
+
3193
+ #. Trip.plural
3194
+ #. Trip.properties.vehicle.reverse.label
3195
+ #: followthemoney/schema/Trip.yaml
3196
+ msgid "Trips"
3197
+ msgstr ""
3198
+
3199
+ #. Trip.properties.startLocation.label
3200
+ #: followthemoney/schema/Trip.yaml
3201
+ msgid "Start location"
3202
+ msgstr ""
3203
+
3204
+ #. Trip.properties.startLocation.reverse.label
3205
+ #: followthemoney/schema/Trip.yaml
3206
+ msgid "Trips departing"
3207
+ msgstr ""
3208
+
3209
+ #. Trip.properties.endLocation.label
3210
+ #: followthemoney/schema/Trip.yaml
3211
+ msgid "End location"
3212
+ msgstr ""
3213
+
3214
+ #. Trip.properties.endLocation.reverse.label
3215
+ #: followthemoney/schema/Trip.yaml
3216
+ msgid "Trips incoming"
3217
+ msgstr ""
3218
+
3219
+ #. Trip.properties.vehicle.label
3220
+ #. Vehicle.label
3221
+ #: followthemoney/schema/Trip.yaml followthemoney/schema/Vehicle.yaml
3222
+ msgid "Vehicle"
3223
+ msgstr ""
3224
+
3225
+ #. UnknownLink.label
3226
+ #: followthemoney/schema/UnknownLink.yaml
3227
+ msgid "Other link"
3228
+ msgstr ""
3229
+
3230
+ #. UnknownLink.plural
3231
+ #: followthemoney/schema/UnknownLink.yaml
3232
+ msgid "Other links"
3233
+ msgstr ""
3234
+
3235
+ #. UnknownLink.edge.label
3236
+ #: followthemoney/schema/UnknownLink.yaml
3237
+ msgid "linked to"
3238
+ msgstr ""
3239
+
3240
+ #. UnknownLink.properties.subject.reverse.label
3241
+ #: followthemoney/schema/UnknownLink.yaml
3242
+ msgid "Linked to"
3243
+ msgstr ""
3244
+
3245
+ #. UnknownLink.properties.object.label
3246
+ #: followthemoney/schema/UnknownLink.yaml
3247
+ msgid "Object"
3248
+ msgstr ""
3249
+
3250
+ #. UnknownLink.properties.object.reverse.label
3251
+ #: followthemoney/schema/UnknownLink.yaml
3252
+ msgid "Linked from"
3253
+ msgstr ""
3254
+
3255
+ #. UserAccount.label
3256
+ #: followthemoney/schema/UserAccount.yaml
3257
+ msgid "User account"
3258
+ msgstr ""
3259
+
3260
+ #. UserAccount.plural
3261
+ #. UserAccount.properties.owner.reverse.label
3262
+ #: followthemoney/schema/UserAccount.yaml
3263
+ msgid "User accounts"
3264
+ msgstr ""
3265
+
3266
+ #. UserAccount.properties.service.label
3267
+ #: followthemoney/schema/UserAccount.yaml
3268
+ msgid "Service"
3269
+ msgstr ""
3270
+
3271
+ #. UserAccount.properties.number.label
3272
+ #: followthemoney/schema/UserAccount.yaml
3273
+ msgid "Phone Number"
3274
+ msgstr ""
3275
+
3276
+ #. UserAccount.properties.username.label
3277
+ #: followthemoney/schema/UserAccount.yaml
3278
+ msgid "Username"
3279
+ msgstr ""
3280
+
3281
+ #. UserAccount.properties.password.label
3282
+ #: followthemoney/schema/UserAccount.yaml
3283
+ msgid "Password"
3284
+ msgstr ""
3285
+
3286
+ #. Value.label
3287
+ #: followthemoney/schema/Value.yaml
3288
+ msgid "Value"
3289
+ msgstr ""
3290
+
3291
+ #. Value.plural
3292
+ #: followthemoney/schema/Value.yaml
3293
+ msgid "Values"
3294
+ msgstr ""
3295
+
3296
+ #. Value.properties.amount.label
3297
+ #: followthemoney/schema/Value.yaml
3298
+ msgid "Amount"
3299
+ msgstr ""
3300
+
3301
+ #. Value.properties.currency.label
3302
+ #: followthemoney/schema/Value.yaml
3303
+ msgid "Currency"
3304
+ msgstr ""
3305
+
3306
+ #. Value.properties.amountUsd.label
3307
+ #: followthemoney/schema/Value.yaml
3308
+ msgid "Amount in USD"
3309
+ msgstr ""
3310
+
3311
+ #. Value.properties.amountEur.label
3312
+ #: followthemoney/schema/Value.yaml
3313
+ msgid "Amount in EUR"
3314
+ msgstr ""
3315
+
3316
+ #. Vehicle.plural
3317
+ #: followthemoney/schema/Vehicle.yaml
3318
+ msgid "Vehicles"
3319
+ msgstr ""
3320
+
3321
+ #. Vehicle.properties.model.label
3322
+ #: followthemoney/schema/Vehicle.yaml
3323
+ msgid "Model"
3324
+ msgstr ""
3325
+
3326
+ #. Vehicle.properties.owner.reverse.label
3327
+ #: followthemoney/schema/Vehicle.yaml
3328
+ msgid "Vehicles owned"
3329
+ msgstr ""
3330
+
3331
+ #. Vehicle.properties.operator.label
3332
+ #: followthemoney/schema/Vehicle.yaml
3333
+ msgid "Operator"
3334
+ msgstr ""
3335
+
3336
+ #. Vehicle.properties.operator.reverse.label
3337
+ #: followthemoney/schema/Vehicle.yaml
3338
+ msgid "Vehicles operated"
3339
+ msgstr ""
3340
+
3341
+ #. Vehicle.properties.buildDate.label
3342
+ #: followthemoney/schema/Vehicle.yaml
3343
+ msgid "Build Date"
3344
+ msgstr ""
3345
+
3346
+ #. Vehicle.properties.registrationDate.label
3347
+ #: followthemoney/schema/Vehicle.yaml
3348
+ msgid "Registration Date"
3349
+ msgstr ""
3350
+
3351
+ #. Vessel.label
3352
+ #: followthemoney/schema/Vessel.yaml
3353
+ msgid "Vessel"
3354
+ msgstr ""
3355
+
3356
+ #. Vessel.plural
3357
+ #: followthemoney/schema/Vessel.yaml
3358
+ msgid "Vessels"
3359
+ msgstr ""
3360
+
3361
+ #. Vessel.description
3362
+ #: followthemoney/schema/Vessel.yaml
3363
+ msgid "A boat or ship. Typically flying some sort of national flag.\n"
3364
+ msgstr ""
3365
+
3366
+ #. Vessel.properties.imoNumber.label
3367
+ #: followthemoney/schema/Vessel.yaml
3368
+ msgid "IMO Number"
3369
+ msgstr ""
3370
+
3371
+ #. Vessel.properties.crsNumber.label
3372
+ #: followthemoney/schema/Vessel.yaml
3373
+ msgid "CRS Number"
3374
+ msgstr ""
3375
+
3376
+ #. Vessel.properties.flag.label
3377
+ #: followthemoney/schema/Vessel.yaml
3378
+ msgid "Flag"
3379
+ msgstr ""
3380
+
3381
+ #. Vessel.properties.registrationPort.label
3382
+ #: followthemoney/schema/Vessel.yaml
3383
+ msgid "Port of Registration"
3384
+ msgstr ""
3385
+
3386
+ #. Vessel.properties.navigationArea.label
3387
+ #: followthemoney/schema/Vessel.yaml
3388
+ msgid "Navigation Area"
3389
+ msgstr ""
3390
+
3391
+ #. Vessel.properties.tonnage.label
3392
+ #: followthemoney/schema/Vessel.yaml
3393
+ msgid "Tonnage"
3394
+ msgstr ""
3395
+
3396
+ #. Vessel.properties.grossRegisteredTonnage.label
3397
+ #: followthemoney/schema/Vessel.yaml
3398
+ msgid "Gross Registered Tonnage"
3399
+ msgstr ""
3400
+
3401
+ #. Vessel.properties.nameChangeDate.label
3402
+ #: followthemoney/schema/Vessel.yaml
3403
+ msgid "Date of Name Change"
3404
+ msgstr ""
3405
+
3406
+ #. Vessel.properties.callSign.label
3407
+ #: followthemoney/schema/Vessel.yaml
3408
+ msgid "Call Sign"
3409
+ msgstr ""
3410
+
3411
+ #. Vessel.properties.pastFlags.label
3412
+ #: followthemoney/schema/Vessel.yaml
3413
+ msgid "Past Flags"
3414
+ msgstr ""
3415
+
3416
+ #. Vessel.properties.pastTypes.label
3417
+ #: followthemoney/schema/Vessel.yaml
3418
+ msgid "Past Types"
3419
+ msgstr ""
3420
+
3421
+ #. Vessel.properties.mmsi.label
3422
+ #: followthemoney/schema/Vessel.yaml
3423
+ msgid "MMSI"
3424
+ msgstr ""
3425
+
3426
+ #. Video.label
3427
+ #: followthemoney/schema/Video.yaml
3428
+ msgid "Video"
3429
+ msgstr ""
3430
+
3431
+ #. Video.plural
3432
+ #: followthemoney/schema/Video.yaml
3433
+ msgid "Videos"
3434
+ msgstr ""
3435
+
3436
+ #. Video.properties.duration.description
3437
+ #: followthemoney/schema/Video.yaml
3438
+ msgid "Duration of the video in ms"
3439
+ msgstr ""
3440
+
3441
+ #. Workbook.label
3442
+ #: followthemoney/schema/Workbook.yaml
3443
+ msgid "Workbook"
3444
+ msgstr ""
3445
+
3446
+ #. Workbook.plural
3447
+ #: followthemoney/schema/Workbook.yaml
3448
+ msgid "Workbooks"
3449
+ msgstr ""
3450
+
3451
+ #. Workbook.description
3452
+ #: followthemoney/schema/Workbook.yaml
3453
+ msgid ""
3454
+ "A spreadsheet document, for example from Excel. Each spreadsheet contains a "
3455
+ "set of sheets that hold actual data.\n"
3456
+ msgstr ""
3457
+
3458
+ #: followthemoney/types/checksum.py:19
3459
+ msgid "Checksums"
3460
+ msgstr ""
3461
+
3462
+ #: followthemoney/types/country.py:22
3463
+ msgid "Countries"
3464
+ msgstr ""
3465
+
3466
+ #: followthemoney/types/country.py:28
3467
+ msgid "Global"
3468
+ msgstr ""
3469
+
3470
+ #: followthemoney/types/country.py:29
3471
+ msgid "European Union"
3472
+ msgstr ""
3473
+
3474
+ #: followthemoney/types/country.py:30
3475
+ msgid "Zaire"
3476
+ msgstr ""
3477
+
3478
+ #: followthemoney/types/country.py:32
3479
+ msgid "Czech Republic"
3480
+ msgstr ""
3481
+
3482
+ #: followthemoney/types/country.py:33
3483
+ msgid "Kosovo"
3484
+ msgstr ""
3485
+
3486
+ #: followthemoney/types/country.py:34
3487
+ msgid "East Germany"
3488
+ msgstr ""
3489
+
3490
+ #: followthemoney/types/country.py:35
3491
+ msgid "Yugoslavia"
3492
+ msgstr ""
3493
+
3494
+ #: followthemoney/types/country.py:36
3495
+ msgid "Serbia and Montenegro"
3496
+ msgstr ""
3497
+
3498
+ #: followthemoney/types/country.py:37
3499
+ msgid "Czechoslovakia"
3500
+ msgstr ""
3501
+
3502
+ #: followthemoney/types/country.py:38
3503
+ msgid "Soviet Union"
3504
+ msgstr ""
3505
+
3506
+ #: followthemoney/types/country.py:39
3507
+ msgid "Abkhazia"
3508
+ msgstr ""
3509
+
3510
+ #: followthemoney/types/country.py:40
3511
+ msgid "South Ossetia"
3512
+ msgstr ""
3513
+
3514
+ #: followthemoney/types/country.py:41
3515
+ msgid "Luhansk (Ukraine)"
3516
+ msgstr ""
3517
+
3518
+ #: followthemoney/types/country.py:42
3519
+ msgid "Donetsk (Ukraine)"
3520
+ msgstr ""
3521
+
3522
+ #: followthemoney/types/country.py:43
3523
+ msgid "Crimea (Ukraine)"
3524
+ msgstr ""
3525
+
3526
+ #: followthemoney/types/country.py:44
3527
+ msgid "Somaliland"
3528
+ msgstr ""
3529
+
3530
+ #: followthemoney/types/country.py:45
3531
+ msgid "Northern Cyprus"
3532
+ msgstr ""
3533
+
3534
+ #: followthemoney/types/country.py:46
3535
+ msgid "Nagorno-Karabakh"
3536
+ msgstr ""
3537
+
3538
+ #: followthemoney/types/country.py:47
3539
+ msgid "Tibet"
3540
+ msgstr ""
3541
+
3542
+ #: followthemoney/types/country.py:48
3543
+ msgid "Sark"
3544
+ msgstr ""
3545
+
3546
+ #: followthemoney/types/country.py:49
3547
+ msgid "Wales"
3548
+ msgstr ""
3549
+
3550
+ #: followthemoney/types/country.py:50
3551
+ msgid "Scotland"
3552
+ msgstr ""
3553
+
3554
+ #: followthemoney/types/country.py:51
3555
+ msgid "Northern Ireland"
3556
+ msgstr ""
3557
+
3558
+ #: followthemoney/types/country.py:52
3559
+ msgid "Transnistria"
3560
+ msgstr ""
3561
+
3562
+ #: followthemoney/types/date.py:27
3563
+ msgid "Dates"
3564
+ msgstr ""
3565
+
3566
+ #: followthemoney/types/email.py:25
3567
+ msgid "E-Mail Address"
3568
+ msgstr ""
3569
+
3570
+ #: followthemoney/types/email.py:26
3571
+ msgid "E-Mail Addresses"
3572
+ msgstr ""
3573
+
3574
+ #: followthemoney/types/entity.py:28
3575
+ msgid "Entities"
3576
+ msgstr ""
3577
+
3578
+ #: followthemoney/types/entity.py:61
3579
+ #, python-format
3580
+ msgid "Self-relationship (%s): %s"
3581
+ msgstr ""
3582
+
3583
+ #: followthemoney/types/gender.py:41
3584
+ msgid "Genders"
3585
+ msgstr ""
3586
+
3587
+ #: followthemoney/types/gender.py:46
3588
+ msgid "male"
3589
+ msgstr ""
3590
+
3591
+ #: followthemoney/types/gender.py:47
3592
+ msgid "female"
3593
+ msgstr ""
3594
+
3595
+ #: followthemoney/types/gender.py:48
3596
+ msgid "other"
3597
+ msgstr ""
3598
+
3599
+ #: followthemoney/types/iban.py:25
3600
+ msgid "IBANs"
3601
+ msgstr ""
3602
+
3603
+ #: followthemoney/types/identifier.py:21
3604
+ msgid "Identifier"
3605
+ msgstr ""
3606
+
3607
+ #: followthemoney/types/identifier.py:22
3608
+ msgid "Identifiers"
3609
+ msgstr ""
3610
+
3611
+ #: followthemoney/types/ip.py:19
3612
+ msgid "IP-Address"
3613
+ msgstr ""
3614
+
3615
+ #: followthemoney/types/ip.py:20
3616
+ msgid "IP-Addresses"
3617
+ msgstr ""
3618
+
3619
+ #: followthemoney/types/json.py:19 followthemoney/types/json.py:20
3620
+ msgid "Nested data"
3621
+ msgstr ""
3622
+
3623
+ #: followthemoney/types/language.py:23
3624
+ msgid "Languages"
3625
+ msgstr ""
3626
+
3627
+ #: followthemoney/types/mimetype.py:24
3628
+ msgid "MIME-Type"
3629
+ msgstr ""
3630
+
3631
+ #: followthemoney/types/mimetype.py:25
3632
+ msgid "MIME-Types"
3633
+ msgstr ""
3634
+
3635
+ #: followthemoney/types/name.py:27
3636
+ msgid "Names"
3637
+ msgstr ""
3638
+
3639
+ #: followthemoney/types/number.py:18
3640
+ msgid "Number"
3641
+ msgstr ""
3642
+
3643
+ #: followthemoney/types/number.py:19
3644
+ msgid "Numbers"
3645
+ msgstr ""
3646
+
3647
+ #: followthemoney/types/phone.py:36
3648
+ msgid "Phone numbers"
3649
+ msgstr ""
3650
+
3651
+ #: followthemoney/types/string.py:10
3652
+ msgid "Label"
3653
+ msgstr ""
3654
+
3655
+ #: followthemoney/types/string.py:11
3656
+ msgid "Labels"
3657
+ msgstr ""
3658
+
3659
+ #: followthemoney/types/string.py:25
3660
+ msgid "Texts"
3661
+ msgstr ""
3662
+
3663
+ #: followthemoney/types/string.py:39
3664
+ msgid "HTMLs"
3665
+ msgstr ""
3666
+
3667
+ #: followthemoney/types/topic.py:21
3668
+ msgid "Topic"
3669
+ msgstr ""
3670
+
3671
+ #: followthemoney/types/topic.py:26
3672
+ msgid "Crime"
3673
+ msgstr ""
3674
+
3675
+ #: followthemoney/types/topic.py:27
3676
+ msgid "Fraud"
3677
+ msgstr ""
3678
+
3679
+ #: followthemoney/types/topic.py:28
3680
+ msgid "Cybercrime"
3681
+ msgstr ""
3682
+
3683
+ #: followthemoney/types/topic.py:29
3684
+ msgid "Financial crime"
3685
+ msgstr ""
3686
+
3687
+ #: followthemoney/types/topic.py:30
3688
+ msgid "Theft"
3689
+ msgstr ""
3690
+
3691
+ #: followthemoney/types/topic.py:31
3692
+ msgid "War crimes"
3693
+ msgstr ""
3694
+
3695
+ #: followthemoney/types/topic.py:32
3696
+ msgid "Criminal leadership"
3697
+ msgstr ""
3698
+
3699
+ #: followthemoney/types/topic.py:33
3700
+ msgid "Terrorism"
3701
+ msgstr ""
3702
+
3703
+ #: followthemoney/types/topic.py:34
3704
+ msgid "Trafficking"
3705
+ msgstr ""
3706
+
3707
+ #: followthemoney/types/topic.py:35
3708
+ msgid "Drug trafficking"
3709
+ msgstr ""
3710
+
3711
+ #: followthemoney/types/topic.py:36
3712
+ msgid "Human trafficking"
3713
+ msgstr ""
3714
+
3715
+ #: followthemoney/types/topic.py:37
3716
+ msgid "Offshore"
3717
+ msgstr ""
3718
+
3719
+ #: followthemoney/types/topic.py:38
3720
+ msgid "Shell company"
3721
+ msgstr ""
3722
+
3723
+ #: followthemoney/types/topic.py:39
3724
+ msgid "Government"
3725
+ msgstr ""
3726
+
3727
+ #: followthemoney/types/topic.py:40
3728
+ msgid "National government"
3729
+ msgstr ""
3730
+
3731
+ #: followthemoney/types/topic.py:41
3732
+ msgid "State government"
3733
+ msgstr ""
3734
+
3735
+ #: followthemoney/types/topic.py:42
3736
+ msgid "Municipal government"
3737
+ msgstr ""
3738
+
3739
+ #: followthemoney/types/topic.py:43
3740
+ msgid "State-owned enterprise"
3741
+ msgstr ""
3742
+
3743
+ #: followthemoney/types/topic.py:44
3744
+ msgid "Intergovernmental organization"
3745
+ msgstr ""
3746
+
3747
+ #: followthemoney/types/topic.py:45
3748
+ msgid "Financial services"
3749
+ msgstr ""
3750
+
3751
+ #: followthemoney/types/topic.py:47
3752
+ msgid "Fund"
3753
+ msgstr ""
3754
+
3755
+ #: followthemoney/types/topic.py:48
3756
+ msgid "Financial advisor"
3757
+ msgstr ""
3758
+
3759
+ #: followthemoney/types/topic.py:49
3760
+ msgid "Politician"
3761
+ msgstr ""
3762
+
3763
+ #: followthemoney/types/topic.py:50
3764
+ msgid "Close Associate"
3765
+ msgstr ""
3766
+
3767
+ #: followthemoney/types/topic.py:51
3768
+ msgid "Judge"
3769
+ msgstr ""
3770
+
3771
+ #: followthemoney/types/topic.py:52
3772
+ msgid "Civil servant"
3773
+ msgstr ""
3774
+
3775
+ #: followthemoney/types/topic.py:53
3776
+ msgid "Diplomat"
3777
+ msgstr ""
3778
+
3779
+ #: followthemoney/types/topic.py:54
3780
+ msgid "Lawyer"
3781
+ msgstr ""
3782
+
3783
+ #: followthemoney/types/topic.py:55
3784
+ msgid "Accountant"
3785
+ msgstr ""
3786
+
3787
+ #: followthemoney/types/topic.py:56
3788
+ msgid "Spy"
3789
+ msgstr ""
3790
+
3791
+ #: followthemoney/types/topic.py:57
3792
+ msgid "Oligarch"
3793
+ msgstr ""
3794
+
3795
+ #: followthemoney/types/topic.py:58
3796
+ msgid "Journalist"
3797
+ msgstr ""
3798
+
3799
+ #: followthemoney/types/topic.py:59
3800
+ msgid "Activist"
3801
+ msgstr ""
3802
+
3803
+ #: followthemoney/types/topic.py:60
3804
+ msgid "Political party"
3805
+ msgstr ""
3806
+
3807
+ #: followthemoney/types/topic.py:61
3808
+ msgid "Union"
3809
+ msgstr ""
3810
+
3811
+ #: followthemoney/types/topic.py:63
3812
+ msgid "Military"
3813
+ msgstr ""
3814
+
3815
+ #: followthemoney/types/topic.py:64
3816
+ msgid "Frozen asset"
3817
+ msgstr ""
3818
+
3819
+ #: followthemoney/types/topic.py:65
3820
+ msgid "Sanctioned entity"
3821
+ msgstr ""
3822
+
3823
+ #: followthemoney/types/topic.py:66
3824
+ msgid "Debarred entity"
3825
+ msgstr ""
3826
+
3827
+ #: followthemoney/types/topic.py:67
3828
+ msgid "Person of interest"
3829
+ msgstr ""
3830
+
3831
+ #: followthemoney/types/url.py:22
3832
+ msgid "URL"
3833
+ msgstr ""
3834
+
3835
+ #: followthemoney/types/url.py:23
3836
+ msgid "URLs"
3837
+ msgstr ""