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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. followthemoney/__init__.py +5 -3
  2. followthemoney/cli/__init__.py +17 -0
  3. followthemoney/cli/aggregate.py +56 -0
  4. followthemoney/cli/cli.py +88 -0
  5. followthemoney/cli/exports.py +121 -0
  6. followthemoney/cli/mapping.py +85 -0
  7. followthemoney/cli/sieve.py +67 -0
  8. followthemoney/cli/util.py +142 -0
  9. followthemoney/compare.py +130 -60
  10. followthemoney/exc.py +19 -6
  11. followthemoney/export/common.py +29 -0
  12. followthemoney/export/csv.py +82 -0
  13. followthemoney/export/excel.py +75 -0
  14. followthemoney/export/graph.py +79 -0
  15. followthemoney/export/neo4j.py +182 -0
  16. followthemoney/export/rdf.py +26 -0
  17. followthemoney/graph.py +308 -0
  18. followthemoney/helpers.py +212 -0
  19. followthemoney/mapping/__init__.py +1 -1
  20. followthemoney/mapping/csv.py +67 -35
  21. followthemoney/mapping/entity.py +116 -44
  22. followthemoney/mapping/property.py +90 -44
  23. followthemoney/mapping/query.py +27 -19
  24. followthemoney/mapping/source.py +15 -5
  25. followthemoney/mapping/sql.py +75 -61
  26. followthemoney/messages.py +13 -7
  27. followthemoney/model.py +108 -56
  28. followthemoney/namespace.py +119 -0
  29. followthemoney/offshore.py +48 -0
  30. followthemoney/ontology.py +77 -0
  31. followthemoney/property.py +204 -71
  32. followthemoney/proxy.py +455 -118
  33. followthemoney/rdf.py +9 -0
  34. followthemoney/schema/Address.yaml +78 -0
  35. followthemoney/schema/Airplane.yaml +17 -10
  36. followthemoney/schema/Analyzable.yaml +54 -0
  37. followthemoney/schema/Article.yaml +16 -0
  38. followthemoney/schema/Assessment.yaml +32 -0
  39. followthemoney/schema/Asset.yaml +10 -4
  40. followthemoney/schema/Associate.yaml +41 -0
  41. followthemoney/schema/Audio.yaml +24 -0
  42. followthemoney/schema/BankAccount.yaml +53 -9
  43. followthemoney/schema/Call.yaml +48 -0
  44. followthemoney/schema/CallForTenders.yaml +117 -0
  45. followthemoney/schema/Company.yaml +37 -12
  46. followthemoney/schema/Contract.yaml +41 -7
  47. followthemoney/schema/ContractAward.yaml +30 -11
  48. followthemoney/schema/CourtCase.yaml +16 -10
  49. followthemoney/schema/CourtCaseParty.yaml +17 -6
  50. followthemoney/schema/CryptoWallet.yaml +48 -0
  51. followthemoney/schema/Debt.yaml +37 -0
  52. followthemoney/schema/Directorship.yaml +17 -4
  53. followthemoney/schema/Document.yaml +72 -139
  54. followthemoney/schema/Documentation.yml +38 -0
  55. followthemoney/schema/EconomicActivity.yaml +32 -17
  56. followthemoney/schema/Email.yaml +76 -0
  57. followthemoney/schema/Employment.yaml +39 -0
  58. followthemoney/schema/Event.yaml +35 -3
  59. followthemoney/schema/Family.yaml +41 -0
  60. followthemoney/schema/Folder.yaml +13 -0
  61. followthemoney/schema/HyperText.yaml +21 -0
  62. followthemoney/schema/Identification.yaml +40 -0
  63. followthemoney/schema/Image.yaml +25 -0
  64. followthemoney/schema/Interest.yaml +3 -6
  65. followthemoney/schema/Interval.yaml +56 -5
  66. followthemoney/schema/LegalEntity.yaml +81 -20
  67. followthemoney/schema/License.yaml +7 -3
  68. followthemoney/schema/Membership.yaml +19 -4
  69. followthemoney/schema/Mention.yaml +54 -0
  70. followthemoney/schema/Message.yaml +73 -0
  71. followthemoney/schema/Note.yaml +23 -0
  72. followthemoney/schema/Occupancy.yaml +40 -0
  73. followthemoney/schema/Organization.yaml +38 -3
  74. followthemoney/schema/Ownership.yaml +16 -4
  75. followthemoney/schema/Package.yaml +17 -0
  76. followthemoney/schema/Page.yaml +43 -0
  77. followthemoney/schema/Pages.yaml +23 -0
  78. followthemoney/schema/Passport.yaml +15 -17
  79. followthemoney/schema/Payment.yaml +38 -7
  80. followthemoney/schema/Person.yaml +61 -5
  81. followthemoney/schema/PlainText.yaml +17 -0
  82. followthemoney/schema/Position.yaml +50 -0
  83. followthemoney/schema/Post.yaml +42 -0
  84. followthemoney/schema/Project.yaml +27 -0
  85. followthemoney/schema/ProjectParticipant.yaml +36 -0
  86. followthemoney/schema/PublicBody.yaml +14 -3
  87. followthemoney/schema/RealEstate.yaml +19 -3
  88. followthemoney/schema/Representation.yaml +17 -6
  89. followthemoney/schema/Sanction.yaml +44 -20
  90. followthemoney/schema/Security.yaml +59 -0
  91. followthemoney/schema/Similar.yaml +37 -0
  92. followthemoney/schema/Succession.yaml +36 -0
  93. followthemoney/schema/Table.yaml +32 -0
  94. followthemoney/schema/TaxRoll.yaml +27 -9
  95. followthemoney/schema/Thing.yaml +69 -13
  96. followthemoney/schema/Trip.yaml +42 -0
  97. followthemoney/schema/UnknownLink.yaml +17 -6
  98. followthemoney/schema/UserAccount.yaml +44 -0
  99. followthemoney/schema/Value.yaml +5 -1
  100. followthemoney/schema/Vehicle.yaml +25 -8
  101. followthemoney/schema/Vessel.yaml +18 -10
  102. followthemoney/schema/Video.yaml +20 -0
  103. followthemoney/schema/Workbook.yaml +18 -0
  104. followthemoney/schema.py +406 -135
  105. followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
  106. followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +2900 -787
  107. followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
  108. followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +2108 -520
  109. followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
  110. followthemoney/translations/de/LC_MESSAGES/followthemoney.po +2902 -782
  111. followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
  112. followthemoney/translations/es/LC_MESSAGES/followthemoney.po +2893 -779
  113. followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
  114. followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +4362 -0
  115. followthemoney/translations/fr/followthemoney.po +3861 -0
  116. followthemoney/translations/messages.pot +3021 -725
  117. followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
  118. followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3778 -0
  119. followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
  120. followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3837 -0
  121. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
  122. followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3784 -0
  123. followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
  124. followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +2837 -539
  125. followthemoney/translations/ru/followthemoney.po +4221 -0
  126. followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
  127. followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +2073 -491
  128. followthemoney/types/__init__.py +35 -17
  129. followthemoney/types/address.py +41 -21
  130. followthemoney/types/checksum.py +25 -0
  131. followthemoney/types/common.py +233 -88
  132. followthemoney/types/country.py +89 -56
  133. followthemoney/types/date.py +59 -76
  134. followthemoney/types/email.py +66 -35
  135. followthemoney/types/entity.py +66 -13
  136. followthemoney/types/gender.py +66 -0
  137. followthemoney/types/iban.py +47 -28
  138. followthemoney/types/identifier.py +49 -22
  139. followthemoney/types/ip.py +35 -21
  140. followthemoney/types/json.py +58 -0
  141. followthemoney/types/language.py +124 -37
  142. followthemoney/types/mimetype.py +44 -0
  143. followthemoney/types/name.py +56 -12
  144. followthemoney/types/number.py +30 -0
  145. followthemoney/types/phone.py +92 -34
  146. followthemoney/types/registry.py +52 -0
  147. followthemoney/types/string.py +43 -0
  148. followthemoney/types/topic.py +94 -0
  149. followthemoney/types/url.py +39 -17
  150. followthemoney/util.py +139 -45
  151. followthemoney-3.8.0.dist-info/METADATA +153 -0
  152. followthemoney-3.8.0.dist-info/RECORD +157 -0
  153. {followthemoney-1.3.7.dist-info → followthemoney-3.8.0.dist-info}/WHEEL +1 -2
  154. followthemoney-3.8.0.dist-info/entry_points.txt +17 -0
  155. followthemoney-1.3.7.dist-info/LICENSE.txt → followthemoney-3.8.0.dist-info/licenses/LICENSE +1 -1
  156. followthemoney/link.py +0 -75
  157. followthemoney/schema/Associate.yml +0 -19
  158. followthemoney/schema/Family.yml +0 -19
  159. followthemoney/schema/Land.yml +0 -9
  160. followthemoney/schema/Relationship.yaml +0 -26
  161. followthemoney/types/domain.py +0 -50
  162. followthemoney-1.3.7.dist-info/DESCRIPTION.rst +0 -3
  163. followthemoney-1.3.7.dist-info/METADATA +0 -39
  164. followthemoney-1.3.7.dist-info/RECORD +0 -108
  165. followthemoney-1.3.7.dist-info/entry_points.txt +0 -3
  166. followthemoney-1.3.7.dist-info/metadata.json +0 -1
  167. followthemoney-1.3.7.dist-info/namespace_packages.txt +0 -1
  168. followthemoney-1.3.7.dist-info/top_level.txt +0 -3
  169. ns/ontology.py +0 -128
  170. tests/types/test_addresses.py +0 -24
  171. tests/types/test_common.py +0 -32
  172. tests/types/test_countries.py +0 -27
  173. tests/types/test_dates.py +0 -73
  174. tests/types/test_domains.py +0 -23
  175. tests/types/test_emails.py +0 -32
  176. tests/types/test_entity.py +0 -19
  177. tests/types/test_iban.py +0 -109
  178. tests/types/test_identifiers.py +0 -27
  179. tests/types/test_ip.py +0 -29
  180. tests/types/test_languages.py +0 -23
  181. tests/types/test_names.py +0 -33
  182. tests/types/test_phones.py +0 -24
  183. tests/types/test_registry.py +0 -14
  184. tests/types/test_urls.py +0 -23
  185. {ns → followthemoney/export}/__init__.py +0 -0
  186. /tests/types/__init__.py → /followthemoney/py.typed +0 -0
@@ -1,37 +1,179 @@
1
1
  # Translations template for PROJECT.
2
- # Copyright (C) 2018 ORGANIZATION
2
+ # Copyright (C) 2025 ORGANIZATION
3
3
  # This file is distributed under the same license as the PROJECT project.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PROJECT VERSION\n"
10
10
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11
- "POT-Creation-Date: 2018-10-15 19:08+0200\n"
11
+ "POT-Creation-Date: 2025-01-08 07:43+0100\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=utf-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Generated-By: Babel 2.6.0\n"
18
+ "Generated-By: Babel 2.16.0\n"
19
19
 
20
- #: followthemoney/property.py:65
20
+ #: followthemoney/property.py:182
21
+ msgid "Property cannot be written"
22
+ msgstr ""
23
+
24
+ #: followthemoney/property.py:187
21
25
  msgid "Invalid value"
22
26
  msgstr ""
23
27
 
24
- #: followthemoney/property.py:69
25
- msgid "Required"
28
+ #: followthemoney/proxy.py:62
29
+ msgid "No schema for entity."
26
30
  msgstr ""
27
31
 
28
- #: followthemoney/proxy.py:49
32
+ #: followthemoney/proxy.py:120
29
33
  #, python-format
30
34
  msgid "Unknown property (%s): %s"
31
35
  msgstr ""
32
36
 
33
- #: followthemoney/proxy.py:170
34
- msgid "No schema for entity."
37
+ #: followthemoney/proxy.py:192
38
+ #, python-format
39
+ msgid "Stub property (%s): %s"
40
+ msgstr ""
41
+
42
+ #: followthemoney/schema.py:387
43
+ msgid "Required"
44
+ msgstr ""
45
+
46
+ #: followthemoney/schema.py:391
47
+ msgid "Entity validation failed"
48
+ msgstr ""
49
+
50
+ #. Address.label
51
+ #. CryptoWallet.properties.publicKey.label
52
+ #. Thing.properties.address.label
53
+ #. Thing.properties.addressEntity.label
54
+ #: followthemoney/schema/Address.yaml followthemoney/schema/CryptoWallet.yaml
55
+ #: followthemoney/schema/Thing.yaml followthemoney/types/address.py:24
56
+ msgid "Address"
57
+ msgstr ""
58
+
59
+ #. Address.plural
60
+ #: followthemoney/schema/Address.yaml followthemoney/types/address.py:25
61
+ msgid "Addresses"
62
+ msgstr ""
63
+
64
+ #. Address.description
65
+ #: followthemoney/schema/Address.yaml
66
+ msgid "A location associated with an entity.\n"
67
+ msgstr ""
68
+
69
+ #. Address.properties.full.label
70
+ #: followthemoney/schema/Address.yaml
71
+ msgid "Full address"
72
+ msgstr ""
73
+
74
+ #. Address.properties.remarks.label
75
+ #: followthemoney/schema/Address.yaml
76
+ msgid "Remarks"
77
+ msgstr ""
78
+
79
+ #. Address.properties.remarks.description
80
+ #: followthemoney/schema/Address.yaml
81
+ msgid "Handling instructions, like 'care of'."
82
+ msgstr ""
83
+
84
+ #. Address.properties.postOfficeBox.label
85
+ #: followthemoney/schema/Address.yaml
86
+ msgid "PO Box"
87
+ msgstr ""
88
+
89
+ #. Address.properties.postOfficeBox.description
90
+ #: followthemoney/schema/Address.yaml
91
+ msgid "A mailbox identifier at the post office"
92
+ msgstr ""
93
+
94
+ #. Address.properties.street.label
95
+ #: followthemoney/schema/Address.yaml
96
+ msgid "Street address"
97
+ msgstr ""
98
+
99
+ #. Address.properties.street2.label
100
+ #: followthemoney/schema/Address.yaml
101
+ msgid "Street address (ctd.)"
102
+ msgstr ""
103
+
104
+ #. Address.properties.city.label
105
+ #: followthemoney/schema/Address.yaml
106
+ msgid "City"
107
+ msgstr ""
108
+
109
+ #. Address.properties.city.description
110
+ #: followthemoney/schema/Address.yaml
111
+ msgid "City, town, village or other locality"
112
+ msgstr ""
113
+
114
+ #. Address.properties.postalCode.label
115
+ #: followthemoney/schema/Address.yaml
116
+ msgid "Postal code"
117
+ msgstr ""
118
+
119
+ #. Address.properties.postalCode.description
120
+ #: followthemoney/schema/Address.yaml
121
+ msgid "Zip code or postcode."
122
+ msgstr ""
123
+
124
+ #. Address.properties.region.label
125
+ #: followthemoney/schema/Address.yaml
126
+ msgid "Region"
127
+ msgstr ""
128
+
129
+ #. Address.properties.region.description
130
+ #: followthemoney/schema/Address.yaml
131
+ msgid "Also province or area."
132
+ msgstr ""
133
+
134
+ #. Address.properties.state.label
135
+ #: followthemoney/schema/Address.yaml
136
+ msgid "State"
137
+ msgstr ""
138
+
139
+ #. Address.properties.state.description
140
+ #: followthemoney/schema/Address.yaml
141
+ msgid "State or federal unit."
142
+ msgstr ""
143
+
144
+ #. Address.properties.latitude.label
145
+ #. RealEstate.properties.latitude.label
146
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
147
+ msgid "Latitude"
148
+ msgstr ""
149
+
150
+ #. Address.properties.longitude.label
151
+ #. RealEstate.properties.longitude.label
152
+ #: followthemoney/schema/Address.yaml followthemoney/schema/RealEstate.yaml
153
+ msgid "Longitude"
154
+ msgstr ""
155
+
156
+ #. Address.properties.country.label
157
+ #. Event.properties.country.label
158
+ #. Identification.properties.country.label
159
+ #. Sanction.properties.country.label
160
+ #. TaxRoll.properties.country.label
161
+ #. Thing.properties.country.label
162
+ #: followthemoney/schema/Address.yaml followthemoney/schema/Event.yaml
163
+ #: followthemoney/schema/Identification.yaml
164
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/TaxRoll.yaml
165
+ #: followthemoney/schema/Thing.yaml followthemoney/types/country.py:21
166
+ msgid "Country"
167
+ msgstr ""
168
+
169
+ #. Address.properties.osmId.label
170
+ #: followthemoney/schema/Address.yaml
171
+ msgid "OpenStreetmap Place ID"
172
+ msgstr ""
173
+
174
+ #. Address.properties.googlePlaceId.label
175
+ #: followthemoney/schema/Address.yaml
176
+ msgid "Google Places ID"
35
177
  msgstr ""
36
178
 
37
179
  #. Airplane.label
@@ -44,6 +186,11 @@ msgstr ""
44
186
  msgid "Airplanes"
45
187
  msgstr ""
46
188
 
189
+ #. Airplane.description
190
+ #: followthemoney/schema/Airplane.yaml
191
+ msgid "An airplane, helicopter or other flying vehicle.\n"
192
+ msgstr ""
193
+
47
194
  #. Airplane.properties.serialNumber.label
48
195
  #: followthemoney/schema/Airplane.yaml
49
196
  msgid "Serial Number"
@@ -59,6 +206,124 @@ msgstr ""
59
206
  msgid "Manufacturer"
60
207
  msgstr ""
61
208
 
209
+ #. Analyzable.label
210
+ #: followthemoney/schema/Analyzable.yaml
211
+ msgid "Analyzable"
212
+ msgstr ""
213
+
214
+ #. Analyzable.plural
215
+ #: followthemoney/schema/Analyzable.yaml
216
+ msgid "Analyzables"
217
+ msgstr ""
218
+
219
+ #. Analyzable.description
220
+ #: followthemoney/schema/Analyzable.yaml
221
+ msgid "An entity suitable for being processed via named-entity recognition.\n"
222
+ msgstr ""
223
+
224
+ #. Analyzable.properties.detectedLanguage.label
225
+ #. Page.properties.detectedLanguage.label
226
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Page.yaml
227
+ msgid "Detected language"
228
+ msgstr ""
229
+
230
+ #. Analyzable.properties.detectedCountry.label
231
+ #: followthemoney/schema/Analyzable.yaml
232
+ msgid "Detected country"
233
+ msgstr ""
234
+
235
+ #. Analyzable.properties.namesMentioned.label
236
+ #. Interval.properties.namesMentioned.label
237
+ #: followthemoney/schema/Analyzable.yaml followthemoney/schema/Interval.yaml
238
+ msgid "Detected names"
239
+ msgstr ""
240
+
241
+ #. Analyzable.properties.peopleMentioned.label
242
+ #: followthemoney/schema/Analyzable.yaml
243
+ msgid "Detected people"
244
+ msgstr ""
245
+
246
+ #. Analyzable.properties.companiesMentioned.label
247
+ #: followthemoney/schema/Analyzable.yaml
248
+ msgid "Detected companies"
249
+ msgstr ""
250
+
251
+ #. Analyzable.properties.ibanMentioned.label
252
+ #: followthemoney/schema/Analyzable.yaml
253
+ msgid "Detected IBANs"
254
+ msgstr ""
255
+
256
+ #. Analyzable.properties.ipMentioned.label
257
+ #: followthemoney/schema/Analyzable.yaml
258
+ msgid "Detected IP addresses"
259
+ msgstr ""
260
+
261
+ #. Analyzable.properties.locationMentioned.label
262
+ #: followthemoney/schema/Analyzable.yaml
263
+ msgid "Detected locations"
264
+ msgstr ""
265
+
266
+ #. Analyzable.properties.phoneMentioned.label
267
+ #: followthemoney/schema/Analyzable.yaml
268
+ msgid "Detected phones"
269
+ msgstr ""
270
+
271
+ #. Analyzable.properties.emailMentioned.label
272
+ #: followthemoney/schema/Analyzable.yaml
273
+ msgid "Detected e-mail addresses"
274
+ msgstr ""
275
+
276
+ #. Article.label
277
+ #: followthemoney/schema/Article.yaml
278
+ msgid "Article"
279
+ msgstr ""
280
+
281
+ #. Article.plural
282
+ #: followthemoney/schema/Article.yaml
283
+ msgid "Articles"
284
+ msgstr ""
285
+
286
+ #. Article.description
287
+ #: followthemoney/schema/Article.yaml
288
+ msgid "A piece of media reporting about a subject.\n"
289
+ msgstr ""
290
+
291
+ #. Assessment.label
292
+ #: followthemoney/schema/Assessment.yaml
293
+ msgid "Assessment"
294
+ msgstr ""
295
+
296
+ #. Assessment.plural
297
+ #: followthemoney/schema/Assessment.yaml
298
+ msgid "Assessments"
299
+ msgstr ""
300
+
301
+ #. Assessment.properties.publishDate.label
302
+ #: followthemoney/schema/Assessment.yaml
303
+ msgid "Date of publishing"
304
+ msgstr ""
305
+
306
+ #. Assessment.properties.assessmentId.label
307
+ #: followthemoney/schema/Assessment.yaml
308
+ msgid "Assessment ID"
309
+ msgstr ""
310
+
311
+ #. Assessment.properties.author.label
312
+ #. Document.properties.author.label
313
+ #: followthemoney/schema/Assessment.yaml followthemoney/schema/Document.yaml
314
+ msgid "Author"
315
+ msgstr ""
316
+
317
+ #. Assessment.properties.author.plural
318
+ #: followthemoney/schema/Assessment.yaml
319
+ msgid "Authors"
320
+ msgstr ""
321
+
322
+ #. Assessment.properties.author.reverse.label
323
+ #: followthemoney/schema/Assessment.yaml
324
+ msgid "Assessments authored"
325
+ msgstr ""
326
+
62
327
  #. Asset.label
63
328
  #. Ownership.properties.asset.label
64
329
  #: followthemoney/schema/Asset.yaml followthemoney/schema/Ownership.yaml
@@ -70,51 +335,132 @@ msgstr ""
70
335
  msgid "Assets"
71
336
  msgstr ""
72
337
 
338
+ #. Asset.description
339
+ #: followthemoney/schema/Asset.yaml
340
+ msgid "A piece of property which can be owned and assigned a monetary value.\n"
341
+ msgstr ""
342
+
73
343
  #. Associate.label
74
344
  #. Associate.properties.associate.label
75
- #: followthemoney/schema/Associate.yml
345
+ #: followthemoney/schema/Associate.yaml
76
346
  msgid "Associate"
77
347
  msgstr ""
78
348
 
349
+ #. Associate.plural
350
+ #. Associate.properties.person.reverse.label
351
+ #: followthemoney/schema/Associate.yaml
352
+ msgid "Associates"
353
+ msgstr ""
354
+
79
355
  #. Associate.description
80
- #: followthemoney/schema/Associate.yml
356
+ #: followthemoney/schema/Associate.yaml
81
357
  msgid "Non-family association between two people"
82
358
  msgstr ""
83
359
 
360
+ #. Associate.edge.label
361
+ #: followthemoney/schema/Associate.yaml
362
+ msgid "associated with"
363
+ msgstr ""
364
+
365
+ #. Associate.properties.person.label
366
+ #. Family.properties.person.label
367
+ #. Person.label
368
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
369
+ #: followthemoney/schema/Person.yaml
370
+ msgid "Person"
371
+ msgstr ""
372
+
373
+ #. Associate.properties.person.description
374
+ #: followthemoney/schema/Associate.yaml
375
+ msgid "The subject of the association."
376
+ msgstr ""
377
+
84
378
  #. Associate.properties.associate.description
85
- #: followthemoney/schema/Associate.yml
379
+ #: followthemoney/schema/Associate.yaml
86
380
  msgid "An associate of the subject person."
87
381
  msgstr ""
88
382
 
89
383
  #. Associate.properties.associate.reverse.label
90
- #: followthemoney/schema/Associate.yml
91
- msgid "Associates"
384
+ #: followthemoney/schema/Associate.yaml
385
+ msgid "Associations"
386
+ msgstr ""
387
+
388
+ #. Associate.properties.relationship.label
389
+ #. Family.properties.relationship.label
390
+ #: followthemoney/schema/Associate.yaml followthemoney/schema/Family.yaml
391
+ msgid "Relationship"
392
+ msgstr ""
393
+
394
+ #. Associate.properties.relationship.description
395
+ #: followthemoney/schema/Associate.yaml
396
+ msgid "Nature of the association"
397
+ msgstr ""
398
+
399
+ #. Audio.label
400
+ #: followthemoney/schema/Audio.yaml
401
+ msgid "Audio"
402
+ msgstr ""
403
+
404
+ #. Audio.plural
405
+ #: followthemoney/schema/Audio.yaml
406
+ msgid "Audio files"
407
+ msgstr ""
408
+
409
+ #. Audio.properties.duration.label
410
+ #. Call.properties.duration.label
411
+ #. Sanction.properties.duration.label
412
+ #. Video.properties.duration.label
413
+ #: followthemoney/schema/Audio.yaml followthemoney/schema/Call.yaml
414
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Video.yaml
415
+ msgid "Duration"
416
+ msgstr ""
417
+
418
+ #. Audio.properties.duration.description
419
+ #: followthemoney/schema/Audio.yaml
420
+ msgid "Duration of the audio in ms"
421
+ msgstr ""
422
+
423
+ #. Audio.properties.samplingRate.label
424
+ #: followthemoney/schema/Audio.yaml
425
+ msgid "Sampling Rate"
426
+ msgstr ""
427
+
428
+ #. Audio.properties.samplingRate.description
429
+ #: followthemoney/schema/Audio.yaml
430
+ msgid "Sampling rate of the audio in Hz"
92
431
  msgstr ""
93
432
 
94
433
  #. BankAccount.label
95
- #. EconomicActivity.properties.bankAccount.label
96
434
  #: followthemoney/schema/BankAccount.yaml
97
- #: followthemoney/schema/EconomicActivity.yaml
98
- msgid "Bank Account"
435
+ msgid "Bank account"
99
436
  msgstr ""
100
437
 
101
438
  #. BankAccount.plural
439
+ #. BankAccount.properties.bank.reverse.label
440
+ #: followthemoney/schema/BankAccount.yaml
441
+ msgid "Bank accounts"
442
+ msgstr ""
443
+
444
+ #. BankAccount.description
102
445
  #: followthemoney/schema/BankAccount.yaml
103
- msgid "Bank Accounts"
446
+ msgid ""
447
+ "An account held at a bank and controlled by an owner. This may also be "
448
+ "used to describe more complex arrangements like correspondent bank "
449
+ "settlement accounts.\n"
104
450
  msgstr ""
105
451
 
106
452
  #. BankAccount.properties.bankName.label
107
453
  #: followthemoney/schema/BankAccount.yaml
108
- msgid "Bank Name"
454
+ msgid "Bank name"
109
455
  msgstr ""
110
456
 
111
457
  #. BankAccount.properties.accountNumber.label
112
458
  #: followthemoney/schema/BankAccount.yaml
113
- msgid "Account Number"
459
+ msgid "Account number"
114
460
  msgstr ""
115
461
 
116
462
  #. BankAccount.properties.iban.label
117
- #: followthemoney/schema/BankAccount.yaml
463
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/iban.py:23
118
464
  msgid "IBAN"
119
465
  msgstr ""
120
466
 
@@ -123,143 +469,450 @@ msgstr ""
123
469
  msgid "Bank Identifier Code"
124
470
  msgstr ""
125
471
 
472
+ #. BankAccount.properties.bank.label
473
+ #: followthemoney/schema/BankAccount.yaml followthemoney/types/topic.py:58
474
+ msgid "Bank"
475
+ msgstr ""
476
+
126
477
  #. BankAccount.properties.accountType.label
127
478
  #: followthemoney/schema/BankAccount.yaml
128
- msgid "Account Type"
479
+ msgid "Account type"
480
+ msgstr ""
481
+
482
+ #. BankAccount.properties.openingDate.label
483
+ #: followthemoney/schema/BankAccount.yaml
484
+ msgid "Opening date"
485
+ msgstr ""
486
+
487
+ #. BankAccount.properties.closingDate.label
488
+ #: followthemoney/schema/BankAccount.yaml
489
+ msgid "Closing date"
129
490
  msgstr ""
130
491
 
131
492
  #. BankAccount.properties.balance.label
493
+ #. CryptoWallet.properties.balance.label
132
494
  #: followthemoney/schema/BankAccount.yaml
495
+ #: followthemoney/schema/CryptoWallet.yaml
133
496
  msgid "Balance"
134
497
  msgstr ""
135
498
 
136
- #. BankAccount.properties.bankAddress.label
499
+ #. BankAccount.properties.balanceDate.label
500
+ #. CryptoWallet.properties.balanceDate.label
137
501
  #: followthemoney/schema/BankAccount.yaml
138
- msgid "Bank Address"
502
+ #: followthemoney/schema/CryptoWallet.yaml
503
+ msgid "Balance date"
139
504
  msgstr ""
140
505
 
141
- #. Company.label
142
- #: followthemoney/schema/Company.yaml
143
- msgid "Company"
506
+ #. BankAccount.properties.maxBalance.label
507
+ #: followthemoney/schema/BankAccount.yaml
508
+ msgid "Maximum balance"
144
509
  msgstr ""
145
510
 
146
- #. Company.plural
147
- #: followthemoney/schema/Company.yaml
148
- msgid "Companies"
511
+ #. BankAccount.properties.maxBalanceDate.label
512
+ #: followthemoney/schema/BankAccount.yaml
513
+ msgid "Maximum balance date"
149
514
  msgstr ""
150
515
 
151
- #. Company.properties.jurisdiction.label
152
- #. LegalEntity.properties.jurisdiction.label
153
- #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
154
- msgid "Jurisdiction"
516
+ #. BankAccount.properties.bankAddress.label
517
+ #: followthemoney/schema/BankAccount.yaml
518
+ msgid "Bank address"
155
519
  msgstr ""
156
520
 
157
- #. Company.properties.registrationNumber.label
158
- #. LegalEntity.properties.registrationNumber.label
159
- #. RealEstate.properties.registrationNumber.label
160
- #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
161
- #: followthemoney/schema/RealEstate.yaml
162
- msgid "Registration number"
521
+ #. Call.label
522
+ #: followthemoney/schema/Call.yaml
523
+ msgid "Call"
163
524
  msgstr ""
164
525
 
165
- #. Company.properties.capital.label
166
- #: followthemoney/schema/Company.yaml
167
- msgid "Capital"
526
+ #. Call.plural
527
+ #: followthemoney/schema/Call.yaml
528
+ msgid "Calls"
168
529
  msgstr ""
169
530
 
170
- #. Company.properties.voenCode.label
171
- #: followthemoney/schema/Company.yaml
172
- msgid "VOEN"
531
+ #. Call.properties.caller.label
532
+ #: followthemoney/schema/Call.yaml
533
+ msgid "Caller"
173
534
  msgstr ""
174
535
 
175
- #. Company.properties.voenCode.description
176
- #: followthemoney/schema/Company.yaml
177
- msgid "Azerbaijan taxpayer ID"
536
+ #. Call.properties.caller.reverse.label
537
+ #: followthemoney/schema/Call.yaml
538
+ msgid "Calls made"
178
539
  msgstr ""
179
540
 
180
- #. Company.properties.coatoCode.label
181
- #: followthemoney/schema/Company.yaml
182
- msgid "COATO / SOATO / OKATO"
541
+ #. Call.properties.callerNumber.label
542
+ #: followthemoney/schema/Call.yaml
543
+ msgid "Caller's Number"
183
544
  msgstr ""
184
545
 
185
- #. Company.properties.vatCode.label
186
- #: followthemoney/schema/Company.yaml
187
- msgid "VAT Identifier"
546
+ #. Call.properties.receiver.label
547
+ #. EconomicActivity.properties.receiver.label
548
+ #: followthemoney/schema/Call.yaml followthemoney/schema/EconomicActivity.yaml
549
+ msgid "Receiver"
188
550
  msgstr ""
189
551
 
190
- #. Company.properties.vatCode.description
191
- #: followthemoney/schema/Company.yaml
192
- msgid "(EU) VAT number"
552
+ #. Call.properties.receiver.reverse.label
553
+ #: followthemoney/schema/Call.yaml
554
+ msgid "Calls received"
193
555
  msgstr ""
194
556
 
195
- #. Company.properties.irsCode.label
196
- #: followthemoney/schema/Company.yaml
197
- msgid "IRS Number"
557
+ #. Call.properties.receiverNumber.label
558
+ #: followthemoney/schema/Call.yaml
559
+ msgid "Receiver's Number"
198
560
  msgstr ""
199
561
 
200
- #. Company.properties.irsCode.description
201
- #: followthemoney/schema/Company.yaml
202
- msgid "US tax ID"
562
+ #. CallForTenders.label
563
+ #: followthemoney/schema/CallForTenders.yaml
564
+ msgid "Call for tenders"
203
565
  msgstr ""
204
566
 
205
- #. Company.properties.ipoCode.label
206
- #: followthemoney/schema/Company.yaml
207
- msgid "IPO"
567
+ #. CallForTenders.plural
568
+ #: followthemoney/schema/CallForTenders.yaml
569
+ msgid "Calls for tenders"
208
570
  msgstr ""
209
571
 
210
- #. Company.properties.cikCode.label
211
- #: followthemoney/schema/Company.yaml
212
- msgid "SEC Central Index Key"
572
+ #. CallForTenders.description
573
+ #: followthemoney/schema/CallForTenders.yaml
574
+ msgid ""
575
+ "A public appeal issued by an authority, possibly on behalf of another, "
576
+ "for buying a specific work, supply or service\n"
213
577
  msgstr ""
214
578
 
215
- #. Company.properties.cikCode.description
216
- #: followthemoney/schema/Company.yaml
217
- msgid "US SEC Central Index Key"
579
+ #. CallForTenders.properties.callId.label
580
+ #: followthemoney/schema/CallForTenders.yaml
581
+ msgid "CfT unique id"
218
582
  msgstr ""
219
583
 
220
- #. Company.properties.jibCode.label
221
- #: followthemoney/schema/Company.yaml
222
- msgid "JIB"
584
+ #. CallForTenders.properties.title.label
585
+ #. Contract.properties.title.label
586
+ #. Document.properties.title.label
587
+ #. Person.properties.title.label
588
+ #: followthemoney/schema/CallForTenders.yaml
589
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Document.yaml
590
+ #: followthemoney/schema/Person.yaml
591
+ msgid "Title"
223
592
  msgstr ""
224
593
 
225
- #. Company.properties.jibCode.description
226
- #: followthemoney/schema/Company.yaml
227
- msgid "Yugoslavia company ID"
594
+ #. CallForTenders.properties.authority.label
595
+ #: followthemoney/schema/CallForTenders.yaml
596
+ msgid "Name of contracting authority"
228
597
  msgstr ""
229
598
 
230
- #. Company.properties.mbsCode.label
231
- #: followthemoney/schema/Company.yaml
232
- msgid "MBS"
599
+ #. CallForTenders.properties.authority.reverse.label
600
+ #. ContractAward.properties.callForTenders.label
601
+ #: followthemoney/schema/CallForTenders.yaml
602
+ #: followthemoney/schema/ContractAward.yaml
603
+ msgid "Call For Tenders"
233
604
  msgstr ""
234
605
 
235
- #. Company.properties.ibcRuc.label
236
- #: followthemoney/schema/Company.yaml
237
- msgid "ibcRUC"
606
+ #. CallForTenders.properties.authorityReferenceId.label
607
+ #: followthemoney/schema/CallForTenders.yaml
608
+ msgid "Contracting authority reference ID"
238
609
  msgstr ""
239
610
 
240
- #. Company.properties.caemCode.label
241
- #: followthemoney/schema/Company.yaml
242
- msgid "COD CAEM"
611
+ #. CallForTenders.properties.onBehalfOf.label
612
+ #: followthemoney/schema/CallForTenders.yaml
613
+ msgid "Published on behalf of"
243
614
  msgstr ""
244
615
 
245
- #. Company.properties.caemCode.description
246
- #: followthemoney/schema/Company.yaml
247
- msgid "(RO) What kind of activity a legal entity is allowed to develop"
616
+ #. CallForTenders.properties.onBehalfOf.reverse.label
617
+ #: followthemoney/schema/CallForTenders.yaml
618
+ msgid "Delegated call for tenders"
248
619
  msgstr ""
249
620
 
250
- #. Company.properties.kppCode.label
251
- #: followthemoney/schema/Company.yaml
252
- msgid "KPP"
621
+ #. CallForTenders.properties.publicationDate.label
622
+ #: followthemoney/schema/CallForTenders.yaml
623
+ msgid "Date of publication/invitation"
253
624
  msgstr ""
254
625
 
255
- #. Company.properties.kppCode.description
256
- #: followthemoney/schema/Company.yaml
257
- msgid "(RU, КПП) in addition to INN for orgs; reason for registration at FNS"
626
+ #. CallForTenders.properties.evaluationMechanism.label
627
+ #: followthemoney/schema/CallForTenders.yaml
628
+ msgid "Evaluation mechanism"
258
629
  msgstr ""
259
630
 
260
- #. Company.properties.okvedCode.label
261
- #: followthemoney/schema/Company.yaml
262
- msgid "OKVED(2) Classifier"
631
+ #. CallForTenders.properties.procurementType.label
632
+ #: followthemoney/schema/CallForTenders.yaml
633
+ msgid "Procurement type"
634
+ msgstr ""
635
+
636
+ #. CallForTenders.properties.directive.label
637
+ #: followthemoney/schema/CallForTenders.yaml
638
+ msgid "Directive"
639
+ msgstr ""
640
+
641
+ #. CallForTenders.properties.procedure.label
642
+ #: followthemoney/schema/CallForTenders.yaml
643
+ msgid "Procedure"
644
+ msgstr ""
645
+
646
+ #. CallForTenders.properties.involvesOutcome.label
647
+ #: followthemoney/schema/CallForTenders.yaml
648
+ msgid "Call for tenders result"
649
+ msgstr ""
650
+
651
+ #. CallForTenders.properties.involvesOutcome.description
652
+ #: followthemoney/schema/CallForTenders.yaml
653
+ msgid "The nature of the contractual agreement that will result from this CfT"
654
+ msgstr ""
655
+
656
+ #. CallForTenders.properties.cpvCode.label
657
+ #. ContractAward.properties.cpvCode.label
658
+ #: followthemoney/schema/CallForTenders.yaml
659
+ #: followthemoney/schema/ContractAward.yaml
660
+ msgid "CPV code"
661
+ msgstr ""
662
+
663
+ #. CallForTenders.properties.cpvCode.description
664
+ #: followthemoney/schema/CallForTenders.yaml
665
+ msgid "Common Procurement Vocabulary (CPV)"
666
+ msgstr ""
667
+
668
+ #. CallForTenders.properties.reverseAuctionsIncluded.label
669
+ #: followthemoney/schema/CallForTenders.yaml
670
+ msgid "Inclusion of e-Auctions"
671
+ msgstr ""
672
+
673
+ #. CallForTenders.properties.nutsCode.label
674
+ #. ContractAward.properties.nutsCode.label
675
+ #: followthemoney/schema/CallForTenders.yaml
676
+ #: followthemoney/schema/ContractAward.yaml
677
+ msgid "NUTS code"
678
+ msgstr ""
679
+
680
+ #. CallForTenders.properties.nutsCode.description
681
+ #: followthemoney/schema/CallForTenders.yaml
682
+ msgid "Nomenclature of Territorial Units for Statistics (NUTS)"
683
+ msgstr ""
684
+
685
+ #. CallForTenders.properties.relationToThreshold.label
686
+ #: followthemoney/schema/CallForTenders.yaml
687
+ msgid "Above or below threshold"
688
+ msgstr ""
689
+
690
+ #. CallForTenders.properties.paymentOptions.label
691
+ #: followthemoney/schema/CallForTenders.yaml
692
+ msgid "Payment options"
693
+ msgstr ""
694
+
695
+ #. CallForTenders.properties.submissionDeadline.label
696
+ #: followthemoney/schema/CallForTenders.yaml
697
+ msgid "Submission deadline"
698
+ msgstr ""
699
+
700
+ #. CallForTenders.properties.clarificationDeadline.label
701
+ #: followthemoney/schema/CallForTenders.yaml
702
+ msgid "End of clarification period"
703
+ msgstr ""
704
+
705
+ #. CallForTenders.properties.awardedInLots.label
706
+ #: followthemoney/schema/CallForTenders.yaml
707
+ msgid "Contract awarded in Lots"
708
+ msgstr ""
709
+
710
+ #. CallForTenders.properties.numberOfLots.label
711
+ #: followthemoney/schema/CallForTenders.yaml
712
+ msgid "Number of lots"
713
+ msgstr ""
714
+
715
+ #. CallForTenders.properties.lotsNames.label
716
+ #: followthemoney/schema/CallForTenders.yaml
717
+ msgid "Lots names"
718
+ msgstr ""
719
+
720
+ #. CallForTenders.properties.tendersForLots.label
721
+ #: followthemoney/schema/CallForTenders.yaml
722
+ msgid "Tenders for lots"
723
+ msgstr ""
724
+
725
+ #. CallForTenders.properties.maximumNumberOfLots.label
726
+ #: followthemoney/schema/CallForTenders.yaml
727
+ msgid "Maximum number of lots"
728
+ msgstr ""
729
+
730
+ #. CallForTenders.properties.euFunding.label
731
+ #: followthemoney/schema/CallForTenders.yaml
732
+ msgid "EU funding"
733
+ msgstr ""
734
+
735
+ #. CallForTenders.properties.multipleTenders.label
736
+ #: followthemoney/schema/CallForTenders.yaml
737
+ msgid "Multiple tenders will be accepted"
738
+ msgstr ""
739
+
740
+ #. CallForTenders.properties.tedUrl.label
741
+ #: followthemoney/schema/CallForTenders.yaml
742
+ msgid "TED link for published notices"
743
+ msgstr ""
744
+
745
+ #. CallForTenders.properties.fallsUnderGPPScope.label
746
+ #: followthemoney/schema/CallForTenders.yaml
747
+ msgid "Does this call fall under the scope of GPP?"
748
+ msgstr ""
749
+
750
+ #. CallForTenders.properties.fallsUnderGPPScope.description
751
+ #: followthemoney/schema/CallForTenders.yaml
752
+ msgid "European Green Public Procurement (GPP) or green purchasing."
753
+ msgstr ""
754
+
755
+ #. CallForTenders.properties.certificationCheck.label
756
+ #: followthemoney/schema/CallForTenders.yaml
757
+ msgid "Certification check"
758
+ msgstr ""
759
+
760
+ #. CallForTenders.properties.awardingDate.label
761
+ #: followthemoney/schema/CallForTenders.yaml
762
+ msgid "Date of awarding"
763
+ msgstr ""
764
+
765
+ #. CallForTenders.properties.contractNoticeDate.label
766
+ #: followthemoney/schema/CallForTenders.yaml
767
+ msgid "Contract notice date"
768
+ msgstr ""
769
+
770
+ #. CallForTenders.properties.awardNoticeDate.label
771
+ #: followthemoney/schema/CallForTenders.yaml
772
+ msgid "Award Notice Date"
773
+ msgstr ""
774
+
775
+ #. CallForTenders.properties.tenderers.label
776
+ #: followthemoney/schema/CallForTenders.yaml
777
+ msgid "Tenderers"
778
+ msgstr ""
779
+
780
+ #. CallForTenders.properties.tenderers.reverse.label
781
+ #: followthemoney/schema/CallForTenders.yaml
782
+ msgid "Tender"
783
+ msgstr ""
784
+
785
+ #. Company.label
786
+ #: followthemoney/schema/Company.yaml
787
+ msgid "Company"
788
+ msgstr ""
789
+
790
+ #. Company.plural
791
+ #: followthemoney/schema/Company.yaml
792
+ msgid "Companies"
793
+ msgstr ""
794
+
795
+ #. Company.description
796
+ #: followthemoney/schema/Company.yaml
797
+ msgid ""
798
+ "A corporation, usually for profit. Does not distinguish between private "
799
+ "and public companies, and can also be used to model more specific "
800
+ "constructs like trusts and funds. Companies are assets, so they can be "
801
+ "owned by other legal entities.\n"
802
+ msgstr ""
803
+
804
+ #. Company.properties.jurisdiction.label
805
+ #. LegalEntity.properties.jurisdiction.label
806
+ #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
807
+ msgid "Jurisdiction"
808
+ msgstr ""
809
+
810
+ #. Company.properties.registrationNumber.label
811
+ #. LegalEntity.properties.registrationNumber.label
812
+ #. RealEstate.properties.registrationNumber.label
813
+ #. Security.properties.registrationNumber.label
814
+ #. Vehicle.properties.registrationNumber.label
815
+ #: followthemoney/schema/Company.yaml followthemoney/schema/LegalEntity.yaml
816
+ #: followthemoney/schema/RealEstate.yaml followthemoney/schema/Security.yaml
817
+ #: followthemoney/schema/Vehicle.yaml
818
+ msgid "Registration number"
819
+ msgstr ""
820
+
821
+ #. Company.properties.capital.label
822
+ #: followthemoney/schema/Company.yaml
823
+ msgid "Capital"
824
+ msgstr ""
825
+
826
+ #. Company.properties.voenCode.label
827
+ #: followthemoney/schema/Company.yaml
828
+ msgid "VOEN"
829
+ msgstr ""
830
+
831
+ #. Company.properties.voenCode.description
832
+ #: followthemoney/schema/Company.yaml
833
+ msgid "Azerbaijan taxpayer ID"
834
+ msgstr ""
835
+
836
+ #. Company.properties.coatoCode.label
837
+ #: followthemoney/schema/Company.yaml
838
+ msgid "COATO / SOATO / OKATO"
839
+ msgstr ""
840
+
841
+ #. Company.properties.coatoCode.description
842
+ #: followthemoney/schema/Company.yaml
843
+ msgid ""
844
+ "Soviet classifier for territories, regions, districts, villages. Aka. "
845
+ "SOATO and same as OKATO"
846
+ msgstr ""
847
+
848
+ #. Company.properties.irsCode.label
849
+ #: followthemoney/schema/Company.yaml
850
+ msgid "IRS Number"
851
+ msgstr ""
852
+
853
+ #. Company.properties.irsCode.description
854
+ #: followthemoney/schema/Company.yaml
855
+ msgid "US tax ID"
856
+ msgstr ""
857
+
858
+ #. Company.properties.ipoCode.label
859
+ #: followthemoney/schema/Company.yaml
860
+ msgid "IPO"
861
+ msgstr ""
862
+
863
+ #. Company.properties.cikCode.label
864
+ #: followthemoney/schema/Company.yaml
865
+ msgid "SEC Central Index Key"
866
+ msgstr ""
867
+
868
+ #. Company.properties.cikCode.description
869
+ #: followthemoney/schema/Company.yaml
870
+ msgid "US SEC Central Index Key"
871
+ msgstr ""
872
+
873
+ #. Company.properties.jibCode.label
874
+ #: followthemoney/schema/Company.yaml
875
+ msgid "JIB"
876
+ msgstr ""
877
+
878
+ #. Company.properties.jibCode.description
879
+ #: followthemoney/schema/Company.yaml
880
+ msgid "Yugoslavia company ID"
881
+ msgstr ""
882
+
883
+ #. Company.properties.mbsCode.label
884
+ #: followthemoney/schema/Company.yaml
885
+ msgid "MBS"
886
+ msgstr ""
887
+
888
+ #. Company.properties.ibcRuc.label
889
+ #: followthemoney/schema/Company.yaml
890
+ msgid "ibcRUC"
891
+ msgstr ""
892
+
893
+ #. Company.properties.caemCode.label
894
+ #: followthemoney/schema/Company.yaml
895
+ msgid "COD CAEM"
896
+ msgstr ""
897
+
898
+ #. Company.properties.caemCode.description
899
+ #: followthemoney/schema/Company.yaml
900
+ msgid "(RO) What kind of activity a legal entity is allowed to develop"
901
+ msgstr ""
902
+
903
+ #. Company.properties.kppCode.label
904
+ #: followthemoney/schema/Company.yaml
905
+ msgid "KPP"
906
+ msgstr ""
907
+
908
+ #. Company.properties.kppCode.description
909
+ #: followthemoney/schema/Company.yaml
910
+ msgid "(RU, КПП) in addition to INN for orgs; reason for registration at FNS"
911
+ msgstr ""
912
+
913
+ #. Company.properties.okvedCode.label
914
+ #: followthemoney/schema/Company.yaml
915
+ msgid "OKVED(2) Classifier"
263
916
  msgstr ""
264
917
 
265
918
  #. Company.properties.okvedCode.description
@@ -297,14 +950,14 @@ msgstr ""
297
950
  msgid "(RU, ФСС) Social Security"
298
951
  msgstr ""
299
952
 
300
- #. Company.properties.ogrnCode.label
953
+ #. Company.properties.bikCode.label
301
954
  #: followthemoney/schema/Company.yaml
302
- msgid "OGRN"
955
+ msgid "BIK"
303
956
  msgstr ""
304
957
 
305
- #. Company.properties.ogrnCode.description
958
+ #. Company.properties.bikCode.description
306
959
  #: followthemoney/schema/Company.yaml
307
- msgid "Major State Registration Number"
960
+ msgid "Russian bank account code"
308
961
  msgstr ""
309
962
 
310
963
  #. Company.properties.pfrNumber.label
@@ -326,16 +979,44 @@ msgstr ""
326
979
 
327
980
  #. Company.properties.oksmCode.description
328
981
  #: followthemoney/schema/Company.yaml
329
- msgid "Russian (ОКСМ) countries classifer"
982
+ msgid "Russian (ОКСМ) countries classifier"
983
+ msgstr ""
984
+
985
+ #. Company.properties.isinCode.label
986
+ #. Security.properties.isin.label
987
+ #: followthemoney/schema/Company.yaml followthemoney/schema/Security.yaml
988
+ msgid "ISIN"
989
+ msgstr ""
990
+
991
+ #. Company.properties.isinCode.description
992
+ #. Security.properties.isin.description
993
+ #: followthemoney/schema/Company.yaml followthemoney/schema/Security.yaml
994
+ msgid "International Securities Identification Number"
995
+ msgstr ""
996
+
997
+ #. Company.properties.ticker.label
998
+ #. Security.properties.ticker.label
999
+ #: followthemoney/schema/Company.yaml followthemoney/schema/Security.yaml
1000
+ msgid "Stock ticker symbol"
1001
+ msgstr ""
1002
+
1003
+ #. Company.properties.ricCode.label
1004
+ #: followthemoney/schema/Company.yaml
1005
+ msgid "Reuters Instrument Code"
330
1006
  msgstr ""
331
1007
 
332
1008
  #. Contract.label
333
1009
  #. ContractAward.properties.contract.label
1010
+ #. EconomicActivity.properties.contract.label
1011
+ #. Payment.properties.contract.label
334
1012
  #: followthemoney/schema/Contract.yaml followthemoney/schema/ContractAward.yaml
1013
+ #: followthemoney/schema/EconomicActivity.yaml
1014
+ #: followthemoney/schema/Payment.yaml
335
1015
  msgid "Contract"
336
1016
  msgstr ""
337
1017
 
338
1018
  #. Contract.plural
1019
+ #. Contract.properties.project.reverse.label
339
1020
  #. ContractAward.properties.contract.plural
340
1021
  #: followthemoney/schema/Contract.yaml followthemoney/schema/ContractAward.yaml
341
1022
  msgid "Contracts"
@@ -345,7 +1026,7 @@ msgstr ""
345
1026
  #: followthemoney/schema/Contract.yaml
346
1027
  msgid ""
347
1028
  "An contract or contract lot issued by an authority. Multiple lots may be "
348
- "awarded to different suppliers (see ContractAward)."
1029
+ "awarded to different suppliers (see ContractAward).\n"
349
1030
  msgstr ""
350
1031
 
351
1032
  #. Contract.properties.authority.label
@@ -363,17 +1044,30 @@ msgstr ""
363
1044
  msgid "Contracts issued"
364
1045
  msgstr ""
365
1046
 
1047
+ #. Contract.properties.project.label
1048
+ #. Payment.properties.project.label
1049
+ #. Project.label
1050
+ #. ProjectParticipant.properties.project.label
1051
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Payment.yaml
1052
+ #: followthemoney/schema/Project.yaml
1053
+ #: followthemoney/schema/ProjectParticipant.yaml
1054
+ msgid "Project"
1055
+ msgstr ""
1056
+
366
1057
  #. Contract.properties.type.label
367
1058
  #. CourtCase.properties.type.label
1059
+ #. Identification.properties.type.label
1060
+ #. Security.properties.type.label
368
1061
  #. Vehicle.properties.type.label
369
1062
  #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
370
- #: followthemoney/schema/Vehicle.yaml
1063
+ #: followthemoney/schema/Identification.yaml
1064
+ #: followthemoney/schema/Security.yaml followthemoney/schema/Vehicle.yaml
371
1065
  msgid "Type"
372
1066
  msgstr ""
373
1067
 
374
1068
  #. Contract.properties.type.description
375
1069
  #: followthemoney/schema/Contract.yaml
376
- msgid "Type of contract. Potentially W (Works), U (Supplies), S (Services)."
1070
+ msgid "Type of contract. Potentially W (Works), U (Supplies), S (Services).\n"
377
1071
  msgstr ""
378
1072
 
379
1073
  #. Contract.properties.contractDate.label
@@ -386,6 +1080,11 @@ msgstr ""
386
1080
  msgid "Procedure number"
387
1081
  msgstr ""
388
1082
 
1083
+ #. Contract.properties.procedure.label
1084
+ #: followthemoney/schema/Contract.yaml
1085
+ msgid "Contract procedure"
1086
+ msgstr ""
1087
+
389
1088
  #. Contract.properties.noticeId.label
390
1089
  #: followthemoney/schema/Contract.yaml
391
1090
  msgid "Contract Award Notice ID"
@@ -396,19 +1095,58 @@ msgstr ""
396
1095
  msgid "Number of awards"
397
1096
  msgstr ""
398
1097
 
1098
+ #. Contract.properties.status.label
1099
+ #. CourtCase.properties.status.label
1100
+ #. Interest.properties.status.label
1101
+ #. LegalEntity.properties.status.label
1102
+ #. Occupancy.properties.status.label
1103
+ #. Project.properties.status.label
1104
+ #. Sanction.properties.status.label
1105
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
1106
+ #: followthemoney/schema/Interest.yaml followthemoney/schema/LegalEntity.yaml
1107
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Project.yaml
1108
+ #: followthemoney/schema/Sanction.yaml
1109
+ msgid "Status"
1110
+ msgstr ""
1111
+
1112
+ #. Contract.properties.method.label
1113
+ #: followthemoney/schema/Contract.yaml
1114
+ msgid "Procurement method"
1115
+ msgstr ""
1116
+
1117
+ #. Contract.properties.criteria.label
1118
+ #: followthemoney/schema/Contract.yaml
1119
+ msgid "Contract award criteria"
1120
+ msgstr ""
1121
+
1122
+ #. Contract.properties.classification.label
1123
+ #. LegalEntity.properties.classification.label
1124
+ #. Security.properties.classification.label
1125
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/LegalEntity.yaml
1126
+ #: followthemoney/schema/Security.yaml
1127
+ msgid "Classification"
1128
+ msgstr ""
1129
+
399
1130
  #. Contract.properties.cancelled.label
400
1131
  #: followthemoney/schema/Contract.yaml
401
1132
  msgid "Cancelled?"
402
1133
  msgstr ""
403
1134
 
1135
+ #. Contract.properties.language.label
1136
+ #. Document.properties.language.label
1137
+ #: followthemoney/schema/Contract.yaml followthemoney/schema/Document.yaml
1138
+ #: followthemoney/types/language.py:22
1139
+ msgid "Language"
1140
+ msgstr ""
1141
+
404
1142
  #. ContractAward.label
405
1143
  #: followthemoney/schema/ContractAward.yaml
406
- msgid "Contract Lot Award"
1144
+ msgid "Contract award"
407
1145
  msgstr ""
408
1146
 
409
1147
  #. ContractAward.plural
410
1148
  #: followthemoney/schema/ContractAward.yaml
411
- msgid "Contract Awards"
1149
+ msgid "Contract awards"
412
1150
  msgstr ""
413
1151
 
414
1152
  #. ContractAward.description
@@ -416,6 +1154,11 @@ msgstr ""
416
1154
  msgid "A contract or contract lot as awarded to a supplier."
417
1155
  msgstr ""
418
1156
 
1157
+ #. ContractAward.edge.label
1158
+ #: followthemoney/schema/ContractAward.yaml
1159
+ msgid "awarded to"
1160
+ msgstr ""
1161
+
419
1162
  #. ContractAward.properties.supplier.label
420
1163
  #: followthemoney/schema/ContractAward.yaml
421
1164
  msgid "Supplier"
@@ -441,19 +1184,25 @@ msgstr ""
441
1184
  msgid "Lots awarded"
442
1185
  msgstr ""
443
1186
 
1187
+ #. ContractAward.properties.callForTenders.reverse.label
1188
+ #: followthemoney/schema/ContractAward.yaml
1189
+ msgid "Contract Awards"
1190
+ msgstr ""
1191
+
444
1192
  #. ContractAward.properties.lotNumber.label
445
1193
  #: followthemoney/schema/ContractAward.yaml
446
1194
  msgid "Lot number"
447
1195
  msgstr ""
448
1196
 
449
1197
  #. ContractAward.properties.documentNumber.label
1198
+ #. Identification.properties.number.label
450
1199
  #: followthemoney/schema/ContractAward.yaml
1200
+ #: followthemoney/schema/Identification.yaml
451
1201
  msgid "Document number"
452
1202
  msgstr ""
453
1203
 
454
1204
  #. ContractAward.properties.documentType.label
455
- #. Passport.properties.type.label
456
- #: followthemoney/schema/ContractAward.yaml followthemoney/schema/Passport.yaml
1205
+ #: followthemoney/schema/ContractAward.yaml
457
1206
  msgid "Document type"
458
1207
  msgstr ""
459
1208
 
@@ -462,21 +1211,11 @@ msgstr ""
462
1211
  msgid "Decision reason"
463
1212
  msgstr ""
464
1213
 
465
- #. ContractAward.properties.cpvCode.label
466
- #: followthemoney/schema/ContractAward.yaml
467
- msgid "CPV Code"
468
- msgstr ""
469
-
470
1214
  #. ContractAward.properties.cpvCode.description
471
1215
  #: followthemoney/schema/ContractAward.yaml
472
1216
  msgid "Contract Procurement Vocabulary (what type of goods/services, EU)"
473
1217
  msgstr ""
474
1218
 
475
- #. ContractAward.properties.nutsCode.label
476
- #: followthemoney/schema/ContractAward.yaml
477
- msgid "NUTS Code"
478
- msgstr ""
479
-
480
1219
  #. ContractAward.properties.nutsCode.description
481
1220
  #: followthemoney/schema/ContractAward.yaml
482
1221
  msgid "Nomencalture of Territorial Units for Statistics (NUTS)"
@@ -484,7 +1223,7 @@ msgstr ""
484
1223
 
485
1224
  #. ContractAward.properties.amended.label
486
1225
  #: followthemoney/schema/ContractAward.yaml
487
- msgid "Amended?"
1226
+ msgid "Amended"
488
1227
  msgstr ""
489
1228
 
490
1229
  #. ContractAward.properties.amended.description
@@ -509,34 +1248,9 @@ msgstr ""
509
1248
  msgid "Category"
510
1249
  msgstr ""
511
1250
 
512
- #. CourtCase.properties.status.label
513
- #. Interest.properties.status.label
514
- #. LegalEntity.properties.status.label
515
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Interest.yaml
516
- #: followthemoney/schema/LegalEntity.yaml
517
- msgid "Status"
518
- msgstr ""
519
-
520
- #. CourtCase.properties.name.label
521
- #. Thing.properties.name.label
522
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Thing.yaml
523
- msgid "Name"
524
- msgstr ""
525
-
526
- #. CourtCase.properties.country.label
527
- #. Event.properties.country.label
528
- #. Passport.properties.country.label
529
- #. Thing.properties.country.label
530
- #. Vehicle.properties.country.label
531
- #: followthemoney/schema/CourtCase.yaml followthemoney/schema/Event.yaml
532
- #: followthemoney/schema/Passport.yaml followthemoney/schema/Thing.yaml
533
- #: followthemoney/schema/Vehicle.yaml
534
- msgid "Country"
535
- msgstr ""
536
-
537
- #. CourtCase.properties.caseNumber.label
538
- #: followthemoney/schema/CourtCase.yaml
539
- msgid "Case number"
1251
+ #. CourtCase.properties.caseNumber.label
1252
+ #: followthemoney/schema/CourtCase.yaml
1253
+ msgid "Case number"
540
1254
  msgstr ""
541
1255
 
542
1256
  #. CourtCase.properties.court.label
@@ -555,6 +1269,20 @@ msgid "Close date"
555
1269
  msgstr ""
556
1270
 
557
1271
  #. CourtCaseParty.label
1272
+ #: followthemoney/schema/CourtCaseParty.yaml
1273
+ msgid "Case party"
1274
+ msgstr ""
1275
+
1276
+ #. CourtCaseParty.plural
1277
+ #: followthemoney/schema/CourtCaseParty.yaml
1278
+ msgid "Case parties"
1279
+ msgstr ""
1280
+
1281
+ #. CourtCaseParty.edge.label
1282
+ #: followthemoney/schema/CourtCaseParty.yaml
1283
+ msgid "involved in"
1284
+ msgstr ""
1285
+
558
1286
  #. CourtCaseParty.properties.party.label
559
1287
  #: followthemoney/schema/CourtCaseParty.yaml
560
1288
  msgid "Party"
@@ -570,27 +1298,120 @@ msgstr ""
570
1298
  msgid "Parties"
571
1299
  msgstr ""
572
1300
 
1301
+ #. CryptoWallet.label
1302
+ #: followthemoney/schema/CryptoWallet.yaml
1303
+ msgid "Cryptocurrency wallet"
1304
+ msgstr ""
1305
+
1306
+ #. CryptoWallet.plural
1307
+ #. CryptoWallet.properties.holder.reverse.label
1308
+ #: followthemoney/schema/CryptoWallet.yaml
1309
+ msgid "Cryptocurrency wallets"
1310
+ msgstr ""
1311
+
1312
+ #. CryptoWallet.description
1313
+ #: followthemoney/schema/CryptoWallet.yaml
1314
+ msgid ""
1315
+ "A cryptocurrency wallet is a view on the transactions conducted by one "
1316
+ "participant on a blockchain / distributed ledger system.\n"
1317
+ msgstr ""
1318
+
1319
+ #. CryptoWallet.properties.publicKey.description
1320
+ #: followthemoney/schema/CryptoWallet.yaml
1321
+ msgid "Public key used to identify the wallet"
1322
+ msgstr ""
1323
+
1324
+ #. CryptoWallet.properties.privateKey.label
1325
+ #: followthemoney/schema/CryptoWallet.yaml
1326
+ msgid "Private key"
1327
+ msgstr ""
1328
+
1329
+ #. CryptoWallet.properties.creationDate.label
1330
+ #: followthemoney/schema/CryptoWallet.yaml
1331
+ msgid "Creation date"
1332
+ msgstr ""
1333
+
1334
+ #. CryptoWallet.properties.currencySymbol.label
1335
+ #: followthemoney/schema/CryptoWallet.yaml
1336
+ msgid "Currency short code"
1337
+ msgstr ""
1338
+
1339
+ #. CryptoWallet.properties.mangingExchange.label
1340
+ #: followthemoney/schema/CryptoWallet.yaml
1341
+ msgid "Managing exchange"
1342
+ msgstr ""
1343
+
1344
+ #. CryptoWallet.properties.holder.label
1345
+ #: followthemoney/schema/CryptoWallet.yaml
1346
+ msgid "Wallet holder"
1347
+ msgstr ""
1348
+
1349
+ #. Debt.label
1350
+ #: followthemoney/schema/Debt.yaml
1351
+ msgid "Debt"
1352
+ msgstr ""
1353
+
1354
+ #. Debt.plural
1355
+ #. Debt.properties.debtor.reverse.label
1356
+ #: followthemoney/schema/Debt.yaml
1357
+ msgid "Debts"
1358
+ msgstr ""
1359
+
1360
+ #. Debt.description
1361
+ #: followthemoney/schema/Debt.yaml
1362
+ msgid "A monetary debt between two parties."
1363
+ msgstr ""
1364
+
1365
+ #. Debt.edge.label
1366
+ #: followthemoney/schema/Debt.yaml
1367
+ msgid "owes"
1368
+ msgstr ""
1369
+
1370
+ #. Debt.properties.debtor.label
1371
+ #: followthemoney/schema/Debt.yaml
1372
+ msgid "Debtor"
1373
+ msgstr ""
1374
+
1375
+ #. Debt.properties.creditor.label
1376
+ #: followthemoney/schema/Debt.yaml
1377
+ msgid "Creditor"
1378
+ msgstr ""
1379
+
1380
+ #. Debt.properties.creditor.reverse.label
1381
+ #: followthemoney/schema/Debt.yaml
1382
+ msgid "Credits"
1383
+ msgstr ""
1384
+
573
1385
  #. Directorship.label
574
1386
  #: followthemoney/schema/Directorship.yaml
575
1387
  msgid "Directorship"
576
1388
  msgstr ""
577
1389
 
578
- #. Directorship.properties.director.label
1390
+ #. Directorship.plural
1391
+ #. Directorship.properties.director.reverse.label
579
1392
  #: followthemoney/schema/Directorship.yaml
580
- msgid "Director"
1393
+ msgid "Directorships"
581
1394
  msgstr ""
582
1395
 
583
- #. Directorship.properties.director.reverse.label
1396
+ #. Directorship.edge.label
584
1397
  #: followthemoney/schema/Directorship.yaml
585
- msgid "Directorships"
1398
+ msgid "directs"
1399
+ msgstr ""
1400
+
1401
+ #. Directorship.properties.director.label
1402
+ #: followthemoney/schema/Directorship.yaml
1403
+ msgid "Director"
586
1404
  msgstr ""
587
1405
 
588
1406
  #. Directorship.properties.organization.label
589
1407
  #. Membership.properties.organization.label
590
1408
  #. Organization.label
1409
+ #. Position.properties.organization.label
1410
+ #. Post.properties.organization.label
591
1411
  #: followthemoney/schema/Directorship.yaml
592
1412
  #: followthemoney/schema/Membership.yaml
593
- #: followthemoney/schema/Organization.yaml
1413
+ #: followthemoney/schema/Organization.yaml followthemoney/schema/Position.yaml
1414
+ #: followthemoney/schema/Post.yaml
594
1415
  msgid "Organization"
595
1416
  msgstr ""
596
1417
 
@@ -615,8 +1436,8 @@ msgid "Files"
615
1436
  msgstr ""
616
1437
 
617
1438
  #. Document.properties.contentHash.label
618
- #: followthemoney/schema/Document.yaml
619
- msgid "Content checksum"
1439
+ #: followthemoney/schema/Document.yaml followthemoney/types/checksum.py:18
1440
+ msgid "Checksum"
620
1441
  msgstr ""
621
1442
 
622
1443
  #. Document.properties.contentHash.description
@@ -624,17 +1445,6 @@ msgstr ""
624
1445
  msgid "SHA1 hash of the data"
625
1446
  msgstr ""
626
1447
 
627
- #. Document.properties.title.label
628
- #. Person.properties.title.label
629
- #: followthemoney/schema/Document.yaml followthemoney/schema/Person.yaml
630
- msgid "Title"
631
- msgstr ""
632
-
633
- #. Document.properties.author.label
634
- #: followthemoney/schema/Document.yaml
635
- msgid "Author"
636
- msgstr ""
637
-
638
1448
  #. Document.properties.author.description
639
1449
  #: followthemoney/schema/Document.yaml
640
1450
  msgid "The original author, not the uploader"
@@ -680,19 +1490,44 @@ msgstr ""
680
1490
  msgid "File encoding"
681
1491
  msgstr ""
682
1492
 
1493
+ #. Document.properties.bodyText.label
1494
+ #. Page.properties.bodyText.label
1495
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1496
+ #: followthemoney/types/string.py:25
1497
+ msgid "Text"
1498
+ msgstr ""
1499
+
1500
+ #. Document.properties.messageId.label
1501
+ #: followthemoney/schema/Document.yaml
1502
+ msgid "Message ID"
1503
+ msgstr ""
1504
+
1505
+ #. Document.properties.messageId.description
1506
+ #: followthemoney/schema/Document.yaml
1507
+ msgid "Message ID of a document; unique in most cases"
1508
+ msgstr ""
1509
+
683
1510
  #. Document.properties.mimeType.label
684
1511
  #: followthemoney/schema/Document.yaml
685
1512
  msgid "MIME type"
686
1513
  msgstr ""
687
1514
 
688
- #. Document.properties.language.label
689
- #: followthemoney/schema/Document.yaml
690
- msgid "Language"
1515
+ #. Document.properties.translatedLanguage.label
1516
+ #. Page.properties.translatedTextLanguage.label
1517
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1518
+ msgid "The language of the translated text"
1519
+ msgstr ""
1520
+
1521
+ #. Document.properties.translatedText.label
1522
+ #. Page.properties.translatedText.label
1523
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Page.yaml
1524
+ msgid "Translated version of the body text"
691
1525
  msgstr ""
692
1526
 
693
1527
  #. Document.properties.date.label
694
1528
  #. Interval.properties.date.label
695
1529
  #: followthemoney/schema/Document.yaml followthemoney/schema/Interval.yaml
1530
+ #: followthemoney/types/date.py:26
696
1531
  msgid "Date"
697
1532
  msgstr ""
698
1533
 
@@ -706,210 +1541,78 @@ msgstr ""
706
1541
  msgid "Authored on"
707
1542
  msgstr ""
708
1543
 
709
- #. Document.properties.modifiedAt.label
710
- #: followthemoney/schema/Document.yaml
711
- msgid "Modified on"
712
- msgstr ""
713
-
714
1544
  #. Document.properties.publishedAt.label
715
1545
  #: followthemoney/schema/Document.yaml
716
1546
  msgid "Published on"
717
1547
  msgstr ""
718
1548
 
719
- #. Document.properties.retrievedAt.label
720
- #: followthemoney/schema/Document.yaml
721
- msgid "Retrieved on"
722
- msgstr ""
723
-
724
1549
  #. Document.properties.parent.label
725
- #: followthemoney/schema/Document.yaml
726
- msgid "Parent document"
727
- msgstr ""
728
-
729
- #. Document.properties.parent.reverse.label
730
- #: followthemoney/schema/Document.yaml
731
- msgid "Child documents"
732
- msgstr ""
733
-
734
- #. Document.properties.namesMentioned.label
735
- #: followthemoney/schema/Document.yaml
736
- msgid "Mentioned names"
737
- msgstr ""
738
-
739
- #. Document.properties.ibanMentioned.label
740
- #: followthemoney/schema/Document.yaml
741
- msgid "IBANs"
742
- msgstr ""
743
-
744
- #. Document.properties.ipMentioned.label
745
- #: followthemoney/schema/Document.yaml
746
- msgid "IP addresses"
747
- msgstr ""
748
-
749
- #. Document.properties.locationMentioned.label
750
- #: followthemoney/schema/Document.yaml
751
- msgid "Locations"
752
- msgstr ""
753
-
754
- #. Document.properties.phoneMentioned.label
755
- #: followthemoney/schema/Document.yaml
756
- msgid "Phone numbers"
757
- msgstr ""
758
-
759
- #. Document.properties.emailMentioned.label
760
- #: followthemoney/schema/Document.yaml
761
- msgid "E-Mail addresses"
762
- msgstr ""
763
-
764
- #. PlainText.label
765
- #: followthemoney/schema/Document.yaml
766
- msgid "Text file"
767
- msgstr ""
768
-
769
- #. PlainText.plural
770
- #: followthemoney/schema/Document.yaml
771
- msgid "Text files"
772
- msgstr ""
773
-
774
- #. Pages.label
775
- #: followthemoney/schema/Document.yaml
776
- msgid "Document"
777
- msgstr ""
778
-
779
- #. Pages.plural
780
- #: followthemoney/schema/Document.yaml
781
- msgid "Documents"
782
- msgstr ""
783
-
784
1550
  #. Folder.label
785
- #: followthemoney/schema/Document.yaml
1551
+ #: followthemoney/schema/Document.yaml followthemoney/schema/Folder.yaml
786
1552
  msgid "Folder"
787
1553
  msgstr ""
788
1554
 
789
- #. Folder.plural
790
- #: followthemoney/schema/Document.yaml
791
- msgid "Folders"
792
- msgstr ""
793
-
794
- #. Package.label
795
- #: followthemoney/schema/Document.yaml
796
- msgid "Package"
797
- msgstr ""
798
-
799
- #. Package.plural
800
- #: followthemoney/schema/Document.yaml
801
- msgid "Packages"
802
- msgstr ""
803
-
804
- #. Workbook.label
805
- #: followthemoney/schema/Document.yaml
806
- msgid "Workbook"
807
- msgstr ""
808
-
809
- #. Workbook.plural
810
- #: followthemoney/schema/Document.yaml
811
- msgid "Workbooks"
812
- msgstr ""
813
-
814
- #. Image.label
815
- #: followthemoney/schema/Document.yaml
816
- msgid "Image"
817
- msgstr ""
818
-
819
- #. Image.plural
820
- #: followthemoney/schema/Document.yaml
821
- msgid "Images"
822
- msgstr ""
823
-
824
- #. Video.label
825
- #: followthemoney/schema/Document.yaml
826
- msgid "Video"
827
- msgstr ""
828
-
829
- #. Video.plural
830
- #: followthemoney/schema/Document.yaml
831
- msgid "Videos"
832
- msgstr ""
833
-
834
- #. Audio.label
835
- #: followthemoney/schema/Document.yaml
836
- msgid "Audio"
837
- msgstr ""
838
-
839
- #. Audio.plural
840
- #: followthemoney/schema/Document.yaml
841
- msgid "Audio files"
842
- msgstr ""
843
-
844
- #. HyperText.label
1555
+ #. Document.properties.parent.reverse.label
845
1556
  #: followthemoney/schema/Document.yaml
846
- msgid "Web page"
1557
+ msgid "Child documents"
847
1558
  msgstr ""
848
1559
 
849
- #. HyperText.plural
1560
+ #. Document.properties.ancestors.label
850
1561
  #: followthemoney/schema/Document.yaml
851
- msgid "Web pages"
1562
+ msgid "Ancestors"
852
1563
  msgstr ""
853
1564
 
854
- #. Email.label
855
- #. LegalEntity.properties.email.label
856
- #: followthemoney/schema/Document.yaml followthemoney/schema/LegalEntity.yaml
857
- msgid "E-Mail"
858
- msgstr ""
859
-
860
- #. Email.plural
1565
+ #. Document.properties.ancestors.reverse.label
861
1566
  #: followthemoney/schema/Document.yaml
862
- msgid "E-Mails"
1567
+ msgid "Descendants"
863
1568
  msgstr ""
864
1569
 
865
- #. Email.properties.messageId.label
1570
+ #. Document.properties.processingStatus.label
866
1571
  #: followthemoney/schema/Document.yaml
867
- msgid "Message ID"
1572
+ msgid "Processing status"
868
1573
  msgstr ""
869
1574
 
870
- #. Email.properties.messageId.description
1575
+ #. Document.properties.processingError.label
871
1576
  #: followthemoney/schema/Document.yaml
872
- msgid "Message ID of an email; unique in most cases"
1577
+ msgid "Processing error"
873
1578
  msgstr ""
874
1579
 
875
- #. Email.properties.inReplyTo.label
1580
+ #. Document.properties.processingAgent.label
876
1581
  #: followthemoney/schema/Document.yaml
877
- msgid "In Reply To"
1582
+ msgid "Processing agent"
878
1583
  msgstr ""
879
1584
 
880
- #. Email.properties.inReplyTo.description
1585
+ #. Document.properties.processingAgent.description
881
1586
  #: followthemoney/schema/Document.yaml
882
- msgid "Message IDs of the preceding emails in the thread"
1587
+ msgid "Name and version of the processing agent used to process the Document"
883
1588
  msgstr ""
884
1589
 
885
- #. Table.label
1590
+ #. Document.properties.processedAt.label
886
1591
  #: followthemoney/schema/Document.yaml
887
- msgid "Table"
1592
+ msgid "Processed at"
888
1593
  msgstr ""
889
1594
 
890
- #. Table.plural
1595
+ #. Document.properties.processedAt.description
891
1596
  #: followthemoney/schema/Document.yaml
892
- msgid "Tables"
1597
+ msgid "Date and time of the most recent ingestion of the Document"
893
1598
  msgstr ""
894
1599
 
895
1600
  #. EconomicActivity.label
896
1601
  #: followthemoney/schema/EconomicActivity.yaml
897
- msgid "Economic Activity"
1602
+ msgid "Customs declaration"
898
1603
  msgstr ""
899
1604
 
900
1605
  #. EconomicActivity.plural
1606
+ #. EconomicActivity.properties.declarant.reverse.label
1607
+ #. EconomicActivity.properties.bankAccount.reverse.label
1608
+ #. EconomicActivity.properties.transport.reverse.label
901
1609
  #: followthemoney/schema/EconomicActivity.yaml
902
- msgid "Economic Activities"
1610
+ msgid "Customs declarations"
903
1611
  msgstr ""
904
1612
 
905
1613
  #. EconomicActivity.description
906
1614
  #: followthemoney/schema/EconomicActivity.yaml
907
- msgid "An economic activity"
908
- msgstr ""
909
-
910
- #. EconomicActivity.properties.contract.label
911
- #: followthemoney/schema/EconomicActivity.yaml
912
- msgid "Associated contract"
1615
+ msgid "A foreign economic activity"
913
1616
  msgstr ""
914
1617
 
915
1618
  #. EconomicActivity.properties.contract.reverse.label
@@ -975,12 +1678,6 @@ msgid ""
975
1678
  msgstr ""
976
1679
 
977
1680
  #. EconomicActivity.properties.goodsDescription.label
978
- #. Thing.properties.description.label
979
- #: followthemoney/schema/EconomicActivity.yaml followthemoney/schema/Thing.yaml
980
- msgid "Description"
981
- msgstr ""
982
-
983
- #. EconomicActivity.properties.goodsDescription.description
984
1681
  #: followthemoney/schema/EconomicActivity.yaml
985
1682
  msgid "Description of goods"
986
1683
  msgstr ""
@@ -995,13 +1692,11 @@ msgstr ""
995
1692
  msgid "Customs declarant"
996
1693
  msgstr ""
997
1694
 
998
- #. EconomicActivity.properties.declarant.reverse.label
999
- #: followthemoney/schema/EconomicActivity.yaml
1000
- msgid "Customs declarations"
1001
- msgstr ""
1002
-
1003
1695
  #. EconomicActivity.properties.sender.label
1004
- #: followthemoney/schema/EconomicActivity.yaml
1696
+ #. Email.properties.sender.label
1697
+ #. Message.properties.sender.label
1698
+ #: followthemoney/schema/EconomicActivity.yaml followthemoney/schema/Email.yaml
1699
+ #: followthemoney/schema/Message.yaml
1005
1700
  msgid "Sender"
1006
1701
  msgstr ""
1007
1702
 
@@ -1015,11 +1710,6 @@ msgstr ""
1015
1710
  msgid "Goods originated"
1016
1711
  msgstr ""
1017
1712
 
1018
- #. EconomicActivity.properties.receiver.label
1019
- #: followthemoney/schema/EconomicActivity.yaml
1020
- msgid "Receiver"
1021
- msgstr ""
1022
-
1023
1713
  #. EconomicActivity.properties.receiver.description
1024
1714
  #: followthemoney/schema/EconomicActivity.yaml
1025
1715
  msgid "Destination of the goods"
@@ -1042,7 +1732,7 @@ msgstr ""
1042
1732
 
1043
1733
  #. EconomicActivity.properties.contractHolder.reverse.label
1044
1734
  #: followthemoney/schema/EconomicActivity.yaml
1045
- msgid "Economic activities"
1735
+ msgid "Customs declarations facilitated"
1046
1736
  msgstr ""
1047
1737
 
1048
1738
  #. EconomicActivity.properties.invoiceAmount.label
@@ -1119,6 +1809,11 @@ msgstr ""
1119
1809
  msgid "Country of origin of goods"
1120
1810
  msgstr ""
1121
1811
 
1812
+ #. EconomicActivity.properties.bankAccount.label
1813
+ #: followthemoney/schema/EconomicActivity.yaml
1814
+ msgid "Bank Account"
1815
+ msgstr ""
1816
+
1122
1817
  #. EconomicActivity.properties.bankAccount.description
1123
1818
  #: followthemoney/schema/EconomicActivity.yaml
1124
1819
  msgid "Bank account of the contract"
@@ -1134,6 +1829,11 @@ msgstr ""
1134
1829
  msgid "Bank account for payments in roubles"
1135
1830
  msgstr ""
1136
1831
 
1832
+ #. EconomicActivity.properties.bankRub.reverse.label
1833
+ #: followthemoney/schema/EconomicActivity.yaml
1834
+ msgid "Customs declarations (as rouble bank)"
1835
+ msgstr ""
1836
+
1137
1837
  #. EconomicActivity.properties.bankForeign.label
1138
1838
  #: followthemoney/schema/EconomicActivity.yaml
1139
1839
  msgid "Foreign currency bank"
@@ -1144,6 +1844,11 @@ msgstr ""
1144
1844
  msgid "Bank account for payments in foreign currency"
1145
1845
  msgstr ""
1146
1846
 
1847
+ #. EconomicActivity.properties.bankForeign.reverse.label
1848
+ #: followthemoney/schema/EconomicActivity.yaml
1849
+ msgid "Customs declarations (as foreign bank)"
1850
+ msgstr ""
1851
+
1147
1852
  #. EconomicActivity.properties.transport.label
1148
1853
  #: followthemoney/schema/EconomicActivity.yaml
1149
1854
  msgid "Transport"
@@ -1154,41 +1859,310 @@ msgstr ""
1154
1859
  msgid "Means of transportation"
1155
1860
  msgstr ""
1156
1861
 
1157
- #. Event.label
1862
+ #. Email.label
1863
+ #. LegalEntity.properties.email.label
1864
+ #. UserAccount.properties.email.label
1865
+ #: followthemoney/schema/Email.yaml followthemoney/schema/LegalEntity.yaml
1866
+ #: followthemoney/schema/UserAccount.yaml
1867
+ msgid "E-Mail"
1868
+ msgstr ""
1869
+
1870
+ #. Email.plural
1871
+ #: followthemoney/schema/Email.yaml
1872
+ msgid "E-Mails"
1873
+ msgstr ""
1874
+
1875
+ #. Email.description
1876
+ #: followthemoney/schema/Email.yaml
1877
+ msgid ""
1878
+ "An internet mail message. The body can be formatted as plain text and/or "
1879
+ "HTML, and the message may have any number of attachments."
1880
+ msgstr ""
1881
+
1882
+ #. Email.properties.subject.label
1883
+ #. Message.properties.subject.label
1884
+ #. UnknownLink.properties.subject.label
1885
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1886
+ #: followthemoney/schema/UnknownLink.yaml
1887
+ msgid "Subject"
1888
+ msgstr ""
1889
+
1890
+ #. Email.properties.threadTopic.label
1891
+ #. Message.properties.threadTopic.label
1892
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1893
+ msgid "Thread topic"
1894
+ msgstr ""
1895
+
1896
+ #. Email.properties.from.label
1897
+ #: followthemoney/schema/Email.yaml
1898
+ msgid "From"
1899
+ msgstr ""
1900
+
1901
+ #. Email.properties.to.label
1902
+ #: followthemoney/schema/Email.yaml
1903
+ msgid "To"
1904
+ msgstr ""
1905
+
1906
+ #. Email.properties.cc.label
1907
+ #: followthemoney/schema/Email.yaml
1908
+ msgid "CC"
1909
+ msgstr ""
1910
+
1911
+ #. Email.properties.cc.description
1912
+ #: followthemoney/schema/Email.yaml
1913
+ msgid "Carbon copy"
1914
+ msgstr ""
1915
+
1916
+ #. Email.properties.bcc.label
1917
+ #: followthemoney/schema/Email.yaml
1918
+ msgid "BCC"
1919
+ msgstr ""
1920
+
1921
+ #. Email.properties.bcc.description
1922
+ #: followthemoney/schema/Email.yaml
1923
+ msgid "Blind carbon copy"
1924
+ msgstr ""
1925
+
1926
+ #. Email.properties.emitters.label
1927
+ #: followthemoney/schema/Email.yaml
1928
+ msgid "Emitter"
1929
+ msgstr ""
1930
+
1931
+ #. Email.properties.emitters.reverse.label
1932
+ #: followthemoney/schema/Email.yaml
1933
+ msgid "E-Mails sent"
1934
+ msgstr ""
1935
+
1936
+ #. Email.properties.recipients.label
1937
+ #. Message.properties.recipients.label
1938
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1939
+ msgid "Recipients"
1940
+ msgstr ""
1941
+
1942
+ #. Email.properties.recipients.reverse.label
1943
+ #: followthemoney/schema/Email.yaml
1944
+ msgid "E-Mails received"
1945
+ msgstr ""
1946
+
1947
+ #. Email.properties.inReplyTo.label
1948
+ #. Message.properties.inReplyTo.label
1949
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1950
+ msgid "In Reply To"
1951
+ msgstr ""
1952
+
1953
+ #. Email.properties.inReplyTo.description
1954
+ #: followthemoney/schema/Email.yaml
1955
+ msgid "Message ID of the preceding email in the thread"
1956
+ msgstr ""
1957
+
1958
+ #. Email.properties.inReplyToEmail.label
1959
+ #. Message.properties.inReplyToMessage.label
1960
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1961
+ msgid "Responding to"
1962
+ msgstr ""
1963
+
1964
+ #. Email.properties.inReplyToEmail.reverse.label
1965
+ #. Message.properties.inReplyToMessage.reverse.label
1966
+ #: followthemoney/schema/Email.yaml followthemoney/schema/Message.yaml
1967
+ msgid "Responses"
1968
+ msgstr ""
1969
+
1970
+ #. Email.properties.headers.label
1971
+ #: followthemoney/schema/Email.yaml
1972
+ msgid "Raw headers"
1973
+ msgstr ""
1974
+
1975
+ #. Employment.label
1976
+ #: followthemoney/schema/Employment.yaml
1977
+ msgid "Employment"
1978
+ msgstr ""
1979
+
1980
+ #. Employment.plural
1981
+ #: followthemoney/schema/Employment.yaml
1982
+ msgid "Employments"
1983
+ msgstr ""
1984
+
1985
+ #. Employment.edge.label
1986
+ #: followthemoney/schema/Employment.yaml
1987
+ msgid "works for"
1988
+ msgstr ""
1989
+
1990
+ #. Employment.properties.employer.label
1991
+ #: followthemoney/schema/Employment.yaml
1992
+ msgid "Employer"
1993
+ msgstr ""
1994
+
1995
+ #. Employment.properties.employer.reverse.label
1996
+ #: followthemoney/schema/Employment.yaml
1997
+ msgid "Employees"
1998
+ msgstr ""
1999
+
2000
+ #. Employment.properties.employee.label
2001
+ #: followthemoney/schema/Employment.yaml
2002
+ msgid "Employee"
2003
+ msgstr ""
2004
+
2005
+ #. Employment.properties.employee.reverse.label
2006
+ #: followthemoney/schema/Employment.yaml
2007
+ msgid "Employers"
2008
+ msgstr ""
2009
+
2010
+ #. Event.label
1158
2011
  #: followthemoney/schema/Event.yaml
1159
2012
  msgid "Event"
1160
2013
  msgstr ""
1161
2014
 
2015
+ #. Event.plural
2016
+ #. Event.properties.involved.reverse.label
2017
+ #: followthemoney/schema/Event.yaml
2018
+ msgid "Events"
2019
+ msgstr ""
2020
+
1162
2021
  #. Event.properties.location.label
1163
2022
  #: followthemoney/schema/Event.yaml
1164
2023
  msgid "Location"
1165
2024
  msgstr ""
1166
2025
 
2026
+ #. Event.properties.important.label
2027
+ #: followthemoney/schema/Event.yaml
2028
+ msgid "Important"
2029
+ msgstr ""
2030
+
2031
+ #. Event.properties.organizer.label
2032
+ #: followthemoney/schema/Event.yaml
2033
+ msgid "Organizer"
2034
+ msgstr ""
2035
+
2036
+ #. Event.properties.organizer.reverse.label
2037
+ #: followthemoney/schema/Event.yaml
2038
+ msgid "Organized events"
2039
+ msgstr ""
2040
+
2041
+ #. Event.properties.involved.label
2042
+ #: followthemoney/schema/Event.yaml
2043
+ msgid "Involved"
2044
+ msgstr ""
2045
+
1167
2046
  #. Family.label
1168
- #: followthemoney/schema/Family.yml
2047
+ #: followthemoney/schema/Family.yaml
1169
2048
  msgid "Family"
1170
2049
  msgstr ""
1171
2050
 
2051
+ #. Family.plural
2052
+ #. Family.properties.person.reverse.label
2053
+ #: followthemoney/schema/Family.yaml
2054
+ msgid "Family members"
2055
+ msgstr ""
2056
+
1172
2057
  #. Family.description
1173
- #: followthemoney/schema/Family.yml
2058
+ #: followthemoney/schema/Family.yaml
1174
2059
  msgid "Family relationship between two people"
1175
2060
  msgstr ""
1176
2061
 
2062
+ #. Family.edge.label
2063
+ #: followthemoney/schema/Family.yaml
2064
+ msgid "related to"
2065
+ msgstr ""
2066
+
2067
+ #. Family.properties.person.description
2068
+ #: followthemoney/schema/Family.yaml
2069
+ msgid "The subject of the familial relation."
2070
+ msgstr ""
2071
+
1177
2072
  #. Family.properties.relative.label
1178
- #: followthemoney/schema/Family.yml
2073
+ #: followthemoney/schema/Family.yaml
1179
2074
  msgid "Relative"
1180
2075
  msgstr ""
1181
2076
 
1182
2077
  #. Family.properties.relative.reverse.label
1183
- #: followthemoney/schema/Family.yml
2078
+ #: followthemoney/schema/Family.yaml
1184
2079
  msgid "Relatives"
1185
2080
  msgstr ""
1186
2081
 
1187
2082
  #. Family.properties.relative.description
1188
- #: followthemoney/schema/Family.yml
2083
+ #: followthemoney/schema/Family.yaml
1189
2084
  msgid "The relative of the subject person."
1190
2085
  msgstr ""
1191
2086
 
2087
+ #. Family.properties.relationship.description
2088
+ #: followthemoney/schema/Family.yaml
2089
+ msgid ""
2090
+ "Nature of the relationship, from the person's perspective eg. 'mother', "
2091
+ "where 'relative' is mother of 'person'."
2092
+ msgstr ""
2093
+
2094
+ #. Folder.plural
2095
+ #: followthemoney/schema/Folder.yaml
2096
+ msgid "Folders"
2097
+ msgstr ""
2098
+
2099
+ #. HyperText.label
2100
+ #: followthemoney/schema/HyperText.yaml
2101
+ msgid "Web page"
2102
+ msgstr ""
2103
+
2104
+ #. HyperText.plural
2105
+ #: followthemoney/schema/HyperText.yaml
2106
+ msgid "Web pages"
2107
+ msgstr ""
2108
+
2109
+ #. HyperText.properties.bodyHtml.label
2110
+ #: followthemoney/schema/HyperText.yaml followthemoney/types/string.py:40
2111
+ msgid "HTML"
2112
+ msgstr ""
2113
+
2114
+ #. Identification.label
2115
+ #: followthemoney/schema/Identification.yaml
2116
+ msgid "Identification"
2117
+ msgstr ""
2118
+
2119
+ #. Identification.plural
2120
+ #. Identification.properties.holder.reverse.label
2121
+ #: followthemoney/schema/Identification.yaml
2122
+ msgid "Identifications"
2123
+ msgstr ""
2124
+
2125
+ #. Identification.description
2126
+ #: followthemoney/schema/Identification.yaml
2127
+ msgid ""
2128
+ "An form of identification associated with its holder and some issuing "
2129
+ "country. This can be used for national ID cards, voter enrollments and "
2130
+ "similar instruments.\n"
2131
+ msgstr ""
2132
+
2133
+ #. Identification.properties.holder.label
2134
+ #: followthemoney/schema/Identification.yaml
2135
+ msgid "Identification holder"
2136
+ msgstr ""
2137
+
2138
+ #. Identification.properties.authority.label
2139
+ #. Sanction.properties.authority.label
2140
+ #: followthemoney/schema/Identification.yaml
2141
+ #: followthemoney/schema/Sanction.yaml
2142
+ msgid "Authority"
2143
+ msgstr ""
2144
+
2145
+ #. Image.label
2146
+ #: followthemoney/schema/Image.yaml
2147
+ msgid "Image"
2148
+ msgstr ""
2149
+
2150
+ #. Image.plural
2151
+ #. Image.properties.pictured.reverse.label
2152
+ #: followthemoney/schema/Image.yaml
2153
+ msgid "Images"
2154
+ msgstr ""
2155
+
2156
+ #. Image.description
2157
+ #: followthemoney/schema/Image.yaml
2158
+ msgid "An image file.\n"
2159
+ msgstr ""
2160
+
2161
+ #. Image.properties.pictured.label
2162
+ #: followthemoney/schema/Image.yaml
2163
+ msgid "Pictured"
2164
+ msgstr ""
2165
+
1192
2166
  #. Interest.label
1193
2167
  #: followthemoney/schema/Interest.yaml
1194
2168
  msgid "Interest"
@@ -1204,6 +2178,11 @@ msgstr ""
1204
2178
  msgid "Interval"
1205
2179
  msgstr ""
1206
2180
 
2181
+ #. Interval.description
2182
+ #: followthemoney/schema/Interval.yaml
2183
+ msgid "An object which is bounded in time.\n"
2184
+ msgstr ""
2185
+
1207
2186
  #. Interval.properties.startDate.label
1208
2187
  #: followthemoney/schema/Interval.yaml
1209
2188
  msgid "Start date"
@@ -1220,24 +2199,59 @@ msgstr ""
1220
2199
  msgid "Summary"
1221
2200
  msgstr ""
1222
2201
 
2202
+ #. Interval.properties.description.label
2203
+ #. Thing.properties.description.label
2204
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2205
+ msgid "Description"
2206
+ msgstr ""
2207
+
1223
2208
  #. Interval.properties.recordId.label
1224
2209
  #: followthemoney/schema/Interval.yaml
1225
2210
  msgid "Record ID"
1226
2211
  msgstr ""
1227
2212
 
1228
2213
  #. Interval.properties.sourceUrl.label
1229
- #: followthemoney/schema/Interval.yaml
1230
- msgid "Source URL"
2214
+ #. Thing.properties.sourceUrl.label
2215
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2216
+ msgid "Source link"
1231
2217
  msgstr ""
1232
2218
 
1233
- #. Land.label
1234
- #: followthemoney/schema/Land.yml
1235
- msgid "Land"
2219
+ #. Interval.properties.publisher.label
2220
+ #. Thing.properties.publisher.label
2221
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2222
+ msgid "Publishing source"
2223
+ msgstr ""
2224
+
2225
+ #. Interval.properties.publisherUrl.label
2226
+ #. Thing.properties.publisherUrl.label
2227
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2228
+ msgid "Publishing source URL"
2229
+ msgstr ""
2230
+
2231
+ #. Interval.properties.alephUrl.label
2232
+ #. Thing.properties.alephUrl.label
2233
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2234
+ msgid "Aleph URL"
1236
2235
  msgstr ""
1237
2236
 
1238
- #. Land.plural
1239
- #: followthemoney/schema/Land.yml
1240
- msgid "Lands"
2237
+ #. Interval.properties.indexText.label
2238
+ #. Page.properties.indexText.label
2239
+ #. Thing.properties.indexText.label
2240
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Page.yaml
2241
+ #: followthemoney/schema/Thing.yaml
2242
+ msgid "Index text"
2243
+ msgstr ""
2244
+
2245
+ #. Interval.properties.modifiedAt.label
2246
+ #. Thing.properties.modifiedAt.label
2247
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2248
+ msgid "Modified on"
2249
+ msgstr ""
2250
+
2251
+ #. Interval.properties.retrievedAt.label
2252
+ #. Thing.properties.retrievedAt.label
2253
+ #: followthemoney/schema/Interval.yaml followthemoney/schema/Thing.yaml
2254
+ msgid "Retrieved on"
1241
2255
  msgstr ""
1242
2256
 
1243
2257
  #. LegalEntity.label
@@ -1252,7 +2266,10 @@ msgstr ""
1252
2266
 
1253
2267
  #. LegalEntity.description
1254
2268
  #: followthemoney/schema/LegalEntity.yaml
1255
- msgid "A legal entity may be a person or a company."
2269
+ msgid ""
2270
+ "Any party to legal proceedings, such as asset ownership, corporate "
2271
+ "governance or social interactions. Often used when raw data does not "
2272
+ "specify if something is a person or company.\n"
1256
2273
  msgstr ""
1257
2274
 
1258
2275
  #. LegalEntity.properties.email.description
@@ -1266,7 +2283,7 @@ msgid "Phone"
1266
2283
  msgstr ""
1267
2284
 
1268
2285
  #. LegalEntity.properties.phone.description
1269
- #: followthemoney/schema/LegalEntity.yaml
2286
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/types/phone.py:35
1270
2287
  msgid "Phone number"
1271
2288
  msgstr ""
1272
2289
 
@@ -1296,7 +2313,8 @@ msgid "The date the legal entity was incorporated"
1296
2313
  msgstr ""
1297
2314
 
1298
2315
  #. LegalEntity.properties.dissolutionDate.label
1299
- #: followthemoney/schema/LegalEntity.yaml
2316
+ #. Position.properties.dissolutionDate.label
2317
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/schema/Position.yaml
1300
2318
  msgid "Dissolution date"
1301
2319
  msgstr ""
1302
2320
 
@@ -1315,11 +2333,6 @@ msgstr ""
1315
2333
  msgid "Sector"
1316
2334
  msgstr ""
1317
2335
 
1318
- #. LegalEntity.properties.classification.label
1319
- #: followthemoney/schema/LegalEntity.yaml
1320
- msgid "Classification"
1321
- msgstr ""
1322
-
1323
2336
  #. LegalEntity.properties.registrationNumber.description
1324
2337
  #: followthemoney/schema/LegalEntity.yaml
1325
2338
  msgid "Company registration number"
@@ -1337,12 +2350,32 @@ msgstr ""
1337
2350
 
1338
2351
  #. LegalEntity.properties.taxNumber.label
1339
2352
  #: followthemoney/schema/LegalEntity.yaml
1340
- msgid "Tax ID Number"
2353
+ msgid "Tax Number"
1341
2354
  msgstr ""
1342
2355
 
1343
2356
  #. LegalEntity.properties.taxNumber.description
1344
2357
  #: followthemoney/schema/LegalEntity.yaml
1345
- msgid "Tax ID number"
2358
+ msgid "Tax identification number"
2359
+ msgstr ""
2360
+
2361
+ #. LegalEntity.properties.licenseNumber.label
2362
+ #: followthemoney/schema/LegalEntity.yaml
2363
+ msgid "License Number"
2364
+ msgstr ""
2365
+
2366
+ #. LegalEntity.properties.licenseNumber.description
2367
+ #: followthemoney/schema/LegalEntity.yaml
2368
+ msgid "For licenses granted to an entity"
2369
+ msgstr ""
2370
+
2371
+ #. LegalEntity.properties.vatCode.label
2372
+ #: followthemoney/schema/LegalEntity.yaml
2373
+ msgid "V.A.T. Identifier"
2374
+ msgstr ""
2375
+
2376
+ #. LegalEntity.properties.vatCode.description
2377
+ #: followthemoney/schema/LegalEntity.yaml
2378
+ msgid "(EU) VAT number"
1346
2379
  msgstr ""
1347
2380
 
1348
2381
  #. LegalEntity.properties.jurisdiction.description
@@ -1395,6 +2428,66 @@ msgstr ""
1395
2428
  msgid "Russian company ID"
1396
2429
  msgstr ""
1397
2430
 
2431
+ #. LegalEntity.properties.ogrnCode.label
2432
+ #: followthemoney/schema/LegalEntity.yaml
2433
+ msgid "OGRN"
2434
+ msgstr ""
2435
+
2436
+ #. LegalEntity.properties.ogrnCode.description
2437
+ #: followthemoney/schema/LegalEntity.yaml
2438
+ msgid "Major State Registration Number"
2439
+ msgstr ""
2440
+
2441
+ #. LegalEntity.properties.leiCode.label
2442
+ #: followthemoney/schema/LegalEntity.yaml
2443
+ msgid "LEI"
2444
+ msgstr ""
2445
+
2446
+ #. LegalEntity.properties.leiCode.description
2447
+ #: followthemoney/schema/LegalEntity.yaml
2448
+ msgid "Legal Entity Identifier"
2449
+ msgstr ""
2450
+
2451
+ #. LegalEntity.properties.dunsCode.label
2452
+ #: followthemoney/schema/LegalEntity.yaml
2453
+ msgid "DUNS"
2454
+ msgstr ""
2455
+
2456
+ #. LegalEntity.properties.dunsCode.description
2457
+ #: followthemoney/schema/LegalEntity.yaml
2458
+ msgid "Data Universal Numbering System - Dun & Bradstreet identifier"
2459
+ msgstr ""
2460
+
2461
+ #. LegalEntity.properties.uniqueEntityId.label
2462
+ #: followthemoney/schema/LegalEntity.yaml
2463
+ msgid "Unique Entity ID"
2464
+ msgstr ""
2465
+
2466
+ #. LegalEntity.properties.uniqueEntityId.description
2467
+ #: followthemoney/schema/LegalEntity.yaml
2468
+ msgid "UEI from SAM.gov"
2469
+ msgstr ""
2470
+
2471
+ #. LegalEntity.properties.npiCode.label
2472
+ #: followthemoney/schema/LegalEntity.yaml
2473
+ msgid "NPI"
2474
+ msgstr ""
2475
+
2476
+ #. LegalEntity.properties.npiCode.description
2477
+ #: followthemoney/schema/LegalEntity.yaml
2478
+ msgid "National Provider Identifier"
2479
+ msgstr ""
2480
+
2481
+ #. LegalEntity.properties.swiftBic.label
2482
+ #: followthemoney/schema/LegalEntity.yaml
2483
+ msgid "SWIFT/BIC"
2484
+ msgstr ""
2485
+
2486
+ #. LegalEntity.properties.swiftBic.description
2487
+ #: followthemoney/schema/LegalEntity.yaml
2488
+ msgid "Bank identifier code"
2489
+ msgstr ""
2490
+
1398
2491
  #. LegalEntity.properties.parent.label
1399
2492
  #: followthemoney/schema/LegalEntity.yaml
1400
2493
  msgid "Parent company"
@@ -1407,30 +2500,24 @@ msgid ""
1407
2500
  "is its parent"
1408
2501
  msgstr ""
1409
2502
 
1410
- #. LegalEntity.properties.subsidiaries.label
2503
+ #. LegalEntity.properties.parent.reverse.label
1411
2504
  #: followthemoney/schema/LegalEntity.yaml
1412
2505
  msgid "Subsidiaries"
1413
2506
  msgstr ""
1414
2507
 
1415
- #. LegalEntity.properties.passport.label
1416
- #. Passport.plural
1417
- #: followthemoney/schema/LegalEntity.yaml followthemoney/schema/Passport.yaml
1418
- msgid "Passports"
1419
- msgstr ""
1420
-
1421
2508
  #. License.label
1422
2509
  #: followthemoney/schema/License.yaml
1423
2510
  msgid "License"
1424
2511
  msgstr ""
1425
2512
 
1426
- #. License.description
2513
+ #. License.plural
1427
2514
  #: followthemoney/schema/License.yaml
1428
- msgid "A grant of land, rights or property. A type of Contract"
2515
+ msgid "Licenses"
1429
2516
  msgstr ""
1430
2517
 
1431
- #. License.plural
2518
+ #. License.description
1432
2519
  #: followthemoney/schema/License.yaml
1433
- msgid "Licenses"
2520
+ msgid "A grant of land, rights or property. A type of Contract"
1434
2521
  msgstr ""
1435
2522
 
1436
2523
  #. License.properties.area.label
@@ -1454,14 +2541,20 @@ msgstr ""
1454
2541
  msgid "Membership"
1455
2542
  msgstr ""
1456
2543
 
1457
- #. Membership.properties.member.label
2544
+ #. Membership.plural
2545
+ #. Membership.properties.member.reverse.label
1458
2546
  #: followthemoney/schema/Membership.yaml
1459
- msgid "Member"
2547
+ msgid "Memberships"
1460
2548
  msgstr ""
1461
2549
 
1462
- #. Membership.properties.member.reverse.label
2550
+ #. Membership.edge.label
1463
2551
  #: followthemoney/schema/Membership.yaml
1464
- msgid "Memberships"
2552
+ msgid "belongs to"
2553
+ msgstr ""
2554
+
2555
+ #. Membership.properties.member.label
2556
+ #: followthemoney/schema/Membership.yaml
2557
+ msgid "Member"
1465
2558
  msgstr ""
1466
2559
 
1467
2560
  #. Membership.properties.organization.reverse.label
@@ -1469,24 +2562,243 @@ msgstr ""
1469
2562
  msgid "Members"
1470
2563
  msgstr ""
1471
2564
 
1472
- #. Organization.plural
1473
- #: followthemoney/schema/Organization.yaml
1474
- msgid "Organizations"
2565
+ #. Mention.label
2566
+ #: followthemoney/schema/Mention.yaml
2567
+ msgid "Mention"
1475
2568
  msgstr ""
1476
2569
 
1477
- #. Ownership.label
1478
- #: followthemoney/schema/Ownership.yaml
1479
- msgid "Ownership"
2570
+ #. Mention.plural
2571
+ #: followthemoney/schema/Mention.yaml
2572
+ msgid "Mentions"
1480
2573
  msgstr ""
1481
2574
 
1482
- #. Ownership.properties.owner.label
1483
- #. Vehicle.properties.owner.label
1484
- #: followthemoney/schema/Ownership.yaml followthemoney/schema/Vehicle.yaml
1485
- msgid "Owner"
2575
+ #. Mention.properties.document.label
2576
+ #. Page.properties.document.label
2577
+ #. Pages.label
2578
+ #: followthemoney/schema/Mention.yaml followthemoney/schema/Page.yaml
2579
+ #: followthemoney/schema/Pages.yaml
2580
+ msgid "Document"
1486
2581
  msgstr ""
1487
2582
 
1488
- #. Ownership.properties.owner.reverse.label
1489
- #: followthemoney/schema/Ownership.yaml
2583
+ #. Mention.properties.document.reverse.label
2584
+ #: followthemoney/schema/Mention.yaml
2585
+ msgid "Extracted names"
2586
+ msgstr ""
2587
+
2588
+ #. Mention.properties.resolved.label
2589
+ #. Note.properties.entity.label
2590
+ #. Sanction.properties.entity.label
2591
+ #: followthemoney/schema/Mention.yaml followthemoney/schema/Note.yaml
2592
+ #: followthemoney/schema/Sanction.yaml followthemoney/types/entity.py:27
2593
+ msgid "Entity"
2594
+ msgstr ""
2595
+
2596
+ #. Mention.properties.resolved.reverse.label
2597
+ #: followthemoney/schema/Mention.yaml
2598
+ msgid "Document mentions"
2599
+ msgstr ""
2600
+
2601
+ #. Mention.properties.name.label
2602
+ #. Thing.properties.name.label
2603
+ #: followthemoney/schema/Mention.yaml followthemoney/schema/Thing.yaml
2604
+ #: followthemoney/types/name.py:27
2605
+ msgid "Name"
2606
+ msgstr ""
2607
+
2608
+ #. Mention.properties.detectedSchema.label
2609
+ #: followthemoney/schema/Mention.yaml
2610
+ msgid "Detected entity type"
2611
+ msgstr ""
2612
+
2613
+ #. Mention.properties.contextCountry.label
2614
+ #: followthemoney/schema/Mention.yaml
2615
+ msgid "Co-occurring countries"
2616
+ msgstr ""
2617
+
2618
+ #. Mention.properties.contextPhone.label
2619
+ #: followthemoney/schema/Mention.yaml
2620
+ msgid "Co-occurring phone numbers"
2621
+ msgstr ""
2622
+
2623
+ #. Mention.properties.contextEmail.label
2624
+ #: followthemoney/schema/Mention.yaml
2625
+ msgid "Co-occurring e-mail addresses"
2626
+ msgstr ""
2627
+
2628
+ #. Message.label
2629
+ #: followthemoney/schema/Message.yaml
2630
+ msgid "Message"
2631
+ msgstr ""
2632
+
2633
+ #. Message.plural
2634
+ #: followthemoney/schema/Message.yaml
2635
+ msgid "Messages"
2636
+ msgstr ""
2637
+
2638
+ #. Message.properties.sender.reverse.label
2639
+ #. Message.properties.senderAccount.reverse.label
2640
+ #: followthemoney/schema/Message.yaml
2641
+ msgid "Messages sent"
2642
+ msgstr ""
2643
+
2644
+ #. Message.properties.senderAccount.label
2645
+ #: followthemoney/schema/Message.yaml
2646
+ msgid "Sender Account"
2647
+ msgstr ""
2648
+
2649
+ #. Message.properties.recipients.reverse.label
2650
+ #. Message.properties.recipientAccount.reverse.label
2651
+ #: followthemoney/schema/Message.yaml
2652
+ msgid "Messages received"
2653
+ msgstr ""
2654
+
2655
+ #. Message.properties.recipientAccount.label
2656
+ #: followthemoney/schema/Message.yaml
2657
+ msgid "Recipient Account"
2658
+ msgstr ""
2659
+
2660
+ #. Message.properties.inReplyTo.description
2661
+ #: followthemoney/schema/Message.yaml
2662
+ msgid "Message ID of the preceding message in the thread"
2663
+ msgstr ""
2664
+
2665
+ #. Message.properties.metadata.label
2666
+ #: followthemoney/schema/Message.yaml
2667
+ msgid "Metadata"
2668
+ msgstr ""
2669
+
2670
+ #. Note.label
2671
+ #: followthemoney/schema/Note.yaml
2672
+ msgid "Note"
2673
+ msgstr ""
2674
+
2675
+ #. Note.plural
2676
+ #. Note.properties.entity.reverse.label
2677
+ #. Thing.properties.notes.label
2678
+ #: followthemoney/schema/Note.yaml followthemoney/schema/Thing.yaml
2679
+ msgid "Notes"
2680
+ msgstr ""
2681
+
2682
+ #. Note.description
2683
+ #: followthemoney/schema/Note.yaml
2684
+ msgid "An annotation that applies to a document or entity.\n"
2685
+ msgstr ""
2686
+
2687
+ #. Occupancy.label
2688
+ #: followthemoney/schema/Occupancy.yaml
2689
+ msgid "Occupancy"
2690
+ msgstr ""
2691
+
2692
+ #. Occupancy.plural
2693
+ #: followthemoney/schema/Occupancy.yaml
2694
+ msgid "Occupancies"
2695
+ msgstr ""
2696
+
2697
+ #. Occupancy.description
2698
+ #: followthemoney/schema/Occupancy.yaml
2699
+ msgid "The occupation of a position by a person for a specific period of time.\n"
2700
+ msgstr ""
2701
+
2702
+ #. Occupancy.edge.label
2703
+ #: followthemoney/schema/Occupancy.yaml
2704
+ msgid "holds"
2705
+ msgstr ""
2706
+
2707
+ #. Occupancy.properties.holder.label
2708
+ #. Post.properties.holder.label
2709
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Post.yaml
2710
+ msgid "Holder"
2711
+ msgstr ""
2712
+
2713
+ #. Occupancy.properties.holder.reverse.label
2714
+ #: followthemoney/schema/Occupancy.yaml
2715
+ msgid "Positions held"
2716
+ msgstr ""
2717
+
2718
+ #. Occupancy.properties.post.label
2719
+ #: followthemoney/schema/Occupancy.yaml
2720
+ msgid "Position occupied"
2721
+ msgstr ""
2722
+
2723
+ #. Occupancy.properties.post.reverse.label
2724
+ #: followthemoney/schema/Occupancy.yaml
2725
+ msgid "Position holders"
2726
+ msgstr ""
2727
+
2728
+ #. Organization.plural
2729
+ #: followthemoney/schema/Organization.yaml
2730
+ msgid "Organizations"
2731
+ msgstr ""
2732
+
2733
+ #. Organization.description
2734
+ #: followthemoney/schema/Organization.yaml
2735
+ msgid ""
2736
+ "Any type of incorporated entity that cannot be owned by another (see "
2737
+ "Company). This might include charities, foundations or state-owned "
2738
+ "enterprises, depending on their jurisdiction.\n"
2739
+ msgstr ""
2740
+
2741
+ #. Organization.properties.cageCode.label
2742
+ #: followthemoney/schema/Organization.yaml
2743
+ msgid "CAGE"
2744
+ msgstr ""
2745
+
2746
+ #. Organization.properties.cageCode.description
2747
+ #: followthemoney/schema/Organization.yaml
2748
+ msgid "Commercial and Government Entity Code (CAGE)"
2749
+ msgstr ""
2750
+
2751
+ #. Organization.properties.permId.label
2752
+ #: followthemoney/schema/Organization.yaml
2753
+ msgid "PermID"
2754
+ msgstr ""
2755
+
2756
+ #. Organization.properties.permId.description
2757
+ #: followthemoney/schema/Organization.yaml
2758
+ msgid "LSEG/Refinitiv code for a company"
2759
+ msgstr ""
2760
+
2761
+ #. Organization.properties.imoNumber.label
2762
+ #. Vessel.properties.imoNumber.label
2763
+ #: followthemoney/schema/Organization.yaml followthemoney/schema/Vessel.yaml
2764
+ msgid "IMO Number"
2765
+ msgstr ""
2766
+
2767
+ #. Organization.properties.giiNumber.label
2768
+ #: followthemoney/schema/Organization.yaml
2769
+ msgid "GIIN"
2770
+ msgstr ""
2771
+
2772
+ #. Organization.properties.giiNumber.description
2773
+ #: followthemoney/schema/Organization.yaml
2774
+ msgid "Global Intermediary Identification Number"
2775
+ msgstr ""
2776
+
2777
+ #. Ownership.label
2778
+ #: followthemoney/schema/Ownership.yaml
2779
+ msgid "Ownership"
2780
+ msgstr ""
2781
+
2782
+ #. Ownership.plural
2783
+ #: followthemoney/schema/Ownership.yaml
2784
+ msgid "Ownerships"
2785
+ msgstr ""
2786
+
2787
+ #. Ownership.edge.label
2788
+ #: followthemoney/schema/Ownership.yaml
2789
+ msgid "owns"
2790
+ msgstr ""
2791
+
2792
+ #. Ownership.properties.owner.label
2793
+ #. UserAccount.properties.owner.label
2794
+ #. Vehicle.properties.owner.label
2795
+ #: followthemoney/schema/Ownership.yaml followthemoney/schema/UserAccount.yaml
2796
+ #: followthemoney/schema/Vehicle.yaml
2797
+ msgid "Owner"
2798
+ msgstr ""
2799
+
2800
+ #. Ownership.properties.owner.reverse.label
2801
+ #: followthemoney/schema/Ownership.yaml
1490
2802
  msgid "Assets and shares"
1491
2803
  msgstr ""
1492
2804
 
@@ -1530,36 +2842,95 @@ msgstr ""
1530
2842
  msgid "Type of ownership"
1531
2843
  msgstr ""
1532
2844
 
2845
+ #. Package.label
2846
+ #: followthemoney/schema/Package.yaml
2847
+ msgid "Package"
2848
+ msgstr ""
2849
+
2850
+ #. Package.plural
2851
+ #: followthemoney/schema/Package.yaml
2852
+ msgid "Packages"
2853
+ msgstr ""
2854
+
2855
+ #. Package.description
2856
+ #: followthemoney/schema/Package.yaml
2857
+ msgid ""
2858
+ "A bundle of files that have been packaged together into some form of "
2859
+ "archive.\n"
2860
+ msgstr ""
2861
+
2862
+ #. Page.label
2863
+ #: followthemoney/schema/Page.yaml
2864
+ msgid "Page"
2865
+ msgstr ""
2866
+
2867
+ #. Page.plural
2868
+ #. Page.properties.document.reverse.label
2869
+ #: followthemoney/schema/Page.yaml
2870
+ msgid "Pages"
2871
+ msgstr ""
2872
+
2873
+ #. Page.properties.index.label
2874
+ #: followthemoney/schema/Page.yaml
2875
+ msgid "Index"
2876
+ msgstr ""
2877
+
2878
+ #. Pages.description
2879
+ #: followthemoney/schema/Pages.yaml
2880
+ msgid ""
2881
+ "A multi-page document, such as a PDF or Word file or slide-show "
2882
+ "presentation.\n"
2883
+ msgstr ""
2884
+
2885
+ #. Pages.plural
2886
+ #: followthemoney/schema/Pages.yaml
2887
+ msgid "Documents"
2888
+ msgstr ""
2889
+
2890
+ #. Pages.properties.pdfHash.label
2891
+ #: followthemoney/schema/Pages.yaml
2892
+ msgid "PDF alternative version checksum"
2893
+ msgstr ""
2894
+
1533
2895
  #. Passport.label
1534
- #. Passport.description
1535
- #. Person.properties.passportNumber.label
1536
- #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2896
+ #: followthemoney/schema/Passport.yaml
1537
2897
  msgid "Passport"
1538
2898
  msgstr ""
1539
2899
 
1540
- #. Passport.properties.holder.label
2900
+ #. Passport.plural
1541
2901
  #: followthemoney/schema/Passport.yaml
1542
- msgid "Document holder"
2902
+ msgid "Passports"
1543
2903
  msgstr ""
1544
2904
 
1545
- #. Passport.properties.passportNumber.label
2905
+ #. Passport.description
1546
2906
  #: followthemoney/schema/Passport.yaml
2907
+ msgid "An passport held by a person.\n"
2908
+ msgstr ""
2909
+
2910
+ #. Passport.properties.passportNumber.label
2911
+ #. Person.properties.passportNumber.label
2912
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
1547
2913
  msgid "Passport number"
1548
2914
  msgstr ""
1549
2915
 
1550
2916
  #. Passport.properties.surname.label
1551
- #: followthemoney/schema/Passport.yaml
2917
+ #. TaxRoll.properties.surname.label
2918
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
1552
2919
  msgid "Surname"
1553
2920
  msgstr ""
1554
2921
 
1555
2922
  #. Passport.properties.givenName.label
1556
- #: followthemoney/schema/Passport.yaml
2923
+ #. TaxRoll.properties.givenName.label
2924
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/TaxRoll.yaml
1557
2925
  msgid "Given name"
1558
2926
  msgstr ""
1559
2927
 
1560
2928
  #. Passport.properties.birthDate.label
1561
- #: followthemoney/schema/Passport.yaml
1562
- msgid "Date of birth"
2929
+ #. Person.properties.birthDate.label
2930
+ #. TaxRoll.properties.birthDate.label
2931
+ #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2932
+ #: followthemoney/schema/TaxRoll.yaml
2933
+ msgid "Birth date"
1563
2934
  msgstr ""
1564
2935
 
1565
2936
  #. Passport.properties.birthPlace.label
@@ -1571,6 +2942,7 @@ msgstr ""
1571
2942
  #. Passport.properties.gender.label
1572
2943
  #. Person.properties.gender.label
1573
2944
  #: followthemoney/schema/Passport.yaml followthemoney/schema/Person.yaml
2945
+ #: followthemoney/types/gender.py:40
1574
2946
  msgid "Gender"
1575
2947
  msgstr ""
1576
2948
 
@@ -1579,16 +2951,27 @@ msgstr ""
1579
2951
  msgid "Personal number"
1580
2952
  msgstr ""
1581
2953
 
1582
- #. Passport.properties.authority.label
1583
- #: followthemoney/schema/Passport.yaml
1584
- msgid "Authority"
1585
- msgstr ""
1586
-
1587
2954
  #. Payment.label
1588
2955
  #: followthemoney/schema/Payment.yaml
1589
2956
  msgid "Payment"
1590
2957
  msgstr ""
1591
2958
 
2959
+ #. Payment.plural
2960
+ #. Payment.properties.project.reverse.label
2961
+ #: followthemoney/schema/Payment.yaml
2962
+ msgid "Payments"
2963
+ msgstr ""
2964
+
2965
+ #. Payment.description
2966
+ #: followthemoney/schema/Payment.yaml
2967
+ msgid "A monetary payment between two parties."
2968
+ msgstr ""
2969
+
2970
+ #. Payment.edge.label
2971
+ #: followthemoney/schema/Payment.yaml
2972
+ msgid "paid"
2973
+ msgstr ""
2974
+
1592
2975
  #. Payment.properties.sequenceNumber.label
1593
2976
  #: followthemoney/schema/Payment.yaml
1594
2977
  msgid "Sequence number"
@@ -1646,12 +3029,9 @@ msgstr ""
1646
3029
  msgid "Beneficiary bank account"
1647
3030
  msgstr ""
1648
3031
 
1649
- #. Person.label
1650
- #. Relationship.properties.person.label
1651
- #. TaxRoll.properties.person.label
1652
- #: followthemoney/schema/Person.yaml followthemoney/schema/Relationship.yaml
1653
- #: followthemoney/schema/TaxRoll.yaml
1654
- msgid "Person"
3032
+ #. Payment.properties.contract.reverse.label
3033
+ #: followthemoney/schema/Payment.yaml
3034
+ msgid "Contractual payments"
1655
3035
  msgstr ""
1656
3036
 
1657
3037
  #. Person.plural
@@ -1659,6 +3039,11 @@ msgstr ""
1659
3039
  msgid "People"
1660
3040
  msgstr ""
1661
3041
 
3042
+ #. Person.description
3043
+ #: followthemoney/schema/Person.yaml
3044
+ msgid "A natural person, as opposed to a corporation of some type.\n"
3045
+ msgstr ""
3046
+
1662
3047
  #. Person.properties.firstName.label
1663
3048
  #: followthemoney/schema/Person.yaml
1664
3049
  msgid "First name"
@@ -1689,512 +3074,1423 @@ msgstr ""
1689
3074
  msgid "Last name"
1690
3075
  msgstr ""
1691
3076
 
1692
- #. Person.properties.birthDate.label
1693
- #: followthemoney/schema/Person.yaml
1694
- msgid "Birth date"
3077
+ #. Person.properties.nameSuffix.label
3078
+ #: followthemoney/schema/Person.yaml
3079
+ msgid "Name suffix"
3080
+ msgstr ""
3081
+
3082
+ #. Person.properties.birthCountry.label
3083
+ #: followthemoney/schema/Person.yaml
3084
+ msgid "Country of birth"
3085
+ msgstr ""
3086
+
3087
+ #. Person.properties.deathDate.label
3088
+ #: followthemoney/schema/Person.yaml
3089
+ msgid "Death date"
3090
+ msgstr ""
3091
+
3092
+ #. Person.properties.position.label
3093
+ #. Position.label
3094
+ #: followthemoney/schema/Person.yaml followthemoney/schema/Position.yaml
3095
+ msgid "Position"
3096
+ msgstr ""
3097
+
3098
+ #. Person.properties.nationality.label
3099
+ #: followthemoney/schema/Person.yaml
3100
+ msgid "Nationality"
3101
+ msgstr ""
3102
+
3103
+ #. Person.properties.citizenship.label
3104
+ #: followthemoney/schema/Person.yaml
3105
+ msgid "Citizenship"
3106
+ msgstr ""
3107
+
3108
+ #. Person.properties.socialSecurityNumber.label
3109
+ #: followthemoney/schema/Person.yaml
3110
+ msgid "Social security number"
3111
+ msgstr ""
3112
+
3113
+ #. Person.properties.ethnicity.label
3114
+ #: followthemoney/schema/Person.yaml
3115
+ msgid "Ethnicity"
3116
+ msgstr ""
3117
+
3118
+ #. Person.properties.height.label
3119
+ #: followthemoney/schema/Person.yaml
3120
+ msgid "Height"
3121
+ msgstr ""
3122
+
3123
+ #. Person.properties.weight.label
3124
+ #: followthemoney/schema/Person.yaml
3125
+ msgid "Weight"
3126
+ msgstr ""
3127
+
3128
+ #. Person.properties.eyeColor.label
3129
+ #: followthemoney/schema/Person.yaml
3130
+ msgid "Eye color"
3131
+ msgstr ""
3132
+
3133
+ #. Person.properties.hairColor.label
3134
+ #: followthemoney/schema/Person.yaml
3135
+ msgid "Hair color"
3136
+ msgstr ""
3137
+
3138
+ #. Person.properties.appearance.label
3139
+ #: followthemoney/schema/Person.yaml
3140
+ msgid "Physical appearance"
3141
+ msgstr ""
3142
+
3143
+ #. Person.properties.religion.label
3144
+ #: followthemoney/schema/Person.yaml followthemoney/types/topic.py:78
3145
+ msgid "Religion"
3146
+ msgstr ""
3147
+
3148
+ #. Person.properties.political.label
3149
+ #: followthemoney/schema/Person.yaml
3150
+ msgid "Political association"
3151
+ msgstr ""
3152
+
3153
+ #. Person.properties.education.label
3154
+ #: followthemoney/schema/Person.yaml
3155
+ msgid "Education"
3156
+ msgstr ""
3157
+
3158
+ #. Person.properties.spokenLanguage.label
3159
+ #: followthemoney/schema/Person.yaml
3160
+ msgid "Spoken language"
3161
+ msgstr ""
3162
+
3163
+ #. PlainText.label
3164
+ #: followthemoney/schema/PlainText.yaml
3165
+ msgid "Text file"
3166
+ msgstr ""
3167
+
3168
+ #. PlainText.plural
3169
+ #: followthemoney/schema/PlainText.yaml
3170
+ msgid "Text files"
3171
+ msgstr ""
3172
+
3173
+ #. PlainText.description
3174
+ #: followthemoney/schema/PlainText.yaml
3175
+ msgid "Text files, like .txt or source code.\n"
3176
+ msgstr ""
3177
+
3178
+ #. Position.plural
3179
+ #. Position.properties.organization.reverse.label
3180
+ #: followthemoney/schema/Position.yaml
3181
+ msgid "Positions"
3182
+ msgstr ""
3183
+
3184
+ #. Position.description
3185
+ #: followthemoney/schema/Position.yaml
3186
+ msgid ""
3187
+ "A post, role or position within an organization or body. This describes a"
3188
+ " position one or more people may occupy and not the occupation of the "
3189
+ "post by a specific individual at a specific point in time.\n"
3190
+ "'subnationalArea' should be used to further restrict the scope of the "
3191
+ "position. It should not simply represent some regional aspect of the role"
3192
+ " - e.g. the constituency of a national member of parliament - when their "
3193
+ "legislative jurisdiction is nationwide.\n"
3194
+ msgstr ""
3195
+
3196
+ #. Position.properties.inceptionDate.label
3197
+ #: followthemoney/schema/Position.yaml
3198
+ msgid "Inception date"
3199
+ msgstr ""
3200
+
3201
+ #. Position.properties.subnationalArea.label
3202
+ #: followthemoney/schema/Position.yaml
3203
+ msgid "Subnational jurisdiction name or code"
3204
+ msgstr ""
3205
+
3206
+ #. Position.properties.numberOfSeats.label
3207
+ #: followthemoney/schema/Position.yaml
3208
+ msgid "Total number of seats"
3209
+ msgstr ""
3210
+
3211
+ #. Post.label
3212
+ #: followthemoney/schema/Post.yaml
3213
+ msgid "Post"
3214
+ msgstr ""
3215
+
3216
+ #. Post.plural
3217
+ #: followthemoney/schema/Post.yaml
3218
+ msgid "Posts"
3219
+ msgstr ""
3220
+
3221
+ #. Post.description
3222
+ #: followthemoney/schema/Post.yaml
3223
+ msgid ""
3224
+ "A post, role or position held by an individual within an organization or "
3225
+ "body. This describes the period for which the position is held, not the "
3226
+ "abstract concept of the post.\n"
3227
+ msgstr ""
3228
+
3229
+ #. Post.properties.holder.reverse.label
3230
+ #: followthemoney/schema/Post.yaml
3231
+ msgid "Posts held"
3232
+ msgstr ""
3233
+
3234
+ #. Post.properties.wikidataId.label
3235
+ #. Thing.properties.wikidataId.label
3236
+ #: followthemoney/schema/Post.yaml followthemoney/schema/Thing.yaml
3237
+ msgid "Wikidata ID"
3238
+ msgstr ""
3239
+
3240
+ #. Project.plural
3241
+ #. ProjectParticipant.properties.participant.reverse.label
3242
+ #: followthemoney/schema/Project.yaml
3243
+ #: followthemoney/schema/ProjectParticipant.yaml
3244
+ msgid "Projects"
3245
+ msgstr ""
3246
+
3247
+ #. Project.description
3248
+ #. ProjectParticipant.description
3249
+ #: followthemoney/schema/Project.yaml
3250
+ #: followthemoney/schema/ProjectParticipant.yaml
3251
+ msgid "An activity carried out by a group of participants.\n"
3252
+ msgstr ""
3253
+
3254
+ #. Project.properties.projectId.label
3255
+ #: followthemoney/schema/Project.yaml
3256
+ msgid "Project ID"
3257
+ msgstr ""
3258
+
3259
+ #. Project.properties.phase.label
3260
+ #: followthemoney/schema/Project.yaml
3261
+ msgid "Phase"
3262
+ msgstr ""
3263
+
3264
+ #. Project.properties.goal.label
3265
+ #: followthemoney/schema/Project.yaml
3266
+ msgid "Project goal"
3267
+ msgstr ""
3268
+
3269
+ #. ProjectParticipant.label
3270
+ #: followthemoney/schema/ProjectParticipant.yaml
3271
+ msgid "Project participant"
3272
+ msgstr ""
3273
+
3274
+ #. ProjectParticipant.plural
3275
+ #: followthemoney/schema/ProjectParticipant.yaml
3276
+ msgid "Project participants"
3277
+ msgstr ""
3278
+
3279
+ #. ProjectParticipant.edge.label
3280
+ #: followthemoney/schema/ProjectParticipant.yaml
3281
+ msgid "participates in"
3282
+ msgstr ""
3283
+
3284
+ #. ProjectParticipant.properties.project.reverse.label
3285
+ #: followthemoney/schema/ProjectParticipant.yaml
3286
+ msgid "Participants"
3287
+ msgstr ""
3288
+
3289
+ #. ProjectParticipant.properties.participant.label
3290
+ #: followthemoney/schema/ProjectParticipant.yaml
3291
+ msgid "Participant"
3292
+ msgstr ""
3293
+
3294
+ #. PublicBody.label
3295
+ #: followthemoney/schema/PublicBody.yaml
3296
+ msgid "Public body"
3297
+ msgstr ""
3298
+
3299
+ #. PublicBody.plural
3300
+ #: followthemoney/schema/PublicBody.yaml
3301
+ msgid "Public bodies"
3302
+ msgstr ""
3303
+
3304
+ #. PublicBody.description
3305
+ #: followthemoney/schema/PublicBody.yaml
3306
+ msgid "A public body, such as a ministry, department or state company.\n"
3307
+ msgstr ""
3308
+
3309
+ #. RealEstate.label
3310
+ #: followthemoney/schema/RealEstate.yaml
3311
+ msgid "Real estate"
3312
+ msgstr ""
3313
+
3314
+ #. RealEstate.plural
3315
+ #: followthemoney/schema/RealEstate.yaml
3316
+ msgid "Real estates"
3317
+ msgstr ""
3318
+
3319
+ #. RealEstate.description
3320
+ #: followthemoney/schema/RealEstate.yaml
3321
+ msgid "A piece of land or property."
3322
+ msgstr ""
3323
+
3324
+ #. RealEstate.properties.censusBlock.label
3325
+ #: followthemoney/schema/RealEstate.yaml
3326
+ msgid "Census block"
3327
+ msgstr ""
3328
+
3329
+ #. RealEstate.properties.cadastralCode.label
3330
+ #: followthemoney/schema/RealEstate.yaml
3331
+ msgid "Cadastral code"
3332
+ msgstr ""
3333
+
3334
+ #. RealEstate.properties.titleNumber.label
3335
+ #: followthemoney/schema/RealEstate.yaml
3336
+ msgid "Title number"
3337
+ msgstr ""
3338
+
3339
+ #. RealEstate.properties.tenure.label
3340
+ #: followthemoney/schema/RealEstate.yaml
3341
+ msgid "Tenure"
3342
+ msgstr ""
3343
+
3344
+ #. RealEstate.properties.encumbrance.label
3345
+ #: followthemoney/schema/RealEstate.yaml
3346
+ msgid "Encumbrance"
3347
+ msgstr ""
3348
+
3349
+ #. RealEstate.properties.encumbrance.description
3350
+ #: followthemoney/schema/RealEstate.yaml
3351
+ msgid ""
3352
+ "An encumbrance is a right to, interest in, or legal liability on real "
3353
+ "property that does not prohibit passing title to the property but that "
3354
+ "diminishes its value.\n"
3355
+ msgstr ""
3356
+
3357
+ #. RealEstate.properties.propertyType.label
3358
+ #: followthemoney/schema/RealEstate.yaml
3359
+ msgid "Property type"
3360
+ msgstr ""
3361
+
3362
+ #. RealEstate.properties.landType.label
3363
+ #: followthemoney/schema/RealEstate.yaml
3364
+ msgid "Land type"
3365
+ msgstr ""
3366
+
3367
+ #. RealEstate.properties.createDate.label
3368
+ #: followthemoney/schema/RealEstate.yaml
3369
+ msgid "Record date"
3370
+ msgstr ""
3371
+
3372
+ #. RealEstate.properties.parent.label
3373
+ #: followthemoney/schema/RealEstate.yaml
3374
+ msgid "Parent unit"
3375
+ msgstr ""
3376
+
3377
+ #. RealEstate.properties.parent.description
3378
+ #: followthemoney/schema/RealEstate.yaml
3379
+ msgid "If this entity is a subunit, another entity (real estate) is its parent"
3380
+ msgstr ""
3381
+
3382
+ #. RealEstate.properties.parent.reverse.label
3383
+ #: followthemoney/schema/RealEstate.yaml
3384
+ msgid "Subunits"
3385
+ msgstr ""
3386
+
3387
+ #. Representation.label
3388
+ #: followthemoney/schema/Representation.yaml
3389
+ msgid "Representation"
3390
+ msgstr ""
3391
+
3392
+ #. Representation.plural
3393
+ #: followthemoney/schema/Representation.yaml
3394
+ msgid "Representations"
3395
+ msgstr ""
3396
+
3397
+ #. Representation.description
3398
+ #: followthemoney/schema/Representation.yaml
3399
+ msgid ""
3400
+ "A mediatory, intermediary, middleman, or broker acting on behalf of a "
3401
+ "legal entity."
3402
+ msgstr ""
3403
+
3404
+ #. Representation.edge.label
3405
+ #: followthemoney/schema/Representation.yaml
3406
+ msgid "represents"
3407
+ msgstr ""
3408
+
3409
+ #. Representation.properties.agent.label
3410
+ #: followthemoney/schema/Representation.yaml
3411
+ msgid "Agent"
3412
+ msgstr ""
3413
+
3414
+ #. Representation.properties.agent.reverse.label
3415
+ #: followthemoney/schema/Representation.yaml
3416
+ msgid "Clients"
3417
+ msgstr ""
3418
+
3419
+ #. Representation.properties.client.label
3420
+ #: followthemoney/schema/Representation.yaml
3421
+ msgid "Client"
3422
+ msgstr ""
3423
+
3424
+ #. Representation.properties.client.reverse.label
3425
+ #: followthemoney/schema/Representation.yaml
3426
+ msgid "Agents"
3427
+ msgstr ""
3428
+
3429
+ #. Sanction.label
3430
+ #: followthemoney/schema/Sanction.yaml
3431
+ msgid "Sanction"
3432
+ msgstr ""
3433
+
3434
+ #. Sanction.plural
3435
+ #. Sanction.properties.entity.reverse.label
3436
+ #: followthemoney/schema/Sanction.yaml
3437
+ msgid "Sanctions"
3438
+ msgstr ""
3439
+
3440
+ #. Sanction.description
3441
+ #: followthemoney/schema/Sanction.yaml
3442
+ msgid "A sanction designation"
3443
+ msgstr ""
3444
+
3445
+ #. Sanction.properties.authorityId.label
3446
+ #: followthemoney/schema/Sanction.yaml
3447
+ msgid "Authority-issued identifier"
3448
+ msgstr ""
3449
+
3450
+ #. Sanction.properties.unscId.label
3451
+ #: followthemoney/schema/Sanction.yaml
3452
+ msgid "UN SC identifier"
3453
+ msgstr ""
3454
+
3455
+ #. Sanction.properties.program.label
3456
+ #. Thing.properties.program.label
3457
+ #: followthemoney/schema/Sanction.yaml followthemoney/schema/Thing.yaml
3458
+ msgid "Program"
3459
+ msgstr ""
3460
+
3461
+ #. Sanction.properties.programId.label
3462
+ #: followthemoney/schema/Sanction.yaml
3463
+ msgid "Program ID"
3464
+ msgstr ""
3465
+
3466
+ #. Sanction.properties.programUrl.label
3467
+ #: followthemoney/schema/Sanction.yaml
3468
+ msgid "Program URL"
3469
+ msgstr ""
3470
+
3471
+ #. Sanction.properties.provisions.label
3472
+ #: followthemoney/schema/Sanction.yaml
3473
+ msgid "Scope of sanctions"
3474
+ msgstr ""
3475
+
3476
+ #. Sanction.properties.reason.label
3477
+ #: followthemoney/schema/Sanction.yaml
3478
+ msgid "Reason"
3479
+ msgstr ""
3480
+
3481
+ #. Sanction.properties.listingDate.label
3482
+ #: followthemoney/schema/Sanction.yaml
3483
+ msgid "Listing date"
3484
+ msgstr ""
3485
+
3486
+ #. Security.label
3487
+ #: followthemoney/schema/Security.yaml
3488
+ msgid "Security"
3489
+ msgstr ""
3490
+
3491
+ #. Security.plural
3492
+ #: followthemoney/schema/Security.yaml
3493
+ msgid "Securities"
3494
+ msgstr ""
3495
+
3496
+ #. Security.description
3497
+ #: followthemoney/schema/Security.yaml
3498
+ msgid "A tradeable financial asset."
3499
+ msgstr ""
3500
+
3501
+ #. Security.properties.figiCode.label
3502
+ #: followthemoney/schema/Security.yaml
3503
+ msgid "Financial Instrument Global Identifier"
3504
+ msgstr ""
3505
+
3506
+ #. Security.properties.issuer.label
3507
+ #: followthemoney/schema/Security.yaml
3508
+ msgid "Issuer"
3509
+ msgstr ""
3510
+
3511
+ #. Security.properties.issuer.reverse.label
3512
+ #: followthemoney/schema/Security.yaml
3513
+ msgid "Issued securities"
3514
+ msgstr ""
3515
+
3516
+ #. Security.properties.issueDate.label
3517
+ #: followthemoney/schema/Security.yaml
3518
+ msgid "Date issued"
3519
+ msgstr ""
3520
+
3521
+ #. Security.properties.maturityDate.label
3522
+ #: followthemoney/schema/Security.yaml
3523
+ msgid "Maturity date"
3524
+ msgstr ""
3525
+
3526
+ #. Security.properties.collateral.label
3527
+ #: followthemoney/schema/Security.yaml
3528
+ msgid "Collateral"
3529
+ msgstr ""
3530
+
3531
+ #. Similar.label
3532
+ #: followthemoney/schema/Similar.yaml
3533
+ msgid "Similar"
3534
+ msgstr ""
3535
+
3536
+ #. Similar.plural
3537
+ #: followthemoney/schema/Similar.yaml
3538
+ msgid "Similar entities"
3539
+ msgstr ""
3540
+
3541
+ #. Similar.description
3542
+ #: followthemoney/schema/Similar.yaml
3543
+ msgid ""
3544
+ "A link between two entities that are presumed to be the same, e.g. as the"
3545
+ " outcome of a probabilistic record linkage process.\n"
3546
+ msgstr ""
3547
+
3548
+ #. Similar.properties.candidate.label
3549
+ #: followthemoney/schema/Similar.yaml
3550
+ msgid "Candidate"
3551
+ msgstr ""
3552
+
3553
+ #. Similar.properties.candidate.reverse.label
3554
+ #: followthemoney/schema/Similar.yaml
3555
+ msgid "Similar to this"
3556
+ msgstr ""
3557
+
3558
+ #. Similar.properties.match.label
3559
+ #: followthemoney/schema/Similar.yaml
3560
+ msgid "Match"
3561
+ msgstr ""
3562
+
3563
+ #. Similar.properties.match.reverse.label
3564
+ #: followthemoney/schema/Similar.yaml
3565
+ msgid "Similar as this"
3566
+ msgstr ""
3567
+
3568
+ #. Similar.properties.confidenceScore.label
3569
+ #: followthemoney/schema/Similar.yaml
3570
+ msgid "Confidence score"
3571
+ msgstr ""
3572
+
3573
+ #. Similar.properties.criteria.label
3574
+ #: followthemoney/schema/Similar.yaml
3575
+ msgid "Matching criteria"
3576
+ msgstr ""
3577
+
3578
+ #. Similar.properties.matcher.label
3579
+ #: followthemoney/schema/Similar.yaml
3580
+ msgid "Matcher"
3581
+ msgstr ""
3582
+
3583
+ #. Succession.label
3584
+ #: followthemoney/schema/Succession.yaml
3585
+ msgid "Succession"
3586
+ msgstr ""
3587
+
3588
+ #. Succession.plural
3589
+ #: followthemoney/schema/Succession.yaml
3590
+ msgid "Successions"
3591
+ msgstr ""
3592
+
3593
+ #. Succession.description
3594
+ #: followthemoney/schema/Succession.yaml
3595
+ msgid "Two entities that legally succeed each other."
3596
+ msgstr ""
3597
+
3598
+ #. Succession.edge.label
3599
+ #: followthemoney/schema/Succession.yaml
3600
+ msgid "preceeds"
3601
+ msgstr ""
3602
+
3603
+ #. Succession.properties.predecessor.label
3604
+ #: followthemoney/schema/Succession.yaml
3605
+ msgid "Predecessor"
3606
+ msgstr ""
3607
+
3608
+ #. Succession.properties.predecessor.reverse.label
3609
+ #: followthemoney/schema/Succession.yaml
3610
+ msgid "Successors"
3611
+ msgstr ""
3612
+
3613
+ #. Succession.properties.successor.label
3614
+ #: followthemoney/schema/Succession.yaml
3615
+ msgid "Successor"
3616
+ msgstr ""
3617
+
3618
+ #. Succession.properties.successor.reverse.label
3619
+ #: followthemoney/schema/Succession.yaml
3620
+ msgid "Predecessors"
3621
+ msgstr ""
3622
+
3623
+ #. Table.label
3624
+ #: followthemoney/schema/Table.yaml
3625
+ msgid "Table"
3626
+ msgstr ""
3627
+
3628
+ #. Table.plural
3629
+ #: followthemoney/schema/Table.yaml
3630
+ msgid "Tables"
3631
+ msgstr ""
3632
+
3633
+ #. Table.description
3634
+ #: followthemoney/schema/Table.yaml
3635
+ msgid ""
3636
+ "A document structured into rows and cells. This includes simple CSV "
3637
+ "files, spreadsheet sheets or database relations.\n"
3638
+ msgstr ""
3639
+
3640
+ #. Table.properties.columns.label
3641
+ #: followthemoney/schema/Table.yaml
3642
+ msgid "Column headings"
3643
+ msgstr ""
3644
+
3645
+ #. Table.properties.rowCount.label
3646
+ #: followthemoney/schema/Table.yaml
3647
+ msgid "Number of rows"
3648
+ msgstr ""
3649
+
3650
+ #. Table.properties.csvHash.label
3651
+ #: followthemoney/schema/Table.yaml
3652
+ msgid "CSV alternative version checksum"
3653
+ msgstr ""
3654
+
3655
+ #. TaxRoll.label
3656
+ #: followthemoney/schema/TaxRoll.yaml
3657
+ msgid "Tax roll"
3658
+ msgstr ""
3659
+
3660
+ #. TaxRoll.plural
3661
+ #. TaxRoll.properties.taxee.reverse.label
3662
+ #: followthemoney/schema/TaxRoll.yaml
3663
+ msgid "Tax rolls"
3664
+ msgstr ""
3665
+
3666
+ #. TaxRoll.description
3667
+ #: followthemoney/schema/TaxRoll.yaml
3668
+ msgid "A tax declaration of an individual"
3669
+ msgstr ""
3670
+
3671
+ #. TaxRoll.properties.taxee.label
3672
+ #: followthemoney/schema/TaxRoll.yaml
3673
+ msgid "Taxee"
3674
+ msgstr ""
3675
+
3676
+ #. TaxRoll.properties.income.label
3677
+ #: followthemoney/schema/TaxRoll.yaml
3678
+ msgid "Registered income"
3679
+ msgstr ""
3680
+
3681
+ #. TaxRoll.properties.taxPaid.label
3682
+ #: followthemoney/schema/TaxRoll.yaml
3683
+ msgid "Amount of tax paid"
3684
+ msgstr ""
3685
+
3686
+ #. TaxRoll.properties.wealth.label
3687
+ #: followthemoney/schema/TaxRoll.yaml
3688
+ msgid "Registered wealth"
3689
+ msgstr ""
3690
+
3691
+ #. Thing.properties.alias.label
3692
+ #: followthemoney/schema/Thing.yaml
3693
+ msgid "Other name"
3694
+ msgstr ""
3695
+
3696
+ #. Thing.properties.previousName.label
3697
+ #: followthemoney/schema/Thing.yaml
3698
+ msgid "Previous name"
3699
+ msgstr ""
3700
+
3701
+ #. Thing.properties.weakAlias.label
3702
+ #: followthemoney/schema/Thing.yaml
3703
+ msgid "Weak alias"
3704
+ msgstr ""
3705
+
3706
+ #. Thing.properties.wikipediaUrl.label
3707
+ #: followthemoney/schema/Thing.yaml
3708
+ msgid "Wikipedia Article"
3709
+ msgstr ""
3710
+
3711
+ #. Thing.properties.keywords.label
3712
+ #: followthemoney/schema/Thing.yaml
3713
+ msgid "Keywords"
3714
+ msgstr ""
3715
+
3716
+ #. Thing.properties.topics.label
3717
+ #: followthemoney/schema/Thing.yaml followthemoney/types/topic.py:22
3718
+ msgid "Topics"
3719
+ msgstr ""
3720
+
3721
+ #. Thing.properties.addressEntity.reverse.label
3722
+ #: followthemoney/schema/Thing.yaml
3723
+ msgid "Located there"
3724
+ msgstr ""
3725
+
3726
+ #. Thing.properties.proof.label
3727
+ #: followthemoney/schema/Thing.yaml
3728
+ msgid "Source document"
3729
+ msgstr ""
3730
+
3731
+ #. Thing.properties.proof.reverse.label
3732
+ #: followthemoney/schema/Thing.yaml
3733
+ msgid "Derived entities"
3734
+ msgstr ""
3735
+
3736
+ #. Thing.properties.createdAt.label
3737
+ #: followthemoney/schema/Thing.yaml
3738
+ msgid "Created at"
3739
+ msgstr ""
3740
+
3741
+ #. Trip.label
3742
+ #: followthemoney/schema/Trip.yaml
3743
+ msgid "Trip"
3744
+ msgstr ""
3745
+
3746
+ #. Trip.plural
3747
+ #. Trip.properties.vehicle.reverse.label
3748
+ #: followthemoney/schema/Trip.yaml
3749
+ msgid "Trips"
3750
+ msgstr ""
3751
+
3752
+ #. Trip.properties.startLocation.label
3753
+ #: followthemoney/schema/Trip.yaml
3754
+ msgid "Start location"
3755
+ msgstr ""
3756
+
3757
+ #. Trip.properties.startLocation.reverse.label
3758
+ #: followthemoney/schema/Trip.yaml
3759
+ msgid "Trips departing"
3760
+ msgstr ""
3761
+
3762
+ #. Trip.properties.endLocation.label
3763
+ #: followthemoney/schema/Trip.yaml
3764
+ msgid "End location"
3765
+ msgstr ""
3766
+
3767
+ #. Trip.properties.endLocation.reverse.label
3768
+ #: followthemoney/schema/Trip.yaml
3769
+ msgid "Trips incoming"
3770
+ msgstr ""
3771
+
3772
+ #. Trip.properties.vehicle.label
3773
+ #. Vehicle.label
3774
+ #: followthemoney/schema/Trip.yaml followthemoney/schema/Vehicle.yaml
3775
+ msgid "Vehicle"
3776
+ msgstr ""
3777
+
3778
+ #. UnknownLink.label
3779
+ #: followthemoney/schema/UnknownLink.yaml
3780
+ msgid "Other link"
3781
+ msgstr ""
3782
+
3783
+ #. UnknownLink.plural
3784
+ #: followthemoney/schema/UnknownLink.yaml
3785
+ msgid "Other links"
3786
+ msgstr ""
3787
+
3788
+ #. UnknownLink.edge.label
3789
+ #: followthemoney/schema/UnknownLink.yaml
3790
+ msgid "linked to"
3791
+ msgstr ""
3792
+
3793
+ #. UnknownLink.properties.subject.reverse.label
3794
+ #: followthemoney/schema/UnknownLink.yaml
3795
+ msgid "Linked to"
3796
+ msgstr ""
3797
+
3798
+ #. UnknownLink.properties.object.label
3799
+ #: followthemoney/schema/UnknownLink.yaml
3800
+ msgid "Object"
3801
+ msgstr ""
3802
+
3803
+ #. UnknownLink.properties.object.reverse.label
3804
+ #: followthemoney/schema/UnknownLink.yaml
3805
+ msgid "Linked from"
3806
+ msgstr ""
3807
+
3808
+ #. UserAccount.label
3809
+ #: followthemoney/schema/UserAccount.yaml
3810
+ msgid "User account"
3811
+ msgstr ""
3812
+
3813
+ #. UserAccount.plural
3814
+ #. UserAccount.properties.owner.reverse.label
3815
+ #: followthemoney/schema/UserAccount.yaml
3816
+ msgid "User accounts"
3817
+ msgstr ""
3818
+
3819
+ #. UserAccount.properties.service.label
3820
+ #: followthemoney/schema/UserAccount.yaml
3821
+ msgid "Service"
3822
+ msgstr ""
3823
+
3824
+ #. UserAccount.properties.number.label
3825
+ #: followthemoney/schema/UserAccount.yaml
3826
+ msgid "Phone Number"
3827
+ msgstr ""
3828
+
3829
+ #. UserAccount.properties.username.label
3830
+ #: followthemoney/schema/UserAccount.yaml
3831
+ msgid "Username"
3832
+ msgstr ""
3833
+
3834
+ #. UserAccount.properties.password.label
3835
+ #: followthemoney/schema/UserAccount.yaml
3836
+ msgid "Password"
3837
+ msgstr ""
3838
+
3839
+ #. UserAccount.properties.ipAddress.label
3840
+ #: followthemoney/schema/UserAccount.yaml
3841
+ msgid "IP address"
3842
+ msgstr ""
3843
+
3844
+ #. Value.label
3845
+ #: followthemoney/schema/Value.yaml
3846
+ msgid "Value"
3847
+ msgstr ""
3848
+
3849
+ #. Value.plural
3850
+ #: followthemoney/schema/Value.yaml
3851
+ msgid "Values"
3852
+ msgstr ""
3853
+
3854
+ #. Value.properties.amount.label
3855
+ #: followthemoney/schema/Value.yaml
3856
+ msgid "Amount"
3857
+ msgstr ""
3858
+
3859
+ #. Value.properties.currency.label
3860
+ #: followthemoney/schema/Value.yaml
3861
+ msgid "Currency"
3862
+ msgstr ""
3863
+
3864
+ #. Value.properties.amountUsd.label
3865
+ #: followthemoney/schema/Value.yaml
3866
+ msgid "Amount in USD"
3867
+ msgstr ""
3868
+
3869
+ #. Value.properties.amountEur.label
3870
+ #: followthemoney/schema/Value.yaml
3871
+ msgid "Amount in EUR"
3872
+ msgstr ""
3873
+
3874
+ #. Vehicle.plural
3875
+ #: followthemoney/schema/Vehicle.yaml
3876
+ msgid "Vehicles"
3877
+ msgstr ""
3878
+
3879
+ #. Vehicle.properties.model.label
3880
+ #: followthemoney/schema/Vehicle.yaml
3881
+ msgid "Model"
3882
+ msgstr ""
3883
+
3884
+ #. Vehicle.properties.owner.reverse.label
3885
+ #: followthemoney/schema/Vehicle.yaml
3886
+ msgid "Vehicles owned"
3887
+ msgstr ""
3888
+
3889
+ #. Vehicle.properties.operator.label
3890
+ #: followthemoney/schema/Vehicle.yaml
3891
+ msgid "Operator"
3892
+ msgstr ""
3893
+
3894
+ #. Vehicle.properties.operator.reverse.label
3895
+ #: followthemoney/schema/Vehicle.yaml
3896
+ msgid "Vehicles operated"
3897
+ msgstr ""
3898
+
3899
+ #. Vehicle.properties.buildDate.label
3900
+ #: followthemoney/schema/Vehicle.yaml
3901
+ msgid "Build Date"
3902
+ msgstr ""
3903
+
3904
+ #. Vehicle.properties.registrationDate.label
3905
+ #: followthemoney/schema/Vehicle.yaml
3906
+ msgid "Registration Date"
3907
+ msgstr ""
3908
+
3909
+ #. Vehicle.properties.deregistrationDate.label
3910
+ #: followthemoney/schema/Vehicle.yaml
3911
+ msgid "De-registration Date"
3912
+ msgstr ""
3913
+
3914
+ #. Vessel.label
3915
+ #: followthemoney/schema/Vessel.yaml
3916
+ msgid "Vessel"
3917
+ msgstr ""
3918
+
3919
+ #. Vessel.plural
3920
+ #: followthemoney/schema/Vessel.yaml
3921
+ msgid "Vessels"
3922
+ msgstr ""
3923
+
3924
+ #. Vessel.description
3925
+ #: followthemoney/schema/Vessel.yaml
3926
+ msgid "A boat or ship. Typically flying some sort of national flag.\n"
3927
+ msgstr ""
3928
+
3929
+ #. Vessel.properties.crsNumber.label
3930
+ #: followthemoney/schema/Vessel.yaml
3931
+ msgid "CRS Number"
3932
+ msgstr ""
3933
+
3934
+ #. Vessel.properties.flag.label
3935
+ #: followthemoney/schema/Vessel.yaml
3936
+ msgid "Flag"
3937
+ msgstr ""
3938
+
3939
+ #. Vessel.properties.registrationPort.label
3940
+ #: followthemoney/schema/Vessel.yaml
3941
+ msgid "Port of Registration"
3942
+ msgstr ""
3943
+
3944
+ #. Vessel.properties.navigationArea.label
3945
+ #: followthemoney/schema/Vessel.yaml
3946
+ msgid "Navigation Area"
3947
+ msgstr ""
3948
+
3949
+ #. Vessel.properties.tonnage.label
3950
+ #: followthemoney/schema/Vessel.yaml
3951
+ msgid "Tonnage"
3952
+ msgstr ""
3953
+
3954
+ #. Vessel.properties.grossRegisteredTonnage.label
3955
+ #: followthemoney/schema/Vessel.yaml
3956
+ msgid "Gross Registered Tonnage"
3957
+ msgstr ""
3958
+
3959
+ #. Vessel.properties.nameChangeDate.label
3960
+ #: followthemoney/schema/Vessel.yaml
3961
+ msgid "Date of Name Change"
3962
+ msgstr ""
3963
+
3964
+ #. Vessel.properties.callSign.label
3965
+ #: followthemoney/schema/Vessel.yaml
3966
+ msgid "Call Sign"
3967
+ msgstr ""
3968
+
3969
+ #. Vessel.properties.pastFlags.label
3970
+ #: followthemoney/schema/Vessel.yaml
3971
+ msgid "Past Flags"
3972
+ msgstr ""
3973
+
3974
+ #. Vessel.properties.pastTypes.label
3975
+ #: followthemoney/schema/Vessel.yaml
3976
+ msgid "Past Types"
3977
+ msgstr ""
3978
+
3979
+ #. Vessel.properties.mmsi.label
3980
+ #: followthemoney/schema/Vessel.yaml
3981
+ msgid "MMSI"
3982
+ msgstr ""
3983
+
3984
+ #. Video.label
3985
+ #: followthemoney/schema/Video.yaml
3986
+ msgid "Video"
3987
+ msgstr ""
3988
+
3989
+ #. Video.plural
3990
+ #: followthemoney/schema/Video.yaml
3991
+ msgid "Videos"
3992
+ msgstr ""
3993
+
3994
+ #. Video.properties.duration.description
3995
+ #: followthemoney/schema/Video.yaml
3996
+ msgid "Duration of the video in ms"
3997
+ msgstr ""
3998
+
3999
+ #. Workbook.label
4000
+ #: followthemoney/schema/Workbook.yaml
4001
+ msgid "Workbook"
4002
+ msgstr ""
4003
+
4004
+ #. Workbook.plural
4005
+ #: followthemoney/schema/Workbook.yaml
4006
+ msgid "Workbooks"
4007
+ msgstr ""
4008
+
4009
+ #. Workbook.description
4010
+ #: followthemoney/schema/Workbook.yaml
4011
+ msgid ""
4012
+ "A spreadsheet document, for example from Excel. Each spreadsheet contains"
4013
+ " a set of sheets that hold actual data.\n"
4014
+ msgstr ""
4015
+
4016
+ #: followthemoney/types/checksum.py:19
4017
+ msgid "Checksums"
4018
+ msgstr ""
4019
+
4020
+ #: followthemoney/types/country.py:22
4021
+ msgid "Countries"
4022
+ msgstr ""
4023
+
4024
+ #: followthemoney/types/country.py:29
4025
+ msgid "Global"
4026
+ msgstr ""
4027
+
4028
+ #: followthemoney/types/country.py:30
4029
+ msgid "European Union"
4030
+ msgstr ""
4031
+
4032
+ #: followthemoney/types/country.py:31
4033
+ msgid "United Nations"
4034
+ msgstr ""
4035
+
4036
+ #: followthemoney/types/country.py:32
4037
+ msgid "Zaire"
4038
+ msgstr ""
4039
+
4040
+ #: followthemoney/types/country.py:34
4041
+ msgid "Czech Republic"
4042
+ msgstr ""
4043
+
4044
+ #: followthemoney/types/country.py:35
4045
+ msgid "Kosovo"
4046
+ msgstr ""
4047
+
4048
+ #: followthemoney/types/country.py:36
4049
+ msgid "East Germany"
4050
+ msgstr ""
4051
+
4052
+ #: followthemoney/types/country.py:37
4053
+ msgid "Yugoslavia"
4054
+ msgstr ""
4055
+
4056
+ #: followthemoney/types/country.py:38
4057
+ msgid "Serbia and Montenegro"
4058
+ msgstr ""
4059
+
4060
+ #: followthemoney/types/country.py:39
4061
+ msgid "Czechoslovakia"
4062
+ msgstr ""
4063
+
4064
+ #: followthemoney/types/country.py:40
4065
+ msgid "Soviet Union"
4066
+ msgstr ""
4067
+
4068
+ #: followthemoney/types/country.py:41
4069
+ msgid "Abkhazia (Occupied Georgia)"
4070
+ msgstr ""
4071
+
4072
+ #: followthemoney/types/country.py:42
4073
+ msgid "South Ossetia (Occupied Georgia)"
4074
+ msgstr ""
4075
+
4076
+ #: followthemoney/types/country.py:43
4077
+ msgid "Luhansk (Occupied Ukraine)"
4078
+ msgstr ""
4079
+
4080
+ #: followthemoney/types/country.py:44
4081
+ msgid "Donetsk (Occupied Ukraine)"
4082
+ msgstr ""
4083
+
4084
+ #: followthemoney/types/country.py:45
4085
+ msgid "Crimea (Occupied Ukraine)"
4086
+ msgstr ""
4087
+
4088
+ #: followthemoney/types/country.py:46
4089
+ msgid "Somaliland"
1695
4090
  msgstr ""
1696
4091
 
1697
- #. Person.properties.deathDate.label
1698
- #: followthemoney/schema/Person.yaml
1699
- msgid "Death date"
4092
+ #: followthemoney/types/country.py:47
4093
+ msgid "Northern Cyprus"
1700
4094
  msgstr ""
1701
4095
 
1702
- #. Person.properties.position.label
1703
- #: followthemoney/schema/Person.yaml
1704
- msgid "Position"
4096
+ #: followthemoney/types/country.py:48
4097
+ msgid "Nagorno-Karabakh"
1705
4098
  msgstr ""
1706
4099
 
1707
- #. Person.properties.nationality.label
1708
- #: followthemoney/schema/Person.yaml
1709
- msgid "Nationality"
4100
+ #: followthemoney/types/country.py:49
4101
+ msgid "Kurdistan"
1710
4102
  msgstr ""
1711
4103
 
1712
- #. PublicBody.label
1713
- #: followthemoney/schema/PublicBody.yaml
1714
- msgid "Public body"
4104
+ #: followthemoney/types/country.py:50
4105
+ msgid "Tibet"
1715
4106
  msgstr ""
1716
4107
 
1717
- #. PublicBody.plural
1718
- #: followthemoney/schema/PublicBody.yaml
1719
- msgid "Public bodies"
4108
+ #: followthemoney/types/country.py:51
4109
+ msgid "Sark"
1720
4110
  msgstr ""
1721
4111
 
1722
- #. RealEstate.label
1723
- #: followthemoney/schema/RealEstate.yaml
1724
- msgid "Real estate"
4112
+ #: followthemoney/types/country.py:52
4113
+ msgid "Wales"
1725
4114
  msgstr ""
1726
4115
 
1727
- #. RealEstate.plural
1728
- #: followthemoney/schema/RealEstate.yaml
1729
- msgid "Real estates"
4116
+ #: followthemoney/types/country.py:53
4117
+ msgid "Scotland"
1730
4118
  msgstr ""
1731
4119
 
1732
- #. RealEstate.properties.latitude.label
1733
- #: followthemoney/schema/RealEstate.yaml
1734
- msgid "Latitude"
4120
+ #: followthemoney/types/country.py:54
4121
+ msgid "Northern Ireland"
1735
4122
  msgstr ""
1736
4123
 
1737
- #. RealEstate.properties.longitude.label
1738
- #: followthemoney/schema/RealEstate.yaml
1739
- msgid "Longitude"
4124
+ #: followthemoney/types/country.py:55
4125
+ msgid "Transnistria (PMR)"
1740
4126
  msgstr ""
1741
4127
 
1742
- #. RealEstate.properties.censusBlock.label
1743
- #: followthemoney/schema/RealEstate.yaml
1744
- msgid "Census block"
4128
+ #: followthemoney/types/country.py:56
4129
+ msgid "Kashmir"
1745
4130
  msgstr ""
1746
4131
 
1747
- #. RealEstate.properties.cadastralCode.label
1748
- #: followthemoney/schema/RealEstate.yaml
1749
- msgid "Cadastral code"
4132
+ #: followthemoney/types/date.py:27
4133
+ msgid "Dates"
1750
4134
  msgstr ""
1751
4135
 
1752
- #. RealEstate.properties.titleNumber.label
1753
- #: followthemoney/schema/RealEstate.yaml
1754
- msgid "Title number"
4136
+ #: followthemoney/types/email.py:25
4137
+ msgid "E-Mail Address"
1755
4138
  msgstr ""
1756
4139
 
1757
- #. RealEstate.properties.tenure.label
1758
- #: followthemoney/schema/RealEstate.yaml
1759
- msgid "Tenure"
4140
+ #: followthemoney/types/email.py:26
4141
+ msgid "E-Mail Addresses"
1760
4142
  msgstr ""
1761
4143
 
1762
- #. RealEstate.properties.encumbrance.label
1763
- #: followthemoney/schema/RealEstate.yaml
1764
- msgid "Encumbrance"
4144
+ #: followthemoney/types/entity.py:28
4145
+ msgid "Entities"
1765
4146
  msgstr ""
1766
4147
 
1767
- #. RealEstate.properties.encumbrance.description
1768
- #: followthemoney/schema/RealEstate.yaml
1769
- msgid ""
1770
- "An encumbrance is a right to, interest in, or legal liability on real "
1771
- "property that does not prohibit passing title to the property but that "
1772
- "diminishes its value.\n"
4148
+ #: followthemoney/types/entity.py:64
4149
+ #, python-format
4150
+ msgid "Self-relationship (%s): %s"
1773
4151
  msgstr ""
1774
4152
 
1775
- #. RealEstate.properties.propertyType.label
1776
- #: followthemoney/schema/RealEstate.yaml
1777
- msgid "Property type"
4153
+ #: followthemoney/types/gender.py:41
4154
+ msgid "Genders"
1778
4155
  msgstr ""
1779
4156
 
1780
- #. RealEstate.properties.landType.label
1781
- #: followthemoney/schema/RealEstate.yaml
1782
- msgid "Land type"
4157
+ #: followthemoney/types/gender.py:47
4158
+ msgid "male"
1783
4159
  msgstr ""
1784
4160
 
1785
- #. RealEstate.properties.createDate.label
1786
- #: followthemoney/schema/RealEstate.yaml
1787
- msgid "Record date"
4161
+ #: followthemoney/types/gender.py:48
4162
+ msgid "female"
1788
4163
  msgstr ""
1789
4164
 
1790
- #. Relationship.label
1791
- #. Relationship.properties.relationship.label
1792
- #: followthemoney/schema/Relationship.yaml
1793
- msgid "Relationship"
4165
+ #: followthemoney/types/gender.py:49
4166
+ msgid "other"
1794
4167
  msgstr ""
1795
4168
 
1796
- #. Relationship.description
1797
- #: followthemoney/schema/Relationship.yaml
1798
- msgid "Person-to-person relationship"
4169
+ #: followthemoney/types/iban.py:24
4170
+ msgid "IBANs"
1799
4171
  msgstr ""
1800
4172
 
1801
- #. Relationship.properties.person.description
1802
- #: followthemoney/schema/Relationship.yaml
1803
- msgid "The subject of the familial relation."
4173
+ #: followthemoney/types/identifier.py:25
4174
+ msgid "Identifier"
1804
4175
  msgstr ""
1805
4176
 
1806
- #. Relationship.properties.person.reverse.label
1807
- #: followthemoney/schema/Relationship.yaml
1808
- msgid "Related to"
4177
+ #: followthemoney/types/identifier.py:26
4178
+ msgid "Identifiers"
1809
4179
  msgstr ""
1810
4180
 
1811
- #. Relationship.properties.relationship.description
1812
- #: followthemoney/schema/Relationship.yaml
1813
- msgid ""
1814
- "Nature of the relationship, from the *person's* perspective eg. 'mother',"
1815
- " where 'relative' is mother of 'person'."
4181
+ #: followthemoney/types/ip.py:19
4182
+ msgid "IP-Address"
1816
4183
  msgstr ""
1817
4184
 
1818
- #. Relationship.properties.supportingDocumentType.label
1819
- #: followthemoney/schema/Relationship.yaml
1820
- msgid "Supporting document"
4185
+ #: followthemoney/types/ip.py:20
4186
+ msgid "IP-Addresses"
1821
4187
  msgstr ""
1822
4188
 
1823
- #. Relationship.properties.supportingDocumentType.description
1824
- #: followthemoney/schema/Relationship.yaml
1825
- msgid ""
1826
- "Eg. birth certificate, marriage license. This is *not* just the data "
1827
- "source."
4189
+ #: followthemoney/types/json.py:19 followthemoney/types/json.py:20
4190
+ msgid "Nested data"
1828
4191
  msgstr ""
1829
4192
 
1830
- #. Relationship.properties.supportingDocumentNumber.label
1831
- #: followthemoney/schema/Relationship.yaml
1832
- msgid "Supporting document number"
4193
+ #: followthemoney/types/language.py:23
4194
+ msgid "Languages"
1833
4195
  msgstr ""
1834
4196
 
1835
- #. Representation.label
1836
- #: followthemoney/schema/Representation.yaml
1837
- msgid "Representation"
4197
+ #: followthemoney/types/language.py:98
4198
+ msgid "Arabic"
1838
4199
  msgstr ""
1839
4200
 
1840
- #. Representation.description
1841
- #: followthemoney/schema/Representation.yaml
1842
- msgid ""
1843
- "A mediatory, intermediary, middleman, or broker acting on behalf of a "
1844
- "legal entity."
4201
+ #: followthemoney/types/language.py:99
4202
+ msgid "Norwegian"
1845
4203
  msgstr ""
1846
4204
 
1847
- #. Representation.properties.agent.label
1848
- #: followthemoney/schema/Representation.yaml
1849
- msgid "Agent"
4205
+ #: followthemoney/types/language.py:100
4206
+ msgid "Montenegrin"
1850
4207
  msgstr ""
1851
4208
 
1852
- #. Representation.properties.agent.reverse.label
1853
- #: followthemoney/schema/Representation.yaml
1854
- msgid "Agency clients"
4209
+ #: followthemoney/types/mimetype.py:24
4210
+ msgid "MIME-Type"
1855
4211
  msgstr ""
1856
4212
 
1857
- #. Representation.properties.client.label
1858
- #: followthemoney/schema/Representation.yaml
1859
- msgid "Client"
4213
+ #: followthemoney/types/mimetype.py:25
4214
+ msgid "MIME-Types"
1860
4215
  msgstr ""
1861
4216
 
1862
- #. Representation.properties.client.reverse.label
1863
- #: followthemoney/schema/Representation.yaml
1864
- msgid "Agents"
4217
+ #: followthemoney/types/name.py:28
4218
+ msgid "Names"
1865
4219
  msgstr ""
1866
4220
 
1867
- #. Sanction.label
1868
- #: followthemoney/schema/Sanction.yaml
1869
- msgid "Sanction"
4221
+ #: followthemoney/types/number.py:18
4222
+ msgid "Number"
1870
4223
  msgstr ""
1871
4224
 
1872
- #. Sanction.plural
1873
- #. Sanction.properties.entity.reverse.label
1874
- #: followthemoney/schema/Sanction.yaml
1875
- msgid "Sanctions"
4225
+ #: followthemoney/types/number.py:19
4226
+ msgid "Numbers"
1876
4227
  msgstr ""
1877
4228
 
1878
- #. Sanction.properties.entity.label
1879
- #: followthemoney/schema/Sanction.yaml
1880
- msgid "Sanctioned entity"
4229
+ #: followthemoney/types/phone.py:36
4230
+ msgid "Phone numbers"
1881
4231
  msgstr ""
1882
4232
 
1883
- #. Sanction.properties.authority.label
1884
- #: followthemoney/schema/Sanction.yaml
1885
- msgid "Sanctioning authority"
4233
+ #: followthemoney/types/string.py:10
4234
+ msgid "Label"
1886
4235
  msgstr ""
1887
4236
 
1888
- #. Sanction.properties.authority.reverse.label
1889
- #: followthemoney/schema/Sanction.yaml
1890
- msgid "Sanctioned entities"
4237
+ #: followthemoney/types/string.py:11
4238
+ msgid "Labels"
1891
4239
  msgstr ""
1892
4240
 
1893
- #. Sanction.properties.program.label
1894
- #: followthemoney/schema/Sanction.yaml
1895
- msgid "Sanctions program"
4241
+ #: followthemoney/types/string.py:26
4242
+ msgid "Texts"
1896
4243
  msgstr ""
1897
4244
 
1898
- #. Sanction.properties.sanctionStatus.label
1899
- #: followthemoney/schema/Sanction.yaml
1900
- msgid "Sanction status"
4245
+ #: followthemoney/types/string.py:41
4246
+ msgid "HTMLs"
1901
4247
  msgstr ""
1902
4248
 
1903
- #. Sanction.properties.sanctionDuration.label
1904
- #: followthemoney/schema/Sanction.yaml
1905
- msgid "Sanction duration"
4249
+ #: followthemoney/types/topic.py:21
4250
+ msgid "Topic"
1906
4251
  msgstr ""
1907
4252
 
1908
- #. Sanction.properties.sanctionReason.label
1909
- #: followthemoney/schema/Sanction.yaml
1910
- msgid "Sanction reason"
4253
+ #: followthemoney/types/topic.py:27
4254
+ msgid "Crime"
1911
4255
  msgstr ""
1912
4256
 
1913
- #. Sanction.properties.sanctionOccurrence.label
1914
- #: followthemoney/schema/Sanction.yaml
1915
- msgid "Sanction occurrence"
4257
+ #: followthemoney/types/topic.py:28
4258
+ msgid "Fraud"
1916
4259
  msgstr ""
1917
4260
 
1918
- #. TaxRoll.label
1919
- #: followthemoney/schema/TaxRoll.yaml
1920
- msgid "Tax Roll"
4261
+ #: followthemoney/types/topic.py:29
4262
+ msgid "Cybercrime"
1921
4263
  msgstr ""
1922
4264
 
1923
- #. TaxRoll.plural
1924
- #: followthemoney/schema/TaxRoll.yaml
1925
- msgid "Tax Rolls"
4265
+ #: followthemoney/types/topic.py:30
4266
+ msgid "Financial crime"
1926
4267
  msgstr ""
1927
4268
 
1928
- #. TaxRoll.properties.income.label
1929
- #: followthemoney/schema/TaxRoll.yaml
1930
- msgid "Registered income"
4269
+ #: followthemoney/types/topic.py:31
4270
+ msgid "Environmental violations"
1931
4271
  msgstr ""
1932
4272
 
1933
- #. TaxRoll.properties.taxPaid.label
1934
- #: followthemoney/schema/TaxRoll.yaml
1935
- msgid "Amount of tax paid"
4273
+ #: followthemoney/types/topic.py:32
4274
+ msgid "Theft"
1936
4275
  msgstr ""
1937
4276
 
1938
- #. TaxRoll.properties.wealth.label
1939
- #: followthemoney/schema/TaxRoll.yaml
1940
- msgid "Registered wealth"
4277
+ #: followthemoney/types/topic.py:33
4278
+ msgid "War crimes"
1941
4279
  msgstr ""
1942
4280
 
1943
- #. Thing.properties.sameAs.label
1944
- #: followthemoney/schema/Thing.yaml
1945
- msgid "Same as"
4281
+ #: followthemoney/types/topic.py:34
4282
+ msgid "Criminal leadership"
1946
4283
  msgstr ""
1947
4284
 
1948
- #. Thing.properties.alias.label
1949
- #: followthemoney/schema/Thing.yaml
1950
- msgid "Other name"
4285
+ #: followthemoney/types/topic.py:35
4286
+ msgid "Terrorism"
1951
4287
  msgstr ""
1952
4288
 
1953
- #. Thing.properties.previousName.label
1954
- #: followthemoney/schema/Thing.yaml
1955
- msgid "Previous name"
4289
+ #: followthemoney/types/topic.py:36
4290
+ msgid "Trafficking"
1956
4291
  msgstr ""
1957
4292
 
1958
- #. Thing.properties.weakAlias.label
1959
- #: followthemoney/schema/Thing.yaml
1960
- msgid "Weak aliass"
4293
+ #: followthemoney/types/topic.py:37
4294
+ msgid "Drug trafficking"
1961
4295
  msgstr ""
1962
4296
 
1963
- #. Thing.properties.sourceUrl.label
1964
- #: followthemoney/schema/Thing.yaml
1965
- msgid "Source link"
4297
+ #: followthemoney/types/topic.py:38
4298
+ msgid "Human trafficking"
1966
4299
  msgstr ""
1967
4300
 
1968
- #. Thing.properties.alephUrl.label
1969
- #: followthemoney/schema/Thing.yaml
1970
- msgid "Federated Aleph link"
4301
+ #: followthemoney/types/topic.py:39
4302
+ msgid "Wanted"
1971
4303
  msgstr ""
1972
4304
 
1973
- #. Thing.properties.keywords.label
1974
- #: followthemoney/schema/Thing.yaml
1975
- msgid "Keywords"
4305
+ #: followthemoney/types/topic.py:40
4306
+ msgid "Offshore"
1976
4307
  msgstr ""
1977
4308
 
1978
- #. Thing.properties.address.label
1979
- #: followthemoney/schema/Thing.yaml
1980
- msgid "Address"
4309
+ #: followthemoney/types/topic.py:41
4310
+ msgid "Shell company"
1981
4311
  msgstr ""
1982
4312
 
1983
- #. Thing.properties.program.label
1984
- #: followthemoney/schema/Thing.yaml
1985
- msgid "Program"
4313
+ #: followthemoney/types/topic.py:42
4314
+ msgid "Public listed company"
1986
4315
  msgstr ""
1987
4316
 
1988
- #. Thing.properties.notes.label
1989
- #: followthemoney/schema/Thing.yaml
1990
- msgid "Notes"
4317
+ #: followthemoney/types/topic.py:43
4318
+ msgid "Disqualified"
1991
4319
  msgstr ""
1992
4320
 
1993
- #. UnknownLink.label
1994
- #: followthemoney/schema/UnknownLink.yaml
1995
- msgid "Link"
4321
+ #: followthemoney/types/topic.py:44
4322
+ msgid "Government"
1996
4323
  msgstr ""
1997
4324
 
1998
- #. UnknownLink.properties.subject.label
1999
- #: followthemoney/schema/UnknownLink.yaml
2000
- msgid "Subject"
4325
+ #: followthemoney/types/topic.py:45
4326
+ msgid "National government"
2001
4327
  msgstr ""
2002
4328
 
2003
- #. UnknownLink.properties.subject.reverse.label
2004
- #: followthemoney/schema/UnknownLink.yaml
2005
- msgid "Linked to"
4329
+ #: followthemoney/types/topic.py:46
4330
+ msgid "State government"
2006
4331
  msgstr ""
2007
4332
 
2008
- #. UnknownLink.properties.object.label
2009
- #: followthemoney/schema/UnknownLink.yaml
2010
- msgid "Object"
4333
+ #: followthemoney/types/topic.py:47
4334
+ msgid "Municipal government"
2011
4335
  msgstr ""
2012
4336
 
2013
- #. UnknownLink.properties.object.reverse.label
2014
- #: followthemoney/schema/UnknownLink.yaml
2015
- msgid "Linked from"
4337
+ #: followthemoney/types/topic.py:48
4338
+ msgid "State-owned enterprise"
2016
4339
  msgstr ""
2017
4340
 
2018
- #. Value.label
2019
- #: followthemoney/schema/Value.yaml
2020
- msgid "Value"
4341
+ #: followthemoney/types/topic.py:49
4342
+ msgid "Intergovernmental organization"
2021
4343
  msgstr ""
2022
4344
 
2023
- #. Value.properties.amount.label
2024
- #: followthemoney/schema/Value.yaml
2025
- msgid "Amount"
4345
+ #: followthemoney/types/topic.py:50
4346
+ msgid "Head of government or state"
2026
4347
  msgstr ""
2027
4348
 
2028
- #. Value.properties.currency.label
2029
- #: followthemoney/schema/Value.yaml
2030
- msgid "Currency"
4349
+ #: followthemoney/types/topic.py:51
4350
+ msgid "Civil service"
2031
4351
  msgstr ""
2032
4352
 
2033
- #. Value.properties.amountUsd.label
2034
- #: followthemoney/schema/Value.yaml
2035
- msgid "Amount in USD"
4353
+ #: followthemoney/types/topic.py:52
4354
+ msgid "Executive branch of government"
2036
4355
  msgstr ""
2037
4356
 
2038
- #. Value.properties.amountEur.label
2039
- #: followthemoney/schema/Value.yaml
2040
- msgid "Amount in EUR"
4357
+ #: followthemoney/types/topic.py:53
4358
+ msgid "Legislative branch of government"
2041
4359
  msgstr ""
2042
4360
 
2043
- #. Vehicle.label
2044
- #: followthemoney/schema/Vehicle.yaml
2045
- msgid "Vehicle"
4361
+ #: followthemoney/types/topic.py:54
4362
+ msgid "Judicial branch of government"
2046
4363
  msgstr ""
2047
4364
 
2048
- #. Vehicle.plural
2049
- #: followthemoney/schema/Vehicle.yaml
2050
- msgid "Vehicles"
4365
+ #: followthemoney/types/topic.py:55
4366
+ msgid "Security services"
2051
4367
  msgstr ""
2052
4368
 
2053
- #. Vehicle.properties.registrationNumber.label
2054
- #: followthemoney/schema/Vehicle.yaml
2055
- msgid "Registration Number"
4369
+ #: followthemoney/types/topic.py:56
4370
+ msgid "Central banking and financial integrity"
2056
4371
  msgstr ""
2057
4372
 
2058
- #. Vehicle.properties.model.label
2059
- #: followthemoney/schema/Vehicle.yaml
2060
- msgid "Model"
4373
+ #: followthemoney/types/topic.py:57
4374
+ msgid "Financial services"
2061
4375
  msgstr ""
2062
4376
 
2063
- #. Vehicle.properties.operator.label
2064
- #: followthemoney/schema/Vehicle.yaml
2065
- msgid "Operator"
4377
+ #: followthemoney/types/topic.py:59
4378
+ msgid "Fund"
2066
4379
  msgstr ""
2067
4380
 
2068
- #. Vehicle.properties.buildDate.label
2069
- #: followthemoney/schema/Vehicle.yaml
2070
- msgid "Build Date"
4381
+ #: followthemoney/types/topic.py:60
4382
+ msgid "Financial advisor"
2071
4383
  msgstr ""
2072
4384
 
2073
- #. Vehicle.properties.registrationDate.label
2074
- #: followthemoney/schema/Vehicle.yaml
2075
- msgid "Registration Date"
4385
+ #: followthemoney/types/topic.py:61
4386
+ msgid "Regulator action"
2076
4387
  msgstr ""
2077
4388
 
2078
- #. Vessel.label
2079
- #: followthemoney/schema/Vessel.yaml
2080
- msgid "Vessel"
4389
+ #: followthemoney/types/topic.py:62
4390
+ msgid "Regulator warning"
2081
4391
  msgstr ""
2082
4392
 
2083
- #. Vessel.plural
2084
- #: followthemoney/schema/Vessel.yaml
2085
- msgid "Vessels"
4393
+ #: followthemoney/types/topic.py:63
4394
+ msgid "Politician"
2086
4395
  msgstr ""
2087
4396
 
2088
- #. Vessel.properties.imoNumber.label
2089
- #: followthemoney/schema/Vessel.yaml
2090
- msgid "IMO Number"
4397
+ #: followthemoney/types/topic.py:64
4398
+ msgid "Non-PEP"
2091
4399
  msgstr ""
2092
4400
 
2093
- #. Vessel.properties.crsNumber.label
2094
- #: followthemoney/schema/Vessel.yaml
2095
- msgid "CRS Number"
4401
+ #: followthemoney/types/topic.py:65
4402
+ msgid "Close Associate"
2096
4403
  msgstr ""
2097
4404
 
2098
- #. Vessel.properties.flag.label
2099
- #: followthemoney/schema/Vessel.yaml
2100
- msgid "Flag"
4405
+ #: followthemoney/types/topic.py:66
4406
+ msgid "Judge"
2101
4407
  msgstr ""
2102
4408
 
2103
- #. Vessel.properties.registrationPort.label
2104
- #: followthemoney/schema/Vessel.yaml
2105
- msgid "Port of Registration"
4409
+ #: followthemoney/types/topic.py:67
4410
+ msgid "Civil servant"
2106
4411
  msgstr ""
2107
4412
 
2108
- #. Vessel.properties.navigationArea.label
2109
- #: followthemoney/schema/Vessel.yaml
2110
- msgid "Navigation Area"
4413
+ #: followthemoney/types/topic.py:68
4414
+ msgid "Diplomat"
2111
4415
  msgstr ""
2112
4416
 
2113
- #. Vessel.properties.tonnage.label
2114
- #: followthemoney/schema/Vessel.yaml
2115
- msgid "Tonnage"
4417
+ #: followthemoney/types/topic.py:69
4418
+ msgid "Lawyer"
2116
4419
  msgstr ""
2117
4420
 
2118
- #. Vessel.properties.grossRegisteredTonnage.label
2119
- #: followthemoney/schema/Vessel.yaml
2120
- msgid "Gross Registered Tonnage"
4421
+ #: followthemoney/types/topic.py:70
4422
+ msgid "Accountant"
2121
4423
  msgstr ""
2122
4424
 
2123
- #. Vessel.properties.nameChangeDate.label
2124
- #: followthemoney/schema/Vessel.yaml
2125
- msgid "Date of Name Change"
4425
+ #: followthemoney/types/topic.py:71
4426
+ msgid "Spy"
2126
4427
  msgstr ""
2127
4428
 
2128
- #. Vessel.properties.callSign.label
2129
- #: followthemoney/schema/Vessel.yaml
2130
- msgid "Call Sign"
4429
+ #: followthemoney/types/topic.py:72
4430
+ msgid "Oligarch"
2131
4431
  msgstr ""
2132
4432
 
2133
- #. Vessel.properties.pastNames.label
2134
- #: followthemoney/schema/Vessel.yaml
2135
- msgid "Past Names"
4433
+ #: followthemoney/types/topic.py:73
4434
+ msgid "Journalist"
2136
4435
  msgstr ""
2137
4436
 
2138
- #. Vessel.properties.pastFlags.label
2139
- #: followthemoney/schema/Vessel.yaml
2140
- msgid "Past Flags"
4437
+ #: followthemoney/types/topic.py:74
4438
+ msgid "Activist"
2141
4439
  msgstr ""
2142
4440
 
2143
- #. Vessel.properties.pastTypes.label
2144
- #: followthemoney/schema/Vessel.yaml
2145
- msgid "Past Types"
4441
+ #: followthemoney/types/topic.py:75
4442
+ msgid "Lobbyist"
2146
4443
  msgstr ""
2147
4444
 
2148
- #. Vessel.properties.mmsi.label
2149
- #: followthemoney/schema/Vessel.yaml
2150
- msgid "MMSI"
4445
+ #: followthemoney/types/topic.py:76
4446
+ msgid "Political party"
2151
4447
  msgstr ""
2152
4448
 
2153
- #: followthemoney/types/country.py:24
2154
- msgid "Global"
4449
+ #: followthemoney/types/topic.py:77
4450
+ msgid "Union"
2155
4451
  msgstr ""
2156
4452
 
2157
- #: followthemoney/types/country.py:25
2158
- msgid "European Union"
4453
+ #: followthemoney/types/topic.py:79
4454
+ msgid "Military"
2159
4455
  msgstr ""
2160
4456
 
2161
- #: followthemoney/types/country.py:26
2162
- msgid "Kosovo"
4457
+ #: followthemoney/types/topic.py:80
4458
+ msgid "Frozen asset"
2163
4459
  msgstr ""
2164
4460
 
2165
- #: followthemoney/types/country.py:27
2166
- msgid "Yugoslavia"
4461
+ #: followthemoney/types/topic.py:81
4462
+ msgid "Sanctioned entity"
2167
4463
  msgstr ""
2168
4464
 
2169
- #: followthemoney/types/country.py:28
2170
- msgid "Serbia and Montenegro"
4465
+ #: followthemoney/types/topic.py:82
4466
+ msgid "Sanction-linked entity"
2171
4467
  msgstr ""
2172
4468
 
2173
- #: followthemoney/types/country.py:29
2174
- msgid "Soviet Union"
4469
+ #: followthemoney/types/topic.py:83
4470
+ msgid "Counter-sanctioned entity"
2175
4471
  msgstr ""
2176
4472
 
2177
- #: followthemoney/types/country.py:30
2178
- msgid "Abkhazia"
4473
+ #: followthemoney/types/topic.py:84
4474
+ msgid "Export controlled"
2179
4475
  msgstr ""
2180
4476
 
2181
- #: followthemoney/types/country.py:31
2182
- msgid "South Ossetia"
4477
+ #: followthemoney/types/topic.py:85
4478
+ msgid "Trade risk"
2183
4479
  msgstr ""
2184
4480
 
2185
- #: followthemoney/types/country.py:32
2186
- msgid "Somaliland"
4481
+ #: followthemoney/types/topic.py:86
4482
+ msgid "Debarred entity"
2187
4483
  msgstr ""
2188
4484
 
2189
- #: followthemoney/types/country.py:33
2190
- msgid "Wales"
4485
+ #: followthemoney/types/topic.py:87
4486
+ msgid "Person of interest"
2191
4487
  msgstr ""
2192
4488
 
2193
- #: followthemoney/types/country.py:34
2194
- msgid "Scotland"
4489
+ #: followthemoney/types/url.py:22
4490
+ msgid "URL"
2195
4491
  msgstr ""
2196
4492
 
2197
- #: followthemoney/types/country.py:35
2198
- msgid "Transnistria"
4493
+ #: followthemoney/types/url.py:23
4494
+ msgid "URLs"
2199
4495
  msgstr ""
2200
4496