followthemoney 3.5.0__py2.py3-none-any.whl → 3.5.2__py2.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.

Potentially problematic release.


This version of followthemoney might be problematic. Click here for more details.

@@ -3,7 +3,7 @@ import os
3
3
  from followthemoney.model import Model
4
4
  from followthemoney.util import set_model_locale
5
5
 
6
- __version__ = "3.5.0"
6
+ __version__ = "3.5.2"
7
7
 
8
8
 
9
9
  model_path = os.path.dirname(__file__)
@@ -55,10 +55,7 @@ class SQLSource(Source):
55
55
  if database is None:
56
56
  raise InvalidMapping("No database in SQL mapping!")
57
57
  self.database_uri = cast(str, os.path.expandvars(database))
58
- kwargs = {}
59
- if self.database_uri.lower().startswith("postgres"):
60
- kwargs["server_side_cursors"] = True
61
- self.engine = create_engine(self.database_uri, poolclass=NullPool, **kwargs) # type: ignore
58
+ self.engine = create_engine(self.database_uri, poolclass=NullPool)
62
59
  self.meta = MetaData()
63
60
 
64
61
  tables = keys_values(data, "table", "tables")
@@ -104,7 +101,7 @@ class SQLSource(Source):
104
101
  q = self.compose_query()
105
102
  log.info("Query: %s", q)
106
103
  with self.engine.connect() as conn:
107
- rp = conn.execute(q)
104
+ rp = conn.execution_options(stream_results=True).execute(q)
108
105
  while True:
109
106
  rows = rp.fetchmany(size=DATA_PAGE)
110
107
  if not len(rows):
@@ -124,4 +121,4 @@ class SQLSource(Source):
124
121
  q = self.apply_filters(q)
125
122
  with self.engine.connect() as conn:
126
123
  rp = conn.execute(q)
127
- return int(rp.scalar())
124
+ return int(rp.scalar() or 0)
@@ -28,7 +28,7 @@ Debt:
28
28
  type: entity
29
29
  range: LegalEntity
30
30
  creditor:
31
- label: "creditor"
31
+ label: "Creditor"
32
32
  reverse:
33
33
  name: debtCreditor
34
34
  label: "Credits"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PROJECT VERSION\n"
13
13
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
14
- "POT-Creation-Date: 2023-06-23 10:41+0200\n"
14
+ "POT-Creation-Date: 2023-08-10 19:38+0200\n"
15
15
  "PO-Revision-Date: 2021-05-07 13:11+0000\n"
16
16
  "Last-Translator: pudo <friedrich@pudo.org>, 2021\n"
17
17
  "Language-Team: Arabic (https://app.transifex.com/aleph/teams/76591/ar/)\n"
@@ -22,11 +22,11 @@ msgstr ""
22
22
  "Language: ar\n"
23
23
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
24
24
 
25
- #: followthemoney/property.py:166
25
+ #: followthemoney/property.py:170
26
26
  msgid "Property cannot be written"
27
27
  msgstr "لا يمكن كتابة اسم الملكية"
28
28
 
29
- #: followthemoney/property.py:169
29
+ #: followthemoney/property.py:173
30
30
  msgid "Invalid value"
31
31
  msgstr "قيمة غير صحيحة"
32
32
 
@@ -34,21 +34,21 @@ msgstr "قيمة غير صحيحة"
34
34
  msgid "No schema for entity."
35
35
  msgstr "لا يوجد مخطط للكيان"
36
36
 
37
- #: followthemoney/proxy.py:115
37
+ #: followthemoney/proxy.py:119
38
38
  #, python-format
39
39
  msgid "Unknown property (%s): %s"
40
40
  msgstr "ملكية غير معروفة (1%s):%s"
41
41
 
42
- #: followthemoney/proxy.py:188
42
+ #: followthemoney/proxy.py:191
43
43
  #, python-format
44
44
  msgid "Stub property (%s): %s"
45
45
  msgstr "الملكية المتبقية%s:%s"
46
46
 
47
- #: followthemoney/schema.py:373
47
+ #: followthemoney/schema.py:383
48
48
  msgid "Required"
49
49
  msgstr "مطلوب"
50
50
 
51
- #: followthemoney/schema.py:377
51
+ #: followthemoney/schema.py:387
52
52
  msgid "Entity validation failed"
53
53
  msgstr "فشل التحقق من صحة الكيان"
54
54
 
@@ -1111,11 +1111,13 @@ msgstr "عدد الجوائز"
1111
1111
  #. CourtCase.properties.status.label
1112
1112
  #. Interest.properties.status.label
1113
1113
  #. LegalEntity.properties.status.label
1114
+ #. Occupancy.properties.status.label
1114
1115
  #. Project.properties.status.label
1115
1116
  #. Sanction.properties.status.label
1116
1117
  #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
1117
1118
  #: followthemoney/schema/Interest.yaml followthemoney/schema/LegalEntity.yaml
1118
- #: followthemoney/schema/Project.yaml followthemoney/schema/Sanction.yaml
1119
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Project.yaml
1120
+ #: followthemoney/schema/Sanction.yaml
1119
1121
  msgid "Status"
1120
1122
  msgstr "الحالة"
1121
1123
 
@@ -1387,8 +1389,8 @@ msgstr "المدين"
1387
1389
 
1388
1390
  #. Debt.properties.creditor.label
1389
1391
  #: followthemoney/schema/Debt.yaml
1390
- msgid "creditor"
1391
- msgstr "دائن"
1392
+ msgid "Creditor"
1393
+ msgstr ""
1392
1394
 
1393
1395
  #. Debt.properties.creditor.reverse.label
1394
1396
  #: followthemoney/schema/Debt.yaml
@@ -1419,10 +1421,12 @@ msgstr "مخرج"
1419
1421
  #. Directorship.properties.organization.label
1420
1422
  #. Membership.properties.organization.label
1421
1423
  #. Organization.label
1424
+ #. Position.properties.organization.label
1422
1425
  #. Post.properties.organization.label
1423
1426
  #: followthemoney/schema/Directorship.yaml
1424
1427
  #: followthemoney/schema/Membership.yaml
1425
- #: followthemoney/schema/Organization.yaml followthemoney/schema/Post.yaml
1428
+ #: followthemoney/schema/Organization.yaml followthemoney/schema/Position.yaml
1429
+ #: followthemoney/schema/Post.yaml
1426
1430
  msgid "Organization"
1427
1431
  msgstr "منظمة"
1428
1432
 
@@ -1590,11 +1594,21 @@ msgstr "حدث خطأ في المعالجة"
1590
1594
 
1591
1595
  #. Document.properties.processingAgent.label
1592
1596
  #: followthemoney/schema/Document.yaml
1597
+ msgid "Processing agent"
1598
+ msgstr ""
1599
+
1600
+ #. Document.properties.processingAgent.description
1601
+ #: followthemoney/schema/Document.yaml
1593
1602
  msgid "Name and version of the processing agent used to process the Document"
1594
1603
  msgstr ""
1595
1604
 
1596
1605
  #. Document.properties.processedAt.label
1597
1606
  #: followthemoney/schema/Document.yaml
1607
+ msgid "Processed at"
1608
+ msgstr ""
1609
+
1610
+ #. Document.properties.processedAt.description
1611
+ #: followthemoney/schema/Document.yaml
1598
1612
  msgid "Date and time of the most recent ingestion of the Document"
1599
1613
  msgstr ""
1600
1614
 
@@ -2366,7 +2380,8 @@ msgid "The date the legal entity was incorporated"
2366
2380
  msgstr "تاريخ تأسيس الكيان القانوني"
2367
2381
 
2368
2382
  #. LegalEntity.properties.dissolutionDate.label
2369
- #: followthemoney/schema/LegalEntity.yaml
2383
+ #. Position.properties.dissolutionDate.label
2384
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/schema/Position.yaml
2370
2385
  msgid "Dissolution date"
2371
2386
  msgstr "تاريخ حلّ / تصفية الشركة"
2372
2387
 
@@ -2698,6 +2713,44 @@ msgstr "ملاحظات"
2698
2713
  msgid "An annotation that applies to a document or entity.\n"
2699
2714
  msgstr ""
2700
2715
 
2716
+ #. Occupancy.label
2717
+ #: followthemoney/schema/Occupancy.yaml
2718
+ msgid "Occupancy"
2719
+ msgstr ""
2720
+
2721
+ #. Occupancy.plural
2722
+ #. Occupancy.properties.post.reverse.label
2723
+ #: followthemoney/schema/Occupancy.yaml
2724
+ msgid "Occupancies"
2725
+ msgstr ""
2726
+
2727
+ #. Occupancy.description
2728
+ #: followthemoney/schema/Occupancy.yaml
2729
+ msgid ""
2730
+ "The occupation of a position by a person for a specific period of time.\n"
2731
+ msgstr ""
2732
+
2733
+ #. Occupancy.edge.label
2734
+ #: followthemoney/schema/Occupancy.yaml
2735
+ msgid "holds"
2736
+ msgstr ""
2737
+
2738
+ #. Occupancy.properties.holder.label
2739
+ #. Post.properties.holder.label
2740
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Post.yaml
2741
+ msgid "Holder"
2742
+ msgstr ""
2743
+
2744
+ #. Occupancy.properties.holder.reverse.label
2745
+ #: followthemoney/schema/Occupancy.yaml
2746
+ msgid "Position Occupancies"
2747
+ msgstr ""
2748
+
2749
+ #. Occupancy.properties.post.label
2750
+ #: followthemoney/schema/Occupancy.yaml
2751
+ msgid "Position occupied"
2752
+ msgstr ""
2753
+
2701
2754
  #. Organization.plural
2702
2755
  #: followthemoney/schema/Organization.yaml
2703
2756
  msgid "Organizations"
@@ -3006,13 +3059,24 @@ msgstr "اسم، فئة"
3006
3059
  msgid "Last name"
3007
3060
  msgstr "الاسم الأخير"
3008
3061
 
3062
+ #. Person.properties.nameSuffix.label
3063
+ #: followthemoney/schema/Person.yaml
3064
+ msgid "Name suffix"
3065
+ msgstr ""
3066
+
3067
+ #. Person.properties.birthCountry.label
3068
+ #: followthemoney/schema/Person.yaml
3069
+ msgid "Country of birth"
3070
+ msgstr ""
3071
+
3009
3072
  #. Person.properties.deathDate.label
3010
3073
  #: followthemoney/schema/Person.yaml
3011
3074
  msgid "Death date"
3012
3075
  msgstr "تاريخ الوفاة"
3013
3076
 
3014
3077
  #. Person.properties.position.label
3015
- #: followthemoney/schema/Person.yaml
3078
+ #. Position.label
3079
+ #: followthemoney/schema/Person.yaml followthemoney/schema/Position.yaml
3016
3080
  msgid "Position"
3017
3081
  msgstr "الوضع"
3018
3082
 
@@ -3056,6 +3120,34 @@ msgstr "الملفات النصية"
3056
3120
  msgid "Text files, like .txt or source code.\n"
3057
3121
  msgstr ""
3058
3122
 
3123
+ #. Position.plural
3124
+ #. Position.properties.organization.reverse.label
3125
+ #: followthemoney/schema/Position.yaml
3126
+ msgid "Positions"
3127
+ msgstr ""
3128
+
3129
+ #. Position.description
3130
+ #: followthemoney/schema/Position.yaml
3131
+ msgid ""
3132
+ "A post, role or position within an organization or body. This describes a position one or more people may occupy and not the occupation of the post by a specific individual at a specific point in time.\n"
3133
+ "'subnationalArea' should be used to further restrict the scope of the position. It should not simply represent some regional aspect of the role - e.g. the constituency of a national member of parliament - when their legislative jurisdiction is nationwide.\n"
3134
+ msgstr ""
3135
+
3136
+ #. Position.properties.inceptionDate.label
3137
+ #: followthemoney/schema/Position.yaml
3138
+ msgid "Inception date"
3139
+ msgstr ""
3140
+
3141
+ #. Position.properties.subnationalArea.label
3142
+ #: followthemoney/schema/Position.yaml
3143
+ msgid "Subnational jurisdiction name or code"
3144
+ msgstr ""
3145
+
3146
+ #. Position.properties.numberOfSeats.label
3147
+ #: followthemoney/schema/Position.yaml
3148
+ msgid "Total number of seats"
3149
+ msgstr ""
3150
+
3059
3151
  #. Post.label
3060
3152
  #: followthemoney/schema/Post.yaml
3061
3153
  msgid "Post"
@@ -3074,11 +3166,6 @@ msgid ""
3074
3166
  "abstract concept of the post.\n"
3075
3167
  msgstr ""
3076
3168
 
3077
- #. Post.properties.holder.label
3078
- #: followthemoney/schema/Post.yaml
3079
- msgid "Holder"
3080
- msgstr ""
3081
-
3082
3169
  #. Post.properties.holder.reverse.label
3083
3170
  #: followthemoney/schema/Post.yaml
3084
3171
  msgid "Posts held"
@@ -3731,6 +3818,11 @@ msgstr "تاريخ الإنشاء"
3731
3818
  msgid "Registration Date"
3732
3819
  msgstr "تاريخ التسجيل"
3733
3820
 
3821
+ #. Vehicle.properties.deregistrationDate.label
3822
+ #: followthemoney/schema/Vehicle.yaml
3823
+ msgid "De-registration Date"
3824
+ msgstr ""
3825
+
3734
3826
  #. Vessel.label
3735
3827
  #: followthemoney/schema/Vessel.yaml
3736
3828
  msgid "Vessel"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PROJECT VERSION\n"
13
13
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
14
- "POT-Creation-Date: 2023-06-23 10:41+0200\n"
14
+ "POT-Creation-Date: 2023-08-10 19:38+0200\n"
15
15
  "PO-Revision-Date: 2021-05-07 13:11+0000\n"
16
16
  "Last-Translator: pudo <friedrich@pudo.org>, 2021\n"
17
17
  "Language-Team: German (https://app.transifex.com/aleph/teams/76591/de/)\n"
@@ -22,11 +22,11 @@ msgstr ""
22
22
  "Language: de\n"
23
23
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24
24
 
25
- #: followthemoney/property.py:166
25
+ #: followthemoney/property.py:170
26
26
  msgid "Property cannot be written"
27
27
  msgstr "Eigenschaft darf nicht direkt gesetzt werden"
28
28
 
29
- #: followthemoney/property.py:169
29
+ #: followthemoney/property.py:173
30
30
  msgid "Invalid value"
31
31
  msgstr "Ungültiger Wert"
32
32
 
@@ -34,21 +34,21 @@ msgstr "Ungültiger Wert"
34
34
  msgid "No schema for entity."
35
35
  msgstr "Der Entität ist kein Schema zugeordnet."
36
36
 
37
- #: followthemoney/proxy.py:115
37
+ #: followthemoney/proxy.py:119
38
38
  #, python-format
39
39
  msgid "Unknown property (%s): %s"
40
40
  msgstr "Unbekannte Eigenschaft (%s): %s"
41
41
 
42
- #: followthemoney/proxy.py:188
42
+ #: followthemoney/proxy.py:191
43
43
  #, python-format
44
44
  msgid "Stub property (%s): %s"
45
45
  msgstr "Pseudofeld (%s): %s"
46
46
 
47
- #: followthemoney/schema.py:373
47
+ #: followthemoney/schema.py:383
48
48
  msgid "Required"
49
49
  msgstr "Erforderlich"
50
50
 
51
- #: followthemoney/schema.py:377
51
+ #: followthemoney/schema.py:387
52
52
  msgid "Entity validation failed"
53
53
  msgstr "Prüfung fehlgeschlagen"
54
54
 
@@ -1111,11 +1111,13 @@ msgstr "Anzahl der Zuschläge"
1111
1111
  #. CourtCase.properties.status.label
1112
1112
  #. Interest.properties.status.label
1113
1113
  #. LegalEntity.properties.status.label
1114
+ #. Occupancy.properties.status.label
1114
1115
  #. Project.properties.status.label
1115
1116
  #. Sanction.properties.status.label
1116
1117
  #: followthemoney/schema/Contract.yaml followthemoney/schema/CourtCase.yaml
1117
1118
  #: followthemoney/schema/Interest.yaml followthemoney/schema/LegalEntity.yaml
1118
- #: followthemoney/schema/Project.yaml followthemoney/schema/Sanction.yaml
1119
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Project.yaml
1120
+ #: followthemoney/schema/Sanction.yaml
1119
1121
  msgid "Status"
1120
1122
  msgstr "Status"
1121
1123
 
@@ -1385,8 +1387,8 @@ msgstr "Schuldner"
1385
1387
 
1386
1388
  #. Debt.properties.creditor.label
1387
1389
  #: followthemoney/schema/Debt.yaml
1388
- msgid "creditor"
1389
- msgstr "Kreditgeber"
1390
+ msgid "Creditor"
1391
+ msgstr ""
1390
1392
 
1391
1393
  #. Debt.properties.creditor.reverse.label
1392
1394
  #: followthemoney/schema/Debt.yaml
@@ -1417,10 +1419,12 @@ msgstr "Geschäftsführer"
1417
1419
  #. Directorship.properties.organization.label
1418
1420
  #. Membership.properties.organization.label
1419
1421
  #. Organization.label
1422
+ #. Position.properties.organization.label
1420
1423
  #. Post.properties.organization.label
1421
1424
  #: followthemoney/schema/Directorship.yaml
1422
1425
  #: followthemoney/schema/Membership.yaml
1423
- #: followthemoney/schema/Organization.yaml followthemoney/schema/Post.yaml
1426
+ #: followthemoney/schema/Organization.yaml followthemoney/schema/Position.yaml
1427
+ #: followthemoney/schema/Post.yaml
1424
1428
  msgid "Organization"
1425
1429
  msgstr "Organisation"
1426
1430
 
@@ -1588,11 +1592,21 @@ msgstr "Verarbeitungsfehler"
1588
1592
 
1589
1593
  #. Document.properties.processingAgent.label
1590
1594
  #: followthemoney/schema/Document.yaml
1595
+ msgid "Processing agent"
1596
+ msgstr ""
1597
+
1598
+ #. Document.properties.processingAgent.description
1599
+ #: followthemoney/schema/Document.yaml
1591
1600
  msgid "Name and version of the processing agent used to process the Document"
1592
1601
  msgstr ""
1593
1602
 
1594
1603
  #. Document.properties.processedAt.label
1595
1604
  #: followthemoney/schema/Document.yaml
1605
+ msgid "Processed at"
1606
+ msgstr ""
1607
+
1608
+ #. Document.properties.processedAt.description
1609
+ #: followthemoney/schema/Document.yaml
1596
1610
  msgid "Date and time of the most recent ingestion of the Document"
1597
1611
  msgstr ""
1598
1612
 
@@ -2369,7 +2383,8 @@ msgid "The date the legal entity was incorporated"
2369
2383
  msgstr "Das Datum, an welchem die Rechtsperson eingetragen wurde"
2370
2384
 
2371
2385
  #. LegalEntity.properties.dissolutionDate.label
2372
- #: followthemoney/schema/LegalEntity.yaml
2386
+ #. Position.properties.dissolutionDate.label
2387
+ #: followthemoney/schema/LegalEntity.yaml followthemoney/schema/Position.yaml
2373
2388
  msgid "Dissolution date"
2374
2389
  msgstr "Auflösungsdatum"
2375
2390
 
@@ -2695,6 +2710,44 @@ msgstr "Notizen"
2695
2710
  msgid "An annotation that applies to a document or entity.\n"
2696
2711
  msgstr "Eine Anmerkung die sich auf ein Dokument oder Objekt bezieht.\n"
2697
2712
 
2713
+ #. Occupancy.label
2714
+ #: followthemoney/schema/Occupancy.yaml
2715
+ msgid "Occupancy"
2716
+ msgstr ""
2717
+
2718
+ #. Occupancy.plural
2719
+ #. Occupancy.properties.post.reverse.label
2720
+ #: followthemoney/schema/Occupancy.yaml
2721
+ msgid "Occupancies"
2722
+ msgstr ""
2723
+
2724
+ #. Occupancy.description
2725
+ #: followthemoney/schema/Occupancy.yaml
2726
+ msgid ""
2727
+ "The occupation of a position by a person for a specific period of time.\n"
2728
+ msgstr ""
2729
+
2730
+ #. Occupancy.edge.label
2731
+ #: followthemoney/schema/Occupancy.yaml
2732
+ msgid "holds"
2733
+ msgstr ""
2734
+
2735
+ #. Occupancy.properties.holder.label
2736
+ #. Post.properties.holder.label
2737
+ #: followthemoney/schema/Occupancy.yaml followthemoney/schema/Post.yaml
2738
+ msgid "Holder"
2739
+ msgstr ""
2740
+
2741
+ #. Occupancy.properties.holder.reverse.label
2742
+ #: followthemoney/schema/Occupancy.yaml
2743
+ msgid "Position Occupancies"
2744
+ msgstr ""
2745
+
2746
+ #. Occupancy.properties.post.label
2747
+ #: followthemoney/schema/Occupancy.yaml
2748
+ msgid "Position occupied"
2749
+ msgstr ""
2750
+
2698
2751
  #. Organization.plural
2699
2752
  #: followthemoney/schema/Organization.yaml
2700
2753
  msgid "Organizations"
@@ -3006,13 +3059,24 @@ msgstr "Matronym"
3006
3059
  msgid "Last name"
3007
3060
  msgstr "Nachname"
3008
3061
 
3062
+ #. Person.properties.nameSuffix.label
3063
+ #: followthemoney/schema/Person.yaml
3064
+ msgid "Name suffix"
3065
+ msgstr ""
3066
+
3067
+ #. Person.properties.birthCountry.label
3068
+ #: followthemoney/schema/Person.yaml
3069
+ msgid "Country of birth"
3070
+ msgstr ""
3071
+
3009
3072
  #. Person.properties.deathDate.label
3010
3073
  #: followthemoney/schema/Person.yaml
3011
3074
  msgid "Death date"
3012
3075
  msgstr "Todesdatum"
3013
3076
 
3014
3077
  #. Person.properties.position.label
3015
- #: followthemoney/schema/Person.yaml
3078
+ #. Position.label
3079
+ #: followthemoney/schema/Person.yaml followthemoney/schema/Position.yaml
3016
3080
  msgid "Position"
3017
3081
  msgstr "Stellung"
3018
3082
 
@@ -3056,6 +3120,34 @@ msgstr "Textdateien"
3056
3120
  msgid "Text files, like .txt or source code.\n"
3057
3121
  msgstr "Textdateien und Quellcode.\n"
3058
3122
 
3123
+ #. Position.plural
3124
+ #. Position.properties.organization.reverse.label
3125
+ #: followthemoney/schema/Position.yaml
3126
+ msgid "Positions"
3127
+ msgstr ""
3128
+
3129
+ #. Position.description
3130
+ #: followthemoney/schema/Position.yaml
3131
+ msgid ""
3132
+ "A post, role or position within an organization or body. This describes a position one or more people may occupy and not the occupation of the post by a specific individual at a specific point in time.\n"
3133
+ "'subnationalArea' should be used to further restrict the scope of the position. It should not simply represent some regional aspect of the role - e.g. the constituency of a national member of parliament - when their legislative jurisdiction is nationwide.\n"
3134
+ msgstr ""
3135
+
3136
+ #. Position.properties.inceptionDate.label
3137
+ #: followthemoney/schema/Position.yaml
3138
+ msgid "Inception date"
3139
+ msgstr ""
3140
+
3141
+ #. Position.properties.subnationalArea.label
3142
+ #: followthemoney/schema/Position.yaml
3143
+ msgid "Subnational jurisdiction name or code"
3144
+ msgstr ""
3145
+
3146
+ #. Position.properties.numberOfSeats.label
3147
+ #: followthemoney/schema/Position.yaml
3148
+ msgid "Total number of seats"
3149
+ msgstr ""
3150
+
3059
3151
  #. Post.label
3060
3152
  #: followthemoney/schema/Post.yaml
3061
3153
  msgid "Post"
@@ -3074,11 +3166,6 @@ msgid ""
3074
3166
  "abstract concept of the post.\n"
3075
3167
  msgstr ""
3076
3168
 
3077
- #. Post.properties.holder.label
3078
- #: followthemoney/schema/Post.yaml
3079
- msgid "Holder"
3080
- msgstr ""
3081
-
3082
3169
  #. Post.properties.holder.reverse.label
3083
3170
  #: followthemoney/schema/Post.yaml
3084
3171
  msgid "Posts held"
@@ -3736,6 +3823,11 @@ msgstr "Fertigstellungsdatum"
3736
3823
  msgid "Registration Date"
3737
3824
  msgstr "Eintragungsdatum"
3738
3825
 
3826
+ #. Vehicle.properties.deregistrationDate.label
3827
+ #: followthemoney/schema/Vehicle.yaml
3828
+ msgid "De-registration Date"
3829
+ msgstr ""
3830
+
3739
3831
  #. Vessel.label
3740
3832
  #: followthemoney/schema/Vessel.yaml
3741
3833
  msgid "Vessel"