followthemoney 1.3.7__py3-none-any.whl → 3.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. followthemoney/__init__.py +5 -3
  2. followthemoney/cli/__init__.py +17 -0
  3. followthemoney/cli/aggregate.py +56 -0
  4. followthemoney/cli/cli.py +88 -0
  5. followthemoney/cli/exports.py +121 -0
  6. followthemoney/cli/mapping.py +85 -0
  7. followthemoney/cli/sieve.py +67 -0
  8. followthemoney/cli/util.py +142 -0
  9. followthemoney/compare.py +130 -60
  10. followthemoney/exc.py +19 -6
  11. followthemoney/export/common.py +29 -0
  12. followthemoney/export/csv.py +82 -0
  13. followthemoney/export/excel.py +75 -0
  14. followthemoney/export/graph.py +79 -0
  15. followthemoney/export/neo4j.py +182 -0
  16. followthemoney/export/rdf.py +26 -0
  17. followthemoney/graph.py +308 -0
  18. followthemoney/helpers.py +212 -0
  19. followthemoney/mapping/__init__.py +1 -1
  20. followthemoney/mapping/csv.py +67 -35
  21. followthemoney/mapping/entity.py +116 -44
  22. followthemoney/mapping/property.py +90 -44
  23. followthemoney/mapping/query.py +27 -19
  24. followthemoney/mapping/source.py +15 -5
  25. followthemoney/mapping/sql.py +75 -61
  26. followthemoney/messages.py +13 -7
  27. followthemoney/model.py +108 -56
  28. followthemoney/namespace.py +119 -0
  29. followthemoney/offshore.py +48 -0
  30. followthemoney/ontology.py +77 -0
  31. followthemoney/property.py +204 -71
  32. followthemoney/proxy.py +455 -118
  33. followthemoney/rdf.py +9 -0
  34. followthemoney/schema/Address.yaml +78 -0
  35. followthemoney/schema/Airplane.yaml +17 -10
  36. followthemoney/schema/Analyzable.yaml +54 -0
  37. followthemoney/schema/Article.yaml +16 -0
  38. followthemoney/schema/Assessment.yaml +32 -0
  39. followthemoney/schema/Asset.yaml +10 -4
  40. followthemoney/schema/Associate.yaml +41 -0
  41. followthemoney/schema/Audio.yaml +24 -0
  42. followthemoney/schema/BankAccount.yaml +53 -9
  43. followthemoney/schema/Call.yaml +48 -0
  44. followthemoney/schema/CallForTenders.yaml +117 -0
  45. followthemoney/schema/Company.yaml +37 -12
  46. followthemoney/schema/Contract.yaml +41 -7
  47. followthemoney/schema/ContractAward.yaml +30 -11
  48. followthemoney/schema/CourtCase.yaml +16 -10
  49. followthemoney/schema/CourtCaseParty.yaml +17 -6
  50. followthemoney/schema/CryptoWallet.yaml +48 -0
  51. followthemoney/schema/Debt.yaml +37 -0
  52. followthemoney/schema/Directorship.yaml +17 -4
  53. followthemoney/schema/Document.yaml +72 -139
  54. followthemoney/schema/Documentation.yml +38 -0
  55. followthemoney/schema/EconomicActivity.yaml +32 -17
  56. followthemoney/schema/Email.yaml +76 -0
  57. followthemoney/schema/Employment.yaml +39 -0
  58. followthemoney/schema/Event.yaml +35 -3
  59. followthemoney/schema/Family.yaml +41 -0
  60. followthemoney/schema/Folder.yaml +13 -0
  61. followthemoney/schema/HyperText.yaml +21 -0
  62. followthemoney/schema/Identification.yaml +40 -0
  63. followthemoney/schema/Image.yaml +25 -0
  64. followthemoney/schema/Interest.yaml +3 -6
  65. followthemoney/schema/Interval.yaml +56 -5
  66. followthemoney/schema/LegalEntity.yaml +81 -20
  67. followthemoney/schema/License.yaml +7 -3
  68. followthemoney/schema/Membership.yaml +19 -4
  69. followthemoney/schema/Mention.yaml +54 -0
  70. followthemoney/schema/Message.yaml +73 -0
  71. followthemoney/schema/Note.yaml +23 -0
  72. followthemoney/schema/Occupancy.yaml +40 -0
  73. followthemoney/schema/Organization.yaml +38 -3
  74. followthemoney/schema/Ownership.yaml +16 -4
  75. followthemoney/schema/Package.yaml +17 -0
  76. followthemoney/schema/Page.yaml +43 -0
  77. followthemoney/schema/Pages.yaml +23 -0
  78. followthemoney/schema/Passport.yaml +15 -17
  79. followthemoney/schema/Payment.yaml +38 -7
  80. followthemoney/schema/Person.yaml +61 -5
  81. followthemoney/schema/PlainText.yaml +17 -0
  82. followthemoney/schema/Position.yaml +50 -0
  83. followthemoney/schema/Post.yaml +42 -0
  84. followthemoney/schema/Project.yaml +27 -0
  85. followthemoney/schema/ProjectParticipant.yaml +36 -0
  86. followthemoney/schema/PublicBody.yaml +14 -3
  87. followthemoney/schema/RealEstate.yaml +19 -3
  88. followthemoney/schema/Representation.yaml +17 -6
  89. followthemoney/schema/Sanction.yaml +44 -20
  90. followthemoney/schema/Security.yaml +59 -0
  91. followthemoney/schema/Similar.yaml +37 -0
  92. followthemoney/schema/Succession.yaml +36 -0
  93. followthemoney/schema/Table.yaml +32 -0
  94. followthemoney/schema/TaxRoll.yaml +27 -9
  95. followthemoney/schema/Thing.yaml +69 -13
  96. followthemoney/schema/Trip.yaml +42 -0
  97. followthemoney/schema/UnknownLink.yaml +17 -6
  98. followthemoney/schema/UserAccount.yaml +44 -0
  99. followthemoney/schema/Value.yaml +5 -1
  100. followthemoney/schema/Vehicle.yaml +25 -8
  101. followthemoney/schema/Vessel.yaml +18 -10
  102. followthemoney/schema/Video.yaml +20 -0
  103. followthemoney/schema/Workbook.yaml +18 -0
  104. followthemoney/schema.py +406 -135
  105. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  106. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +2900 -787
  107. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  108. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +2108 -520
  109. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  110. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +2902 -782
  111. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  112. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +2893 -779
  113. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  114. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +4362 -0
  115. followthemoney/translations/fr/followthemoney.po +3861 -0
  116. followthemoney/translations/messages.pot +3021 -725
  117. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  118. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3778 -0
  119. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  120. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3837 -0
  121. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  122. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3784 -0
  123. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  124. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +2837 -539
  125. followthemoney/translations/ru/followthemoney.po +4221 -0
  126. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  127. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +2073 -491
  128. followthemoney/types/__init__.py +35 -17
  129. followthemoney/types/address.py +41 -21
  130. followthemoney/types/checksum.py +25 -0
  131. followthemoney/types/common.py +233 -88
  132. followthemoney/types/country.py +89 -56
  133. followthemoney/types/date.py +59 -76
  134. followthemoney/types/email.py +66 -35
  135. followthemoney/types/entity.py +66 -13
  136. followthemoney/types/gender.py +66 -0
  137. followthemoney/types/iban.py +47 -28
  138. followthemoney/types/identifier.py +49 -22
  139. followthemoney/types/ip.py +35 -21
  140. followthemoney/types/json.py +58 -0
  141. followthemoney/types/language.py +124 -37
  142. followthemoney/types/mimetype.py +44 -0
  143. followthemoney/types/name.py +56 -12
  144. followthemoney/types/number.py +30 -0
  145. followthemoney/types/phone.py +92 -34
  146. followthemoney/types/registry.py +52 -0
  147. followthemoney/types/string.py +43 -0
  148. followthemoney/types/topic.py +94 -0
  149. followthemoney/types/url.py +39 -17
  150. followthemoney/util.py +139 -45
  151. followthemoney-3.8.0.dist-info/METADATA +153 -0
  152. followthemoney-3.8.0.dist-info/RECORD +157 -0
  153. {followthemoney-1.3.7.dist-info → followthemoney-3.8.0.dist-info}/WHEEL +1 -2
  154. followthemoney-3.8.0.dist-info/entry_points.txt +17 -0
  155. followthemoney-1.3.7.dist-info/LICENSE.txt → followthemoney-3.8.0.dist-info/licenses/LICENSE +1 -1
  156. followthemoney/link.py +0 -75
  157. followthemoney/schema/Associate.yml +0 -19
  158. followthemoney/schema/Family.yml +0 -19
  159. followthemoney/schema/Land.yml +0 -9
  160. followthemoney/schema/Relationship.yaml +0 -26
  161. followthemoney/types/domain.py +0 -50
  162. followthemoney-1.3.7.dist-info/DESCRIPTION.rst +0 -3
  163. followthemoney-1.3.7.dist-info/METADATA +0 -39
  164. followthemoney-1.3.7.dist-info/RECORD +0 -108
  165. followthemoney-1.3.7.dist-info/entry_points.txt +0 -3
  166. followthemoney-1.3.7.dist-info/metadata.json +0 -1
  167. followthemoney-1.3.7.dist-info/namespace_packages.txt +0 -1
  168. followthemoney-1.3.7.dist-info/top_level.txt +0 -3
  169. ns/ontology.py +0 -128
  170. tests/types/test_addresses.py +0 -24
  171. tests/types/test_common.py +0 -32
  172. tests/types/test_countries.py +0 -27
  173. tests/types/test_dates.py +0 -73
  174. tests/types/test_domains.py +0 -23
  175. tests/types/test_emails.py +0 -32
  176. tests/types/test_entity.py +0 -19
  177. tests/types/test_iban.py +0 -109
  178. tests/types/test_identifiers.py +0 -27
  179. tests/types/test_ip.py +0 -29
  180. tests/types/test_languages.py +0 -23
  181. tests/types/test_names.py +0 -33
  182. tests/types/test_phones.py +0 -24
  183. tests/types/test_registry.py +0 -14
  184. tests/types/test_urls.py +0 -23
  185. {ns → followthemoney/export}/__init__.py +0 -0
  186. /tests/types/__init__.py → /followthemoney/py.typed +0 -0
@@ -0,0 +1,3784 @@
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-03-04 14:36+0100\n"
12
+ "PO-Revision-Date: 2021-05-07 13:11+0000\n"
13
+ "Language-Team: Portuguese (Brazil) (https://www.transifex.com/aleph/teams/76591/pt_BR/)\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: pt_BR\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:59
30
+ msgid "No schema for entity."
31
+ msgstr ""
32
+
33
+ #: followthemoney/proxy.py:112
34
+ #, python-format
35
+ msgid "Unknown property (%s): %s"
36
+ msgstr ""
37
+
38
+ #: followthemoney/proxy.py:185
39
+ #, python-format
40
+ msgid "Stub property (%s): %s"
41
+ msgstr ""
42
+
43
+ #: followthemoney/schema.py:335
44
+ msgid "Required"
45
+ msgstr ""
46
+
47
+ #: followthemoney/schema.py:339
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
+ msgid "Gender"
2573
+ msgstr ""
2574
+
2575
+ #. Passport.properties.personalNumber.label
2576
+ #: followthemoney/schema/Passport.yaml
2577
+ msgid "Personal number"
2578
+ msgstr ""
2579
+
2580
+ #. Payment.label
2581
+ #: followthemoney/schema/Payment.yaml
2582
+ msgid "Payment"
2583
+ msgstr ""
2584
+
2585
+ #. Payment.plural
2586
+ #. Payment.properties.project.reverse.label
2587
+ #: followthemoney/schema/Payment.yaml
2588
+ msgid "Payments"
2589
+ msgstr ""
2590
+
2591
+ #. Payment.description
2592
+ #: followthemoney/schema/Payment.yaml
2593
+ msgid "A monetary payment between two parties."
2594
+ msgstr ""
2595
+
2596
+ #. Payment.edge.label
2597
+ #: followthemoney/schema/Payment.yaml
2598
+ msgid "paid"
2599
+ msgstr ""
2600
+
2601
+ #. Payment.properties.sequenceNumber.label
2602
+ #: followthemoney/schema/Payment.yaml
2603
+ msgid "Sequence number"
2604
+ msgstr ""
2605
+
2606
+ #. Payment.properties.transactionNumber.label
2607
+ #: followthemoney/schema/Payment.yaml
2608
+ msgid "Transaction number"
2609
+ msgstr ""
2610
+
2611
+ #. Payment.properties.purpose.label
2612
+ #: followthemoney/schema/Payment.yaml
2613
+ msgid "Payment purpose"
2614
+ msgstr ""
2615
+
2616
+ #. Payment.properties.programme.label
2617
+ #: followthemoney/schema/Payment.yaml
2618
+ msgid "Payment programme"
2619
+ msgstr ""
2620
+
2621
+ #. Payment.properties.programme.description
2622
+ #: followthemoney/schema/Payment.yaml
2623
+ msgid "Programme name, funding code, category identifier, etc."
2624
+ msgstr ""
2625
+
2626
+ #. Payment.properties.payer.label
2627
+ #: followthemoney/schema/Payment.yaml
2628
+ msgid "Payer"
2629
+ msgstr ""
2630
+
2631
+ #. Payment.properties.payer.reverse.label
2632
+ #. Payment.properties.payerAccount.reverse.label
2633
+ #: followthemoney/schema/Payment.yaml
2634
+ msgid "Payments made"
2635
+ msgstr ""
2636
+
2637
+ #. Payment.properties.payerAccount.label
2638
+ #: followthemoney/schema/Payment.yaml
2639
+ msgid "Payer bank account"
2640
+ msgstr ""
2641
+
2642
+ #. Payment.properties.beneficiary.label
2643
+ #: followthemoney/schema/Payment.yaml
2644
+ msgid "Beneficiary"
2645
+ msgstr ""
2646
+
2647
+ #. Payment.properties.beneficiary.reverse.label
2648
+ #. Payment.properties.beneficiaryAccount.reverse.label
2649
+ #: followthemoney/schema/Payment.yaml
2650
+ msgid "Payments received"
2651
+ msgstr ""
2652
+
2653
+ #. Payment.properties.beneficiaryAccount.label
2654
+ #: followthemoney/schema/Payment.yaml
2655
+ msgid "Beneficiary bank account"
2656
+ msgstr ""
2657
+
2658
+ #. Payment.properties.contract.reverse.label
2659
+ #: followthemoney/schema/Payment.yaml
2660
+ msgid "Contractual payments"
2661
+ msgstr ""
2662
+
2663
+ #. Person.plural
2664
+ #: followthemoney/schema/Person.yaml
2665
+ msgid "People"
2666
+ msgstr ""
2667
+
2668
+ #. Person.description
2669
+ #: followthemoney/schema/Person.yaml
2670
+ msgid "A natural person, as opposed to a corporation of some type.\n"
2671
+ msgstr ""
2672
+
2673
+ #. Person.properties.firstName.label
2674
+ #: followthemoney/schema/Person.yaml
2675
+ msgid "First name"
2676
+ msgstr ""
2677
+
2678
+ #. Person.properties.secondName.label
2679
+ #: followthemoney/schema/Person.yaml
2680
+ msgid "Second name"
2681
+ msgstr ""
2682
+
2683
+ #. Person.properties.middleName.label
2684
+ #: followthemoney/schema/Person.yaml
2685
+ msgid "Middle name"
2686
+ msgstr ""
2687
+
2688
+ #. Person.properties.fatherName.label
2689
+ #: followthemoney/schema/Person.yaml
2690
+ msgid "Patronymic"
2691
+ msgstr ""
2692
+
2693
+ #. Person.properties.motherName.label
2694
+ #: followthemoney/schema/Person.yaml
2695
+ msgid "Matronymic"
2696
+ msgstr ""
2697
+
2698
+ #. Person.properties.lastName.label
2699
+ #: followthemoney/schema/Person.yaml
2700
+ msgid "Last name"
2701
+ msgstr ""
2702
+
2703
+ #. Person.properties.deathDate.label
2704
+ #: followthemoney/schema/Person.yaml
2705
+ msgid "Death date"
2706
+ msgstr ""
2707
+
2708
+ #. Person.properties.position.label
2709
+ #: followthemoney/schema/Person.yaml
2710
+ msgid "Position"
2711
+ msgstr ""
2712
+
2713
+ #. Person.properties.nationality.label
2714
+ #: followthemoney/schema/Person.yaml
2715
+ msgid "Nationality"
2716
+ msgstr ""
2717
+
2718
+ #. Person.properties.ethnicity.label
2719
+ #: followthemoney/schema/Person.yaml
2720
+ msgid "Ethnicity"
2721
+ msgstr ""
2722
+
2723
+ #. Person.properties.religion.label
2724
+ #: followthemoney/schema/Person.yaml followthemoney/types/topic.py:61
2725
+ msgid "Religion"
2726
+ msgstr ""
2727
+
2728
+ #. Person.properties.political.label
2729
+ #: followthemoney/schema/Person.yaml
2730
+ msgid "Political association"
2731
+ msgstr ""
2732
+
2733
+ #. Person.properties.education.label
2734
+ #: followthemoney/schema/Person.yaml
2735
+ msgid "Education"
2736
+ msgstr ""
2737
+
2738
+ #. PlainText.label
2739
+ #: followthemoney/schema/PlainText.yaml
2740
+ msgid "Text file"
2741
+ msgstr ""
2742
+
2743
+ #. PlainText.plural
2744
+ #: followthemoney/schema/PlainText.yaml
2745
+ msgid "Text files"
2746
+ msgstr ""
2747
+
2748
+ #. PlainText.description
2749
+ #: followthemoney/schema/PlainText.yaml
2750
+ msgid "Text files, like .txt or source code.\n"
2751
+ msgstr ""
2752
+
2753
+ #. Project.plural
2754
+ #. ProjectParticipant.properties.participant.reverse.label
2755
+ #: followthemoney/schema/Project.yaml
2756
+ #: followthemoney/schema/ProjectParticipant.yaml
2757
+ msgid "Projects"
2758
+ msgstr ""
2759
+
2760
+ #. Project.description
2761
+ #. ProjectParticipant.description
2762
+ #: followthemoney/schema/Project.yaml
2763
+ #: followthemoney/schema/ProjectParticipant.yaml
2764
+ msgid "An activity carried out by a group of participants.\n"
2765
+ msgstr ""
2766
+
2767
+ #. Project.properties.projectId.label
2768
+ #: followthemoney/schema/Project.yaml
2769
+ msgid "Project ID"
2770
+ msgstr ""
2771
+
2772
+ #. Project.properties.phase.label
2773
+ #: followthemoney/schema/Project.yaml
2774
+ msgid "Phase"
2775
+ msgstr ""
2776
+
2777
+ #. Project.properties.goal.label
2778
+ #: followthemoney/schema/Project.yaml
2779
+ msgid "Project goal"
2780
+ msgstr ""
2781
+
2782
+ #. ProjectParticipant.label
2783
+ #: followthemoney/schema/ProjectParticipant.yaml
2784
+ msgid "Project participant"
2785
+ msgstr ""
2786
+
2787
+ #. ProjectParticipant.plural
2788
+ #: followthemoney/schema/ProjectParticipant.yaml
2789
+ msgid "Project participants"
2790
+ msgstr ""
2791
+
2792
+ #. ProjectParticipant.edge.label
2793
+ #: followthemoney/schema/ProjectParticipant.yaml
2794
+ msgid "participates in"
2795
+ msgstr ""
2796
+
2797
+ #. ProjectParticipant.properties.project.reverse.label
2798
+ #: followthemoney/schema/ProjectParticipant.yaml
2799
+ msgid "Participants"
2800
+ msgstr ""
2801
+
2802
+ #. ProjectParticipant.properties.participant.label
2803
+ #: followthemoney/schema/ProjectParticipant.yaml
2804
+ msgid "Participant"
2805
+ msgstr ""
2806
+
2807
+ #. PublicBody.label
2808
+ #: followthemoney/schema/PublicBody.yaml
2809
+ msgid "Public body"
2810
+ msgstr ""
2811
+
2812
+ #. PublicBody.plural
2813
+ #: followthemoney/schema/PublicBody.yaml
2814
+ msgid "Public bodies"
2815
+ msgstr ""
2816
+
2817
+ #. PublicBody.description
2818
+ #: followthemoney/schema/PublicBody.yaml
2819
+ msgid "A public body, such as a ministry, department or state company.\n"
2820
+ msgstr ""
2821
+
2822
+ #. RealEstate.label
2823
+ #: followthemoney/schema/RealEstate.yaml
2824
+ msgid "Real estate"
2825
+ msgstr ""
2826
+
2827
+ #. RealEstate.plural
2828
+ #: followthemoney/schema/RealEstate.yaml
2829
+ msgid "Real estates"
2830
+ msgstr ""
2831
+
2832
+ #. RealEstate.description
2833
+ #: followthemoney/schema/RealEstate.yaml
2834
+ msgid "A piece of land or property."
2835
+ msgstr ""
2836
+
2837
+ #. RealEstate.properties.censusBlock.label
2838
+ #: followthemoney/schema/RealEstate.yaml
2839
+ msgid "Census block"
2840
+ msgstr ""
2841
+
2842
+ #. RealEstate.properties.cadastralCode.label
2843
+ #: followthemoney/schema/RealEstate.yaml
2844
+ msgid "Cadastral code"
2845
+ msgstr ""
2846
+
2847
+ #. RealEstate.properties.titleNumber.label
2848
+ #: followthemoney/schema/RealEstate.yaml
2849
+ msgid "Title number"
2850
+ msgstr ""
2851
+
2852
+ #. RealEstate.properties.tenure.label
2853
+ #: followthemoney/schema/RealEstate.yaml
2854
+ msgid "Tenure"
2855
+ msgstr ""
2856
+
2857
+ #. RealEstate.properties.encumbrance.label
2858
+ #: followthemoney/schema/RealEstate.yaml
2859
+ msgid "Encumbrance"
2860
+ msgstr ""
2861
+
2862
+ #. RealEstate.properties.encumbrance.description
2863
+ #: followthemoney/schema/RealEstate.yaml
2864
+ msgid ""
2865
+ "An encumbrance is a right to, interest in, or legal liability on real "
2866
+ "property that does not prohibit passing title to the property but that "
2867
+ "diminishes its value.\n"
2868
+ msgstr ""
2869
+
2870
+ #. RealEstate.properties.propertyType.label
2871
+ #: followthemoney/schema/RealEstate.yaml
2872
+ msgid "Property type"
2873
+ msgstr ""
2874
+
2875
+ #. RealEstate.properties.landType.label
2876
+ #: followthemoney/schema/RealEstate.yaml
2877
+ msgid "Land type"
2878
+ msgstr ""
2879
+
2880
+ #. RealEstate.properties.createDate.label
2881
+ #: followthemoney/schema/RealEstate.yaml
2882
+ msgid "Record date"
2883
+ msgstr ""
2884
+
2885
+ #. Representation.label
2886
+ #: followthemoney/schema/Representation.yaml
2887
+ msgid "Representation"
2888
+ msgstr ""
2889
+
2890
+ #. Representation.plural
2891
+ #: followthemoney/schema/Representation.yaml
2892
+ msgid "Representations"
2893
+ msgstr ""
2894
+
2895
+ #. Representation.description
2896
+ #: followthemoney/schema/Representation.yaml
2897
+ msgid ""
2898
+ "A mediatory, intermediary, middleman, or broker acting on behalf of a legal "
2899
+ "entity."
2900
+ msgstr ""
2901
+
2902
+ #. Representation.edge.label
2903
+ #: followthemoney/schema/Representation.yaml
2904
+ msgid "represents"
2905
+ msgstr ""
2906
+
2907
+ #. Representation.properties.agent.label
2908
+ #: followthemoney/schema/Representation.yaml
2909
+ msgid "Agent"
2910
+ msgstr ""
2911
+
2912
+ #. Representation.properties.agent.reverse.label
2913
+ #: followthemoney/schema/Representation.yaml
2914
+ msgid "Clients"
2915
+ msgstr ""
2916
+
2917
+ #. Representation.properties.client.label
2918
+ #: followthemoney/schema/Representation.yaml
2919
+ msgid "Client"
2920
+ msgstr ""
2921
+
2922
+ #. Representation.properties.client.reverse.label
2923
+ #: followthemoney/schema/Representation.yaml
2924
+ msgid "Agents"
2925
+ msgstr ""
2926
+
2927
+ #. Sanction.label
2928
+ #: followthemoney/schema/Sanction.yaml
2929
+ msgid "Sanction"
2930
+ msgstr ""
2931
+
2932
+ #. Sanction.plural
2933
+ #. Sanction.properties.entity.reverse.label
2934
+ #: followthemoney/schema/Sanction.yaml
2935
+ msgid "Sanctions"
2936
+ msgstr ""
2937
+
2938
+ #. Sanction.description
2939
+ #: followthemoney/schema/Sanction.yaml
2940
+ msgid "A sanction designation"
2941
+ msgstr ""
2942
+
2943
+ #. Sanction.properties.authorityId.label
2944
+ #: followthemoney/schema/Sanction.yaml
2945
+ msgid "Authority-issued identifier"
2946
+ msgstr ""
2947
+
2948
+ #. Sanction.properties.unscId.label
2949
+ #: followthemoney/schema/Sanction.yaml
2950
+ msgid "UN SC identifier"
2951
+ msgstr ""
2952
+
2953
+ #. Sanction.properties.program.label
2954
+ #. Thing.properties.program.label
2955
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Thing.yaml
2956
+ msgid "Program"
2957
+ msgstr ""
2958
+
2959
+ #. Sanction.properties.provisions.label
2960
+ #: followthemoney/schema/Sanction.yaml
2961
+ msgid "Scope of sanctions"
2962
+ msgstr ""
2963
+
2964
+ #. Sanction.properties.reason.label
2965
+ #: followthemoney/schema/Sanction.yaml
2966
+ msgid "Reason"
2967
+ msgstr ""
2968
+
2969
+ #. Sanction.properties.listingDate.label
2970
+ #: followthemoney/schema/Sanction.yaml
2971
+ msgid "Listing date"
2972
+ msgstr ""
2973
+
2974
+ #. Security.label
2975
+ #: followthemoney/schema/Security.yaml
2976
+ msgid "Security"
2977
+ msgstr ""
2978
+
2979
+ #. Security.plural
2980
+ #: followthemoney/schema/Security.yaml
2981
+ msgid "Securities"
2982
+ msgstr ""
2983
+
2984
+ #. Security.description
2985
+ #: followthemoney/schema/Security.yaml
2986
+ msgid "A tradeable financial asset."
2987
+ msgstr ""
2988
+
2989
+ #. Security.properties.isin.label
2990
+ #: followthemoney/schema/Security.yaml
2991
+ msgid "ISIN"
2992
+ msgstr ""
2993
+
2994
+ #. Security.properties.isin.description
2995
+ #: followthemoney/schema/Security.yaml
2996
+ msgid "International Securities Identification Number"
2997
+ msgstr ""
2998
+
2999
+ #. Security.properties.ticker.label
3000
+ #: followthemoney/schema/Security.yaml
3001
+ msgid "Ticker"
3002
+ msgstr ""
3003
+
3004
+ #. Security.properties.issuer.label
3005
+ #: followthemoney/schema/Security.yaml
3006
+ msgid "Issuer"
3007
+ msgstr ""
3008
+
3009
+ #. Security.properties.issuer.reverse.label
3010
+ #: followthemoney/schema/Security.yaml
3011
+ msgid "Issued securities"
3012
+ msgstr ""
3013
+
3014
+ #. Security.properties.issueDate.label
3015
+ #: followthemoney/schema/Security.yaml
3016
+ msgid "Date issued"
3017
+ msgstr ""
3018
+
3019
+ #. Security.properties.collateral.label
3020
+ #: followthemoney/schema/Security.yaml
3021
+ msgid "Collateral"
3022
+ msgstr ""
3023
+
3024
+ #. Succession.label
3025
+ #: followthemoney/schema/Succession.yaml
3026
+ msgid "Succession"
3027
+ msgstr ""
3028
+
3029
+ #. Succession.plural
3030
+ #: followthemoney/schema/Succession.yaml
3031
+ msgid "Successions"
3032
+ msgstr ""
3033
+
3034
+ #. Succession.description
3035
+ #: followthemoney/schema/Succession.yaml
3036
+ msgid "Two entities that legally succeed each other."
3037
+ msgstr ""
3038
+
3039
+ #. Succession.edge.label
3040
+ #: followthemoney/schema/Succession.yaml
3041
+ msgid "preceeds"
3042
+ msgstr ""
3043
+
3044
+ #. Succession.properties.predecessor.label
3045
+ #: followthemoney/schema/Succession.yaml
3046
+ msgid "Predecessor"
3047
+ msgstr ""
3048
+
3049
+ #. Succession.properties.predecessor.reverse.label
3050
+ #: followthemoney/schema/Succession.yaml
3051
+ msgid "Successors"
3052
+ msgstr ""
3053
+
3054
+ #. Succession.properties.successor.label
3055
+ #: followthemoney/schema/Succession.yaml
3056
+ msgid "Successor"
3057
+ msgstr ""
3058
+
3059
+ #. Succession.properties.successor.reverse.label
3060
+ #: followthemoney/schema/Succession.yaml
3061
+ msgid "Predecessors"
3062
+ msgstr ""
3063
+
3064
+ #. Table.label
3065
+ #: followthemoney/schema/Table.yaml
3066
+ msgid "Table"
3067
+ msgstr ""
3068
+
3069
+ #. Table.plural
3070
+ #: followthemoney/schema/Table.yaml
3071
+ msgid "Tables"
3072
+ msgstr ""
3073
+
3074
+ #. Table.description
3075
+ #: followthemoney/schema/Table.yaml
3076
+ msgid ""
3077
+ "A document structured into rows and cells. This includes simple CSV files, "
3078
+ "spreadsheet sheets or database relations.\n"
3079
+ msgstr ""
3080
+
3081
+ #. Table.properties.columns.label
3082
+ #: followthemoney/schema/Table.yaml
3083
+ msgid "Column headings"
3084
+ msgstr ""
3085
+
3086
+ #. Table.properties.rowCount.label
3087
+ #: followthemoney/schema/Table.yaml
3088
+ msgid "Number of rows"
3089
+ msgstr ""
3090
+
3091
+ #. Table.properties.csvHash.label
3092
+ #: followthemoney/schema/Table.yaml
3093
+ msgid "CSV alternative version checksum"
3094
+ msgstr ""
3095
+
3096
+ #. TaxRoll.label
3097
+ #: followthemoney/schema/TaxRoll.yaml
3098
+ msgid "Tax roll"
3099
+ msgstr ""
3100
+
3101
+ #. TaxRoll.plural
3102
+ #. TaxRoll.properties.taxee.reverse.label
3103
+ #: followthemoney/schema/TaxRoll.yaml
3104
+ msgid "Tax rolls"
3105
+ msgstr ""
3106
+
3107
+ #. TaxRoll.description
3108
+ #: followthemoney/schema/TaxRoll.yaml
3109
+ msgid "A tax declaration of an individual"
3110
+ msgstr ""
3111
+
3112
+ #. TaxRoll.properties.taxee.label
3113
+ #: followthemoney/schema/TaxRoll.yaml
3114
+ msgid "Taxee"
3115
+ msgstr ""
3116
+
3117
+ #. TaxRoll.properties.income.label
3118
+ #: followthemoney/schema/TaxRoll.yaml
3119
+ msgid "Registered income"
3120
+ msgstr ""
3121
+
3122
+ #. TaxRoll.properties.taxPaid.label
3123
+ #: followthemoney/schema/TaxRoll.yaml
3124
+ msgid "Amount of tax paid"
3125
+ msgstr ""
3126
+
3127
+ #. TaxRoll.properties.wealth.label
3128
+ #: followthemoney/schema/TaxRoll.yaml
3129
+ msgid "Registered wealth"
3130
+ msgstr ""
3131
+
3132
+ #. Thing.properties.alias.label
3133
+ #: followthemoney/schema/Thing.yaml
3134
+ msgid "Other name"
3135
+ msgstr ""
3136
+
3137
+ #. Thing.properties.previousName.label
3138
+ #: followthemoney/schema/Thing.yaml
3139
+ msgid "Previous name"
3140
+ msgstr ""
3141
+
3142
+ #. Thing.properties.weakAlias.label
3143
+ #: followthemoney/schema/Thing.yaml
3144
+ msgid "Weak alias"
3145
+ msgstr ""
3146
+
3147
+ #. Thing.properties.wikipediaUrl.label
3148
+ #: followthemoney/schema/Thing.yaml
3149
+ msgid "Wikipedia Article"
3150
+ msgstr ""
3151
+
3152
+ #. Thing.properties.wikidataId.label
3153
+ #: followthemoney/schema/Thing.yaml
3154
+ msgid "Wikidata ID"
3155
+ msgstr ""
3156
+
3157
+ #. Thing.properties.keywords.label
3158
+ #: followthemoney/schema/Thing.yaml
3159
+ msgid "Keywords"
3160
+ msgstr ""
3161
+
3162
+ #. Thing.properties.topics.label
3163
+ #: followthemoney/schema/Thing.yaml followthemoney/types/topic.py:22
3164
+ msgid "Topics"
3165
+ msgstr ""
3166
+
3167
+ #. Thing.properties.addressEntity.reverse.label
3168
+ #: followthemoney/schema/Thing.yaml
3169
+ msgid "Located there"
3170
+ msgstr ""
3171
+
3172
+ #. Thing.properties.proof.label
3173
+ #: followthemoney/schema/Thing.yaml
3174
+ msgid "Source document"
3175
+ msgstr ""
3176
+
3177
+ #. Thing.properties.proof.reverse.label
3178
+ #: followthemoney/schema/Thing.yaml
3179
+ msgid "Derived entities"
3180
+ msgstr ""
3181
+
3182
+ #. Thing.properties.createdAt.label
3183
+ #: followthemoney/schema/Thing.yaml
3184
+ msgid "Created at"
3185
+ msgstr ""
3186
+
3187
+ #. UnknownLink.label
3188
+ #: followthemoney/schema/UnknownLink.yaml
3189
+ msgid "Other link"
3190
+ msgstr ""
3191
+
3192
+ #. UnknownLink.plural
3193
+ #: followthemoney/schema/UnknownLink.yaml
3194
+ msgid "Other links"
3195
+ msgstr ""
3196
+
3197
+ #. UnknownLink.edge.label
3198
+ #: followthemoney/schema/UnknownLink.yaml
3199
+ msgid "linked to"
3200
+ msgstr ""
3201
+
3202
+ #. UnknownLink.properties.subject.reverse.label
3203
+ #: followthemoney/schema/UnknownLink.yaml
3204
+ msgid "Linked to"
3205
+ msgstr ""
3206
+
3207
+ #. UnknownLink.properties.object.label
3208
+ #: followthemoney/schema/UnknownLink.yaml
3209
+ msgid "Object"
3210
+ msgstr ""
3211
+
3212
+ #. UnknownLink.properties.object.reverse.label
3213
+ #: followthemoney/schema/UnknownLink.yaml
3214
+ msgid "Linked from"
3215
+ msgstr ""
3216
+
3217
+ #. UserAccount.label
3218
+ #: followthemoney/schema/UserAccount.yaml
3219
+ msgid "User account"
3220
+ msgstr ""
3221
+
3222
+ #. UserAccount.plural
3223
+ #. UserAccount.properties.owner.reverse.label
3224
+ #: followthemoney/schema/UserAccount.yaml
3225
+ msgid "User accounts"
3226
+ msgstr ""
3227
+
3228
+ #. UserAccount.properties.service.label
3229
+ #: followthemoney/schema/UserAccount.yaml
3230
+ msgid "Service"
3231
+ msgstr ""
3232
+
3233
+ #. UserAccount.properties.number.label
3234
+ #: followthemoney/schema/UserAccount.yaml
3235
+ msgid "Phone Number"
3236
+ msgstr ""
3237
+
3238
+ #. UserAccount.properties.username.label
3239
+ #: followthemoney/schema/UserAccount.yaml
3240
+ msgid "Username"
3241
+ msgstr ""
3242
+
3243
+ #. UserAccount.properties.password.label
3244
+ #: followthemoney/schema/UserAccount.yaml
3245
+ msgid "Password"
3246
+ msgstr ""
3247
+
3248
+ #. Value.label
3249
+ #: followthemoney/schema/Value.yaml
3250
+ msgid "Value"
3251
+ msgstr ""
3252
+
3253
+ #. Value.plural
3254
+ #: followthemoney/schema/Value.yaml
3255
+ msgid "Values"
3256
+ msgstr ""
3257
+
3258
+ #. Value.properties.amount.label
3259
+ #: followthemoney/schema/Value.yaml
3260
+ msgid "Amount"
3261
+ msgstr ""
3262
+
3263
+ #. Value.properties.currency.label
3264
+ #: followthemoney/schema/Value.yaml
3265
+ msgid "Currency"
3266
+ msgstr ""
3267
+
3268
+ #. Value.properties.amountUsd.label
3269
+ #: followthemoney/schema/Value.yaml
3270
+ msgid "Amount in USD"
3271
+ msgstr ""
3272
+
3273
+ #. Value.properties.amountEur.label
3274
+ #: followthemoney/schema/Value.yaml
3275
+ msgid "Amount in EUR"
3276
+ msgstr ""
3277
+
3278
+ #. Vehicle.label
3279
+ #: followthemoney/schema/Vehicle.yaml
3280
+ msgid "Vehicle"
3281
+ msgstr ""
3282
+
3283
+ #. Vehicle.plural
3284
+ #: followthemoney/schema/Vehicle.yaml
3285
+ msgid "Vehicles"
3286
+ msgstr ""
3287
+
3288
+ #. Vehicle.properties.model.label
3289
+ #: followthemoney/schema/Vehicle.yaml
3290
+ msgid "Model"
3291
+ msgstr ""
3292
+
3293
+ #. Vehicle.properties.owner.reverse.label
3294
+ #: followthemoney/schema/Vehicle.yaml
3295
+ msgid "Vehicles owned"
3296
+ msgstr ""
3297
+
3298
+ #. Vehicle.properties.operator.label
3299
+ #: followthemoney/schema/Vehicle.yaml
3300
+ msgid "Operator"
3301
+ msgstr ""
3302
+
3303
+ #. Vehicle.properties.operator.reverse.label
3304
+ #: followthemoney/schema/Vehicle.yaml
3305
+ msgid "Vehicles operated"
3306
+ msgstr ""
3307
+
3308
+ #. Vehicle.properties.buildDate.label
3309
+ #: followthemoney/schema/Vehicle.yaml
3310
+ msgid "Build Date"
3311
+ msgstr ""
3312
+
3313
+ #. Vehicle.properties.registrationDate.label
3314
+ #: followthemoney/schema/Vehicle.yaml
3315
+ msgid "Registration Date"
3316
+ msgstr ""
3317
+
3318
+ #. Vessel.label
3319
+ #: followthemoney/schema/Vessel.yaml
3320
+ msgid "Vessel"
3321
+ msgstr ""
3322
+
3323
+ #. Vessel.plural
3324
+ #: followthemoney/schema/Vessel.yaml
3325
+ msgid "Vessels"
3326
+ msgstr ""
3327
+
3328
+ #. Vessel.description
3329
+ #: followthemoney/schema/Vessel.yaml
3330
+ msgid "A boat or ship. Typically flying some sort of national flag.\n"
3331
+ msgstr ""
3332
+
3333
+ #. Vessel.properties.imoNumber.label
3334
+ #: followthemoney/schema/Vessel.yaml
3335
+ msgid "IMO Number"
3336
+ msgstr ""
3337
+
3338
+ #. Vessel.properties.crsNumber.label
3339
+ #: followthemoney/schema/Vessel.yaml
3340
+ msgid "CRS Number"
3341
+ msgstr ""
3342
+
3343
+ #. Vessel.properties.flag.label
3344
+ #: followthemoney/schema/Vessel.yaml
3345
+ msgid "Flag"
3346
+ msgstr ""
3347
+
3348
+ #. Vessel.properties.registrationPort.label
3349
+ #: followthemoney/schema/Vessel.yaml
3350
+ msgid "Port of Registration"
3351
+ msgstr ""
3352
+
3353
+ #. Vessel.properties.navigationArea.label
3354
+ #: followthemoney/schema/Vessel.yaml
3355
+ msgid "Navigation Area"
3356
+ msgstr ""
3357
+
3358
+ #. Vessel.properties.tonnage.label
3359
+ #: followthemoney/schema/Vessel.yaml
3360
+ msgid "Tonnage"
3361
+ msgstr ""
3362
+
3363
+ #. Vessel.properties.grossRegisteredTonnage.label
3364
+ #: followthemoney/schema/Vessel.yaml
3365
+ msgid "Gross Registered Tonnage"
3366
+ msgstr ""
3367
+
3368
+ #. Vessel.properties.nameChangeDate.label
3369
+ #: followthemoney/schema/Vessel.yaml
3370
+ msgid "Date of Name Change"
3371
+ msgstr ""
3372
+
3373
+ #. Vessel.properties.callSign.label
3374
+ #: followthemoney/schema/Vessel.yaml
3375
+ msgid "Call Sign"
3376
+ msgstr ""
3377
+
3378
+ #. Vessel.properties.pastFlags.label
3379
+ #: followthemoney/schema/Vessel.yaml
3380
+ msgid "Past Flags"
3381
+ msgstr ""
3382
+
3383
+ #. Vessel.properties.pastTypes.label
3384
+ #: followthemoney/schema/Vessel.yaml
3385
+ msgid "Past Types"
3386
+ msgstr ""
3387
+
3388
+ #. Vessel.properties.mmsi.label
3389
+ #: followthemoney/schema/Vessel.yaml
3390
+ msgid "MMSI"
3391
+ msgstr ""
3392
+
3393
+ #. Video.label
3394
+ #: followthemoney/schema/Video.yaml
3395
+ msgid "Video"
3396
+ msgstr ""
3397
+
3398
+ #. Video.plural
3399
+ #: followthemoney/schema/Video.yaml
3400
+ msgid "Videos"
3401
+ msgstr ""
3402
+
3403
+ #. Video.properties.duration.description
3404
+ #: followthemoney/schema/Video.yaml
3405
+ msgid "Duration of the video in ms"
3406
+ msgstr ""
3407
+
3408
+ #. Workbook.label
3409
+ #: followthemoney/schema/Workbook.yaml
3410
+ msgid "Workbook"
3411
+ msgstr ""
3412
+
3413
+ #. Workbook.plural
3414
+ #: followthemoney/schema/Workbook.yaml
3415
+ msgid "Workbooks"
3416
+ msgstr ""
3417
+
3418
+ #. Workbook.description
3419
+ #: followthemoney/schema/Workbook.yaml
3420
+ msgid ""
3421
+ "A spreadsheet document, for example from Excel. Each spreadsheet contains a "
3422
+ "set of sheets that hold actual data.\n"
3423
+ msgstr ""
3424
+
3425
+ #: followthemoney/types/checksum.py:19
3426
+ msgid "Checksums"
3427
+ msgstr ""
3428
+
3429
+ #: followthemoney/types/country.py:22
3430
+ msgid "Countries"
3431
+ msgstr ""
3432
+
3433
+ #: followthemoney/types/country.py:28
3434
+ msgid "Global"
3435
+ msgstr ""
3436
+
3437
+ #: followthemoney/types/country.py:29
3438
+ msgid "European Union"
3439
+ msgstr ""
3440
+
3441
+ #: followthemoney/types/country.py:30
3442
+ msgid "Zaire"
3443
+ msgstr ""
3444
+
3445
+ #: followthemoney/types/country.py:32
3446
+ msgid "Czech Republic"
3447
+ msgstr ""
3448
+
3449
+ #: followthemoney/types/country.py:33
3450
+ msgid "Kosovo"
3451
+ msgstr ""
3452
+
3453
+ #: followthemoney/types/country.py:34
3454
+ msgid "East Germany"
3455
+ msgstr ""
3456
+
3457
+ #: followthemoney/types/country.py:35
3458
+ msgid "Yugoslavia"
3459
+ msgstr ""
3460
+
3461
+ #: followthemoney/types/country.py:36
3462
+ msgid "Serbia and Montenegro"
3463
+ msgstr ""
3464
+
3465
+ #: followthemoney/types/country.py:37
3466
+ msgid "Czechoslovakia"
3467
+ msgstr ""
3468
+
3469
+ #: followthemoney/types/country.py:38
3470
+ msgid "Soviet Union"
3471
+ msgstr ""
3472
+
3473
+ #: followthemoney/types/country.py:39
3474
+ msgid "Abkhazia"
3475
+ msgstr ""
3476
+
3477
+ #: followthemoney/types/country.py:40
3478
+ msgid "South Ossetia"
3479
+ msgstr ""
3480
+
3481
+ #: followthemoney/types/country.py:41
3482
+ msgid "Luhansk (Ukraine)"
3483
+ msgstr ""
3484
+
3485
+ #: followthemoney/types/country.py:42
3486
+ msgid "Donetsk (Ukraine)"
3487
+ msgstr ""
3488
+
3489
+ #: followthemoney/types/country.py:43
3490
+ msgid "Crimea (Ukraine)"
3491
+ msgstr ""
3492
+
3493
+ #: followthemoney/types/country.py:44
3494
+ msgid "Somaliland"
3495
+ msgstr ""
3496
+
3497
+ #: followthemoney/types/country.py:45
3498
+ msgid "Northern Cyprus"
3499
+ msgstr ""
3500
+
3501
+ #: followthemoney/types/country.py:46
3502
+ msgid "Nagorno-Karabakh"
3503
+ msgstr ""
3504
+
3505
+ #: followthemoney/types/country.py:47
3506
+ msgid "Tibet"
3507
+ msgstr ""
3508
+
3509
+ #: followthemoney/types/country.py:48
3510
+ msgid "Sark"
3511
+ msgstr ""
3512
+
3513
+ #: followthemoney/types/country.py:49
3514
+ msgid "Wales"
3515
+ msgstr ""
3516
+
3517
+ #: followthemoney/types/country.py:50
3518
+ msgid "Scotland"
3519
+ msgstr ""
3520
+
3521
+ #: followthemoney/types/country.py:51
3522
+ msgid "Northern Ireland"
3523
+ msgstr ""
3524
+
3525
+ #: followthemoney/types/country.py:52
3526
+ msgid "Transnistria"
3527
+ msgstr ""
3528
+
3529
+ #: followthemoney/types/date.py:27
3530
+ msgid "Dates"
3531
+ msgstr ""
3532
+
3533
+ #: followthemoney/types/email.py:25
3534
+ msgid "E-Mail Address"
3535
+ msgstr ""
3536
+
3537
+ #: followthemoney/types/email.py:26
3538
+ msgid "E-Mail Addresses"
3539
+ msgstr ""
3540
+
3541
+ #: followthemoney/types/entity.py:28
3542
+ msgid "Entities"
3543
+ msgstr ""
3544
+
3545
+ #: followthemoney/types/entity.py:61
3546
+ #, python-format
3547
+ msgid "Self-relationship (%s): %s"
3548
+ msgstr ""
3549
+
3550
+ #: followthemoney/types/iban.py:25
3551
+ msgid "IBANs"
3552
+ msgstr ""
3553
+
3554
+ #: followthemoney/types/identifier.py:21
3555
+ msgid "Identifier"
3556
+ msgstr ""
3557
+
3558
+ #: followthemoney/types/identifier.py:22
3559
+ msgid "Identifiers"
3560
+ msgstr ""
3561
+
3562
+ #: followthemoney/types/ip.py:19
3563
+ msgid "IP-Address"
3564
+ msgstr ""
3565
+
3566
+ #: followthemoney/types/ip.py:20
3567
+ msgid "IP-Addresses"
3568
+ msgstr ""
3569
+
3570
+ #: followthemoney/types/json.py:19 followthemoney/types/json.py:20
3571
+ msgid "Nested data"
3572
+ msgstr ""
3573
+
3574
+ #: followthemoney/types/language.py:23
3575
+ msgid "Languages"
3576
+ msgstr ""
3577
+
3578
+ #: followthemoney/types/mimetype.py:24
3579
+ msgid "MIME-Type"
3580
+ msgstr ""
3581
+
3582
+ #: followthemoney/types/mimetype.py:25
3583
+ msgid "MIME-Types"
3584
+ msgstr ""
3585
+
3586
+ #: followthemoney/types/name.py:27
3587
+ msgid "Names"
3588
+ msgstr ""
3589
+
3590
+ #: followthemoney/types/number.py:18
3591
+ msgid "Number"
3592
+ msgstr ""
3593
+
3594
+ #: followthemoney/types/number.py:19
3595
+ msgid "Numbers"
3596
+ msgstr ""
3597
+
3598
+ #: followthemoney/types/phone.py:36
3599
+ msgid "Phone numbers"
3600
+ msgstr ""
3601
+
3602
+ #: followthemoney/types/string.py:10
3603
+ msgid "Label"
3604
+ msgstr ""
3605
+
3606
+ #: followthemoney/types/string.py:11
3607
+ msgid "Labels"
3608
+ msgstr ""
3609
+
3610
+ #: followthemoney/types/string.py:25
3611
+ msgid "Texts"
3612
+ msgstr ""
3613
+
3614
+ #: followthemoney/types/string.py:39
3615
+ msgid "HTMLs"
3616
+ msgstr ""
3617
+
3618
+ #: followthemoney/types/topic.py:21
3619
+ msgid "Topic"
3620
+ msgstr ""
3621
+
3622
+ #: followthemoney/types/topic.py:26
3623
+ msgid "Crime"
3624
+ msgstr ""
3625
+
3626
+ #: followthemoney/types/topic.py:27
3627
+ msgid "Fraud"
3628
+ msgstr ""
3629
+
3630
+ #: followthemoney/types/topic.py:28
3631
+ msgid "Cybercrime"
3632
+ msgstr ""
3633
+
3634
+ #: followthemoney/types/topic.py:29
3635
+ msgid "Financial crime"
3636
+ msgstr ""
3637
+
3638
+ #: followthemoney/types/topic.py:30
3639
+ msgid "Theft"
3640
+ msgstr ""
3641
+
3642
+ #: followthemoney/types/topic.py:31
3643
+ msgid "War crimes"
3644
+ msgstr ""
3645
+
3646
+ #: followthemoney/types/topic.py:32
3647
+ msgid "Criminal leadership"
3648
+ msgstr ""
3649
+
3650
+ #: followthemoney/types/topic.py:33
3651
+ msgid "Terrorism"
3652
+ msgstr ""
3653
+
3654
+ #: followthemoney/types/topic.py:34
3655
+ msgid "Trafficking"
3656
+ msgstr ""
3657
+
3658
+ #: followthemoney/types/topic.py:35
3659
+ msgid "Drug trafficking"
3660
+ msgstr ""
3661
+
3662
+ #: followthemoney/types/topic.py:36
3663
+ msgid "Human trafficking"
3664
+ msgstr ""
3665
+
3666
+ #: followthemoney/types/topic.py:37
3667
+ msgid "Offshore"
3668
+ msgstr ""
3669
+
3670
+ #: followthemoney/types/topic.py:38
3671
+ msgid "Shell company"
3672
+ msgstr ""
3673
+
3674
+ #: followthemoney/types/topic.py:39
3675
+ msgid "Government"
3676
+ msgstr ""
3677
+
3678
+ #: followthemoney/types/topic.py:40
3679
+ msgid "National government"
3680
+ msgstr ""
3681
+
3682
+ #: followthemoney/types/topic.py:41
3683
+ msgid "State government"
3684
+ msgstr ""
3685
+
3686
+ #: followthemoney/types/topic.py:42
3687
+ msgid "Municipal government"
3688
+ msgstr ""
3689
+
3690
+ #: followthemoney/types/topic.py:43
3691
+ msgid "State-owned enterprise"
3692
+ msgstr ""
3693
+
3694
+ #: followthemoney/types/topic.py:44
3695
+ msgid "Intergovernmental organization"
3696
+ msgstr ""
3697
+
3698
+ #: followthemoney/types/topic.py:45
3699
+ msgid "Financial services"
3700
+ msgstr ""
3701
+
3702
+ #: followthemoney/types/topic.py:47
3703
+ msgid "Fund"
3704
+ msgstr ""
3705
+
3706
+ #: followthemoney/types/topic.py:48
3707
+ msgid "Financial advisor"
3708
+ msgstr ""
3709
+
3710
+ #: followthemoney/types/topic.py:49
3711
+ msgid "Politician"
3712
+ msgstr ""
3713
+
3714
+ #: followthemoney/types/topic.py:50
3715
+ msgid "Close Associate"
3716
+ msgstr ""
3717
+
3718
+ #: followthemoney/types/topic.py:51
3719
+ msgid "Judge"
3720
+ msgstr ""
3721
+
3722
+ #: followthemoney/types/topic.py:52
3723
+ msgid "Civil servant"
3724
+ msgstr ""
3725
+
3726
+ #: followthemoney/types/topic.py:53
3727
+ msgid "Diplomat"
3728
+ msgstr ""
3729
+
3730
+ #: followthemoney/types/topic.py:54
3731
+ msgid "Lawyer"
3732
+ msgstr ""
3733
+
3734
+ #: followthemoney/types/topic.py:55
3735
+ msgid "Accountant"
3736
+ msgstr ""
3737
+
3738
+ #: followthemoney/types/topic.py:56
3739
+ msgid "Spy"
3740
+ msgstr ""
3741
+
3742
+ #: followthemoney/types/topic.py:57
3743
+ msgid "Journalist"
3744
+ msgstr ""
3745
+
3746
+ #: followthemoney/types/topic.py:58
3747
+ msgid "Activist"
3748
+ msgstr ""
3749
+
3750
+ #: followthemoney/types/topic.py:59
3751
+ msgid "Political party"
3752
+ msgstr ""
3753
+
3754
+ #: followthemoney/types/topic.py:60
3755
+ msgid "Union"
3756
+ msgstr ""
3757
+
3758
+ #: followthemoney/types/topic.py:62
3759
+ msgid "Military"
3760
+ msgstr ""
3761
+
3762
+ #: followthemoney/types/topic.py:63
3763
+ msgid "Frozen asset"
3764
+ msgstr ""
3765
+
3766
+ #: followthemoney/types/topic.py:64
3767
+ msgid "Sanctioned entity"
3768
+ msgstr ""
3769
+
3770
+ #: followthemoney/types/topic.py:65
3771
+ msgid "Debarred entity"
3772
+ msgstr ""
3773
+
3774
+ #: followthemoney/types/topic.py:66
3775
+ msgid "Person of interest"
3776
+ msgstr ""
3777
+
3778
+ #: followthemoney/types/url.py:22
3779
+ msgid "URL"
3780
+ msgstr ""
3781
+
3782
+ #: followthemoney/types/url.py:23
3783
+ msgid "URLs"
3784
+ msgstr ""