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