iobroker.eusec 1.2.1 → 1.3.1
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.
- package/LICENSE +1 -1
- package/README.md +47 -112
- package/admin/i18n/de/translations.json +252 -1
- package/admin/i18n/en/translations.json +252 -1
- package/admin/i18n/es/translations.json +252 -1
- package/admin/i18n/fr/translations.json +252 -1
- package/admin/i18n/it/translations.json +252 -1
- package/admin/i18n/nl/translations.json +252 -1
- package/admin/i18n/pl/translations.json +252 -1
- package/admin/i18n/pt/translations.json +252 -1
- package/admin/i18n/ru/translations.json +252 -1
- package/admin/i18n/uk/translations.json +275 -24
- package/admin/i18n/zh-cn/translations.json +252 -1
- package/admin/jsonConfig.json +1015 -0
- package/admin/words.js +3297 -17
- package/build/lib/log.js +1 -0
- package/build/lib/log.js.map +1 -1
- package/build/lib/types.js +6 -5
- package/build/lib/types.js.map +2 -2
- package/build/lib/utils.js +51 -41
- package/build/lib/utils.js.map +2 -2
- package/build/lib/video.js +148 -20
- package/build/lib/video.js.map +3 -3
- package/build/main.js +550 -169
- package/build/main.js.map +3 -3
- package/io-package.json +51 -52
- package/package.json +40 -37
- package/build/lib/tools.js +0 -94
- package/build/lib/tools.js.map +0 -7
- package/build/lib/web.js +0 -64
- package/build/lib/web.js.map +0 -7
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2020-
|
|
3
|
+
Copyright (c) 2020-2024 bropat <patrick.broetto@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -31,119 +31,9 @@ You need to provide your Cloud login credentials. The adapter connects to your c
|
|
|
31
31
|
|
|
32
32
|
One Adapter instance will show all devices from one Eufy Cloud account and allows to control them.
|
|
33
33
|
|
|
34
|
-
## Features
|
|
35
|
-
|
|
36
|
-
* Supports local and remote p2p connection to station
|
|
37
|
-
* Two factor authentication
|
|
38
|
-
* Livestream as HLS stream (supports all platforms, but introduce a latency)
|
|
39
|
-
* Last HLS live stream is always saved for later viewing
|
|
40
|
-
* Downloads event video when push notification is received (async)
|
|
41
|
-
* Takes jpeg thumbnail of the livestream or downloaded video
|
|
42
|
-
* Base station:
|
|
43
|
-
* States:
|
|
44
|
-
* Configured Guard mode
|
|
45
|
-
* Current Guard mode
|
|
46
|
-
* Name
|
|
47
|
-
* Model
|
|
48
|
-
* Serial number
|
|
49
|
-
* Software version
|
|
50
|
-
* Hardware version
|
|
51
|
-
* MAC address
|
|
52
|
-
* LAN ip address
|
|
53
|
-
* Actions:
|
|
54
|
-
* Change guard mode
|
|
55
|
-
* Trigger alarm sound
|
|
56
|
-
* Reset alarm sound
|
|
57
|
-
* Reboot station
|
|
58
|
-
* Events:
|
|
59
|
-
* Alarm mode change
|
|
60
|
-
* Camera:
|
|
61
|
-
* States:
|
|
62
|
-
* Online / offline etc.
|
|
63
|
-
* Battery %
|
|
64
|
-
* Battery temperature
|
|
65
|
-
* Name
|
|
66
|
-
* Model
|
|
67
|
-
* Serial number
|
|
68
|
-
* Software version
|
|
69
|
-
* Hardware version
|
|
70
|
-
* MAC address
|
|
71
|
-
* Wifi RSSI
|
|
72
|
-
* Filtered false events since last charge
|
|
73
|
-
* Saved/Recorded events since last charge
|
|
74
|
-
* Total events since last charge
|
|
75
|
-
* Used days since last charge
|
|
76
|
-
* And lot's more...
|
|
77
|
-
* Actions:
|
|
78
|
-
* Start livestream (hls; supports also local livestream)
|
|
79
|
-
* Stop livestream (hls)
|
|
80
|
-
* Enable/disable device
|
|
81
|
-
* Enable/disable auto night vision
|
|
82
|
-
* Enable/disable led (only camera 2 products, indoor cameras, floodlight camera, solo cameras and doorbells)
|
|
83
|
-
* Enable/disable anti-theft detection (only camera 2 products)
|
|
84
|
-
* Enable/disable motion detection
|
|
85
|
-
* Enable/disable pet detection (only indoor cameras)
|
|
86
|
-
* Enable/disable sound detection (only indoor cameras)
|
|
87
|
-
* Enable/disable RTSP stream (only camera2 products, indoor cameras and solo cameras)
|
|
88
|
-
* Change video watermark setting
|
|
89
|
-
* And lot's more...
|
|
90
|
-
* Events:
|
|
91
|
-
* Motion detected
|
|
92
|
-
* Person detected
|
|
93
|
-
* Ringing (only Doorbell)
|
|
94
|
-
* Crying detected (only Indoor cameras)
|
|
95
|
-
* Sound detected (only Indoor cameras)
|
|
96
|
-
* Pet detected (only Indoor cameras)
|
|
97
|
-
* Sensor:
|
|
98
|
-
* Entry sensor:
|
|
99
|
-
* States:
|
|
100
|
-
* Online / offline etc.
|
|
101
|
-
* Low battery
|
|
102
|
-
* Name
|
|
103
|
-
* Model
|
|
104
|
-
* Serial number
|
|
105
|
-
* Software version
|
|
106
|
-
* Hardware version
|
|
107
|
-
* Events:
|
|
108
|
-
* Open / closed
|
|
109
|
-
* Motion sensor:
|
|
110
|
-
* States:
|
|
111
|
-
* Online / offline etc.
|
|
112
|
-
* Low battery
|
|
113
|
-
* Name
|
|
114
|
-
* Model
|
|
115
|
-
* Serial number
|
|
116
|
-
* Software version
|
|
117
|
-
* Hardware version
|
|
118
|
-
* Events:
|
|
119
|
-
* Motion detected
|
|
120
|
-
* Keypad:
|
|
121
|
-
* States:
|
|
122
|
-
* Online / offline etc.
|
|
123
|
-
* Low battery
|
|
124
|
-
* Name
|
|
125
|
-
* Model
|
|
126
|
-
* Serial number
|
|
127
|
-
* Software version
|
|
128
|
-
* Hardware version
|
|
129
|
-
* Lock:
|
|
130
|
-
* States:
|
|
131
|
-
* Online / offline etc.
|
|
132
|
-
* Battery %
|
|
133
|
-
* Lock status
|
|
134
|
-
* Name
|
|
135
|
-
* Model
|
|
136
|
-
* Serial number
|
|
137
|
-
* Software version
|
|
138
|
-
* Hardware version
|
|
139
|
-
* Wifi RSSI
|
|
140
|
-
* Actions:
|
|
141
|
-
* Lock/unlock
|
|
142
|
-
* more to come...
|
|
143
|
-
|
|
144
34
|
## Documentation
|
|
145
35
|
|
|
146
|
-
|
|
36
|
+
Checkout the documentation [here](https://bropat.github.io/ioBroker.eusec/).
|
|
147
37
|
|
|
148
38
|
## Known working devices
|
|
149
39
|
|
|
@@ -157,6 +47,51 @@ Best is to set the adapter to Debug log mode (see [here](https://bropat.github.i
|
|
|
157
47
|
|
|
158
48
|
## Changelog
|
|
159
49
|
|
|
50
|
+
### 1.3.1 (2024-09-08)
|
|
51
|
+
|
|
52
|
+
* (bropat) Fixed issue #436
|
|
53
|
+
* (bropat) Fixed issue #439
|
|
54
|
+
|
|
55
|
+
### 1.3.0 (2024-08-27)
|
|
56
|
+
|
|
57
|
+
* (bropat) Requires ioBroker.admin version >= 7.0.12
|
|
58
|
+
* (bropat) Requires ioBroker.js-controller version >= 6.0.0
|
|
59
|
+
* (bropat) Requires node version >= 20
|
|
60
|
+
* (bropat) Added new setting to choose country indipendently of ioBroker setting
|
|
61
|
+
* (bropat) New go2rtc streaming implementation
|
|
62
|
+
* (bropat) Added messagebox support (sendTo) to exhibit new commands (snooze #294, chime, quickResponse, getQuickResponseVoices, pollRefresh)
|
|
63
|
+
* (bropat) Fixed deletion of obsolete devices, channels and states
|
|
64
|
+
* (bropat) Added support for Video Smart Lock S330 (T8530)
|
|
65
|
+
* (bropat) Added support for Smart Lock C210 (T8502)
|
|
66
|
+
* (bropat) Added support for Smart Lock C220 (T8506)
|
|
67
|
+
* (bropat) Added support for Smart Lock S230 (T8510P)
|
|
68
|
+
* (bropat) Added support for Smart Lock S231 (T8520P)
|
|
69
|
+
* (bropat) Added support for Retrofit Smart Lock E110 (T8503)
|
|
70
|
+
* (bropat) Added support for Retrofit Smart Lock E130 (T8504)
|
|
71
|
+
* (bropat) Added support for Smart Drop S300 (T8790)
|
|
72
|
+
* (bropat/martijnpoppen) Added support for Video Doorbell E340 (T8214)
|
|
73
|
+
* (martijnpoppen) Added support for MiniBase Chime (T8023)
|
|
74
|
+
* (bropat/martijnpoppen) Added support for eufyCam E330 (Professional; T8600; #391)
|
|
75
|
+
* (bropat/martijnpoppen) Added support for Solar Wall Light Cam S120 (T84A0; #406)
|
|
76
|
+
* (bropat/martijnpoppen) Added support for SoloCam S340 (T8170; #399)
|
|
77
|
+
* (bropat) Added support for Indoor Cam S350 (T8416; #403)
|
|
78
|
+
* (bropat) Added support for Floodlight Cam E340 (T8425, #428)
|
|
79
|
+
* (bropat) Added support for SoloCam C210 (T8B00)
|
|
80
|
+
* (bropat) Storage of files switched to [Meta-Storage](https://iobroker.readthedocs.io/de/latest/bestpractice/storefiles.html#meta-storage)
|
|
81
|
+
* (bropat) Implemented workaround for livestreaming issue introduced by CVE-2023-46809 in Node.js (18.19.1=<; 20.11.1=<; 21.6.2=<)
|
|
82
|
+
* (bropat) Changed ffmpeg static package from `ffmpeg-static` to `ffmpeg-for-homebridge`
|
|
83
|
+
* (bropat) Fixed issue #432
|
|
84
|
+
* (bropat) Fixed issue #422
|
|
85
|
+
* (bropat) Fixed issue #420
|
|
86
|
+
* (bropat) Fixed issue #387
|
|
87
|
+
* (bropat) Fixed issue #380
|
|
88
|
+
* (bropat) Fixed issue #379
|
|
89
|
+
* (bropat) Fixed issue #376
|
|
90
|
+
* (bropat) Fixed issue #371
|
|
91
|
+
* (bropat) Updated version of the package go2rtc-static (1.8.5)
|
|
92
|
+
* (bropat) Updated version of the package eufy-security-client (3.0.0)
|
|
93
|
+
* (bropat) Further details can be found in the changelog of eufy-security-client (3.0.0)
|
|
94
|
+
|
|
160
95
|
### 1.2.1 (2023-11-04)
|
|
161
96
|
|
|
162
97
|
* (bropat) Updated version of the package eufy-security-client (2.9.1)
|
|
@@ -703,7 +638,7 @@ Best is to set the adapter to Debug log mode (see [here](https://bropat.github.i
|
|
|
703
638
|
|
|
704
639
|
MIT License
|
|
705
640
|
|
|
706
|
-
Copyright (c) 2020-
|
|
641
|
+
Copyright (c) 2020-2024 bropat <patrick.broetto@gmail.com>
|
|
707
642
|
|
|
708
643
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
709
644
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -22,5 +22,256 @@
|
|
|
22
22
|
"WebRTC port": "WebRTC Port",
|
|
23
23
|
"RTSP port": "RTSP Port",
|
|
24
24
|
"RTSP Username": "RTSP Benutzername",
|
|
25
|
-
"RTSP Password": "RTSP Passwort"
|
|
25
|
+
"RTSP Password": "RTSP Passwort",
|
|
26
|
+
"inherited from ioBroker": "von ioBroker geerbt",
|
|
27
|
+
"Afghanistan": "Afghanistan",
|
|
28
|
+
"Albania": "Albanien",
|
|
29
|
+
"Algeria": "Algerien",
|
|
30
|
+
"American Samoa": "Amerikanisch-Samoa",
|
|
31
|
+
"Andorra": "Andorra",
|
|
32
|
+
"Angola": "Angola",
|
|
33
|
+
"Anguilla": "Anguilla",
|
|
34
|
+
"Antarctica": "Antarktis",
|
|
35
|
+
"Antigua and Barbuda": "Antigua und Barbuda",
|
|
36
|
+
"Argentina": "Argentinien",
|
|
37
|
+
"Armenia": "Armenien",
|
|
38
|
+
"Aruba": "Aruba",
|
|
39
|
+
"Australia": "Australien",
|
|
40
|
+
"Austria": "Österreich",
|
|
41
|
+
"Azerbaijan": "Aserbaidschan",
|
|
42
|
+
"Bahamas": "Bahamas",
|
|
43
|
+
"Bahrain": "Bahrain",
|
|
44
|
+
"Bangladesh": "Bangladesch",
|
|
45
|
+
"Barbados": "Barbados",
|
|
46
|
+
"Belarus": "Belarus",
|
|
47
|
+
"Belgium": "Belgien",
|
|
48
|
+
"Belize": "Belize",
|
|
49
|
+
"Benin": "Benin",
|
|
50
|
+
"Bermuda": "Bermuda",
|
|
51
|
+
"Bhutan": "Bhutan",
|
|
52
|
+
"Bolivia": "Bolivien",
|
|
53
|
+
"Bosnia and Herzegovina": "Bosnien und Herzegowina",
|
|
54
|
+
"Botswana": "Botswana",
|
|
55
|
+
"Bouvet Island": "Bouvetinsel",
|
|
56
|
+
"Brazil": "Brasilien",
|
|
57
|
+
"British Indian Ocean Territory": "Britisches Territorium im Indischen Ozean",
|
|
58
|
+
"Brunei Darussalam": "Brunei Darussalam",
|
|
59
|
+
"Bulgaria": "Bulgarien",
|
|
60
|
+
"Burkina Faso": "Burkina Faso",
|
|
61
|
+
"Burundi": "Burundi",
|
|
62
|
+
"Cambodia": "Kambodscha",
|
|
63
|
+
"Cameroon": "Kamerun",
|
|
64
|
+
"Canada": "Kanada",
|
|
65
|
+
"Cape Verde": "Kap Verde",
|
|
66
|
+
"Cayman Islands": "Kaimaninseln",
|
|
67
|
+
"Central African Republic": "Zentralafrikanische Republik",
|
|
68
|
+
"Chad": "Tschad",
|
|
69
|
+
"Chile": "Chile",
|
|
70
|
+
"People's Republic of China": "China",
|
|
71
|
+
"Christmas Island": "Weihnachtsinsel",
|
|
72
|
+
"Cocos (Keeling) Islands": "Kokosinseln",
|
|
73
|
+
"Colombia": "Kolumbien",
|
|
74
|
+
"Comoros": "Komoren",
|
|
75
|
+
"Republic of the Congo": "Republik Kongo",
|
|
76
|
+
"Democratic Republic of the Congo": "Kongo",
|
|
77
|
+
"Cook Islands": "Cookinseln",
|
|
78
|
+
"Costa Rica": "Costa Rica",
|
|
79
|
+
"Cote d'Ivoire": "Elfenbeinküste",
|
|
80
|
+
"Croatia": "Kroatien",
|
|
81
|
+
"Cuba": "Kuba",
|
|
82
|
+
"Cyprus": "Zypern",
|
|
83
|
+
"Czech Republic": "Tschechische Republik",
|
|
84
|
+
"Denmark": "Dänemark",
|
|
85
|
+
"Djibouti": "Dschibuti",
|
|
86
|
+
"Dominica": "Dominica",
|
|
87
|
+
"Dominican Republic": "Dominikanische Republik",
|
|
88
|
+
"Ecuador": "Ecuador",
|
|
89
|
+
"Egypt": "Ägypten",
|
|
90
|
+
"El Salvador": "El Salvador",
|
|
91
|
+
"Equatorial Guinea": "Äquatorialguinea",
|
|
92
|
+
"Eritrea": "Eritrea",
|
|
93
|
+
"Estonia": "Estland",
|
|
94
|
+
"Ethiopia": "Äthiopien",
|
|
95
|
+
"Falkland Islands (Malvinas)": "Falklandinseln",
|
|
96
|
+
"Faroe Islands": "Färöer",
|
|
97
|
+
"Fiji": "Fidschi",
|
|
98
|
+
"Finland": "Finnland",
|
|
99
|
+
"France": "Frankreich",
|
|
100
|
+
"French Guiana": "Französisch-Guayana",
|
|
101
|
+
"French Polynesia": "Französisch-Polynesien",
|
|
102
|
+
"French Southern Territories": "Französische Süd- und Antarktisgebiete",
|
|
103
|
+
"Gabon": "Gabun",
|
|
104
|
+
"Republic of The Gambia": "Gambia",
|
|
105
|
+
"Georgia": "Georgien",
|
|
106
|
+
"Germany": "Deutschland",
|
|
107
|
+
"Ghana": "Ghana",
|
|
108
|
+
"Gibraltar": "Gibraltar",
|
|
109
|
+
"Greece": "Griechenland",
|
|
110
|
+
"Greenland": "Grönland",
|
|
111
|
+
"Grenada": "Grenada",
|
|
112
|
+
"Guadeloupe": "Guadeloupe",
|
|
113
|
+
"Guam": "Guam",
|
|
114
|
+
"Guatemala": "Guatemala",
|
|
115
|
+
"Guinea": "Guinea",
|
|
116
|
+
"Guinea-Bissau": "Guinea-Bissau",
|
|
117
|
+
"Guyana": "Guyana",
|
|
118
|
+
"Haiti": "Haiti",
|
|
119
|
+
"Heard Island and McDonald Islands": "Heard und McDonaldinseln",
|
|
120
|
+
"Holy See (Vatican City State)": "Vatikanstadt",
|
|
121
|
+
"Honduras": "Honduras",
|
|
122
|
+
"Hong Kong": "Hongkong",
|
|
123
|
+
"Hungary": "Ungarn",
|
|
124
|
+
"Iceland": "Island",
|
|
125
|
+
"India": "Indien",
|
|
126
|
+
"Indonesia": "Indonesien",
|
|
127
|
+
"Islamic Republic of Iran": "Iran",
|
|
128
|
+
"Iraq": "Irak",
|
|
129
|
+
"Ireland": "Irland",
|
|
130
|
+
"Israel": "Israel",
|
|
131
|
+
"Italy": "Italien",
|
|
132
|
+
"Jamaica": "Jamaika",
|
|
133
|
+
"Japan": "Japan",
|
|
134
|
+
"Jordan": "Jordanien",
|
|
135
|
+
"Kazakhstan": "Kasachstan",
|
|
136
|
+
"Kenya": "Kenia",
|
|
137
|
+
"Kiribati": "Kiribati",
|
|
138
|
+
"North Korea": "Nordkorea",
|
|
139
|
+
"South Korea": "Südkorea",
|
|
140
|
+
"Kuwait": "Kuwait",
|
|
141
|
+
"Kyrgyzstan": "Kirgisistan",
|
|
142
|
+
"Lao People's Democratic Republic": "Laos",
|
|
143
|
+
"Latvia": "Lettland",
|
|
144
|
+
"Lebanon": "Libanon",
|
|
145
|
+
"Lesotho": "Lesotho",
|
|
146
|
+
"Liberia": "Liberia",
|
|
147
|
+
"Libya": "Libyen",
|
|
148
|
+
"Liechtenstein": "Liechtenstein",
|
|
149
|
+
"Lithuania": "Litauen",
|
|
150
|
+
"Luxembourg": "Luxemburg",
|
|
151
|
+
"Macao": "Macao",
|
|
152
|
+
"Madagascar": "Madagaskar",
|
|
153
|
+
"Malawi": "Malawi",
|
|
154
|
+
"Malaysia": "Malaysia",
|
|
155
|
+
"Maldives": "Malediven",
|
|
156
|
+
"Mali": "Mali",
|
|
157
|
+
"Malta": "Malta",
|
|
158
|
+
"Marshall Islands": "Marshallinseln",
|
|
159
|
+
"Martinique": "Martinique",
|
|
160
|
+
"Mauritania": "Mauretanien",
|
|
161
|
+
"Mauritius": "Mauritius",
|
|
162
|
+
"Mayotte": "Mayotte",
|
|
163
|
+
"Mexico": "Mexiko",
|
|
164
|
+
"Micronesia, Federated States of": "Mikronesien",
|
|
165
|
+
"Moldova, Republic of": "Moldawien",
|
|
166
|
+
"Monaco": "Monaco",
|
|
167
|
+
"Mongolia": "Mongolei",
|
|
168
|
+
"Montserrat": "Montserrat",
|
|
169
|
+
"Morocco": "Marokko",
|
|
170
|
+
"Mozambique": "Mosambik",
|
|
171
|
+
"Myanmar": "Myanmar",
|
|
172
|
+
"Namibia": "Namibia",
|
|
173
|
+
"Nauru": "Nauru",
|
|
174
|
+
"Nepal": "Nepal",
|
|
175
|
+
"Netherlands": "Niederlande",
|
|
176
|
+
"New Caledonia": "Neukaledonien",
|
|
177
|
+
"New Zealand": "Neuseeland",
|
|
178
|
+
"Nicaragua": "Nicaragua",
|
|
179
|
+
"Niger": "Niger",
|
|
180
|
+
"Nigeria": "Nigeria",
|
|
181
|
+
"Niue": "Niue",
|
|
182
|
+
"Norfolk Island": "Norfolkinsel",
|
|
183
|
+
"The Republic of North Macedonia": "Nordmazedonien",
|
|
184
|
+
"Northern Mariana Islands": "Nördliche Marianen",
|
|
185
|
+
"Norway": "Norwegen",
|
|
186
|
+
"Oman": "Oman",
|
|
187
|
+
"Pakistan": "Pakistan",
|
|
188
|
+
"Palau": "Palau",
|
|
189
|
+
"State of Palestine": "Staat Palästina",
|
|
190
|
+
"Panama": "Panama",
|
|
191
|
+
"Papua New Guinea": "Papua-Neuguinea",
|
|
192
|
+
"Paraguay": "Paraguay",
|
|
193
|
+
"Peru": "Peru",
|
|
194
|
+
"Philippines": "Philippinen",
|
|
195
|
+
"Pitcairn": "Pitcairninseln",
|
|
196
|
+
"Poland": "Polen",
|
|
197
|
+
"Portugal": "Portugal",
|
|
198
|
+
"Puerto Rico": "Puerto Rico",
|
|
199
|
+
"Qatar": "Katar",
|
|
200
|
+
"Reunion": "Réunion",
|
|
201
|
+
"Romania": "Rumänien",
|
|
202
|
+
"Russian Federation": "Russische Föderation",
|
|
203
|
+
"Rwanda": "Ruanda",
|
|
204
|
+
"Saint Helena": "St. Helena",
|
|
205
|
+
"Saint Kitts and Nevis": "St. Kitts und Nevis",
|
|
206
|
+
"Saint Lucia": "St. Lucia",
|
|
207
|
+
"Saint Pierre and Miquelon": "Saint-Pierre und Miquelon",
|
|
208
|
+
"Saint Vincent and the Grenadines": "St. Vincent und die Grenadinen",
|
|
209
|
+
"Samoa": "Samoa",
|
|
210
|
+
"San Marino": "San Marino",
|
|
211
|
+
"Sao Tome and Principe": "São Tomé und Príncipe",
|
|
212
|
+
"Saudi Arabia": "Saudi-Arabien",
|
|
213
|
+
"Senegal": "Senegal",
|
|
214
|
+
"Seychelles": "Seychellen",
|
|
215
|
+
"Sierra Leone": "Sierra Leone",
|
|
216
|
+
"Singapore": "Singapur",
|
|
217
|
+
"Slovakia": "Slowakei",
|
|
218
|
+
"Slovenia": "Slowenien",
|
|
219
|
+
"Solomon Islands": "Salomonen",
|
|
220
|
+
"Somalia": "Somalia",
|
|
221
|
+
"South Africa": "Südafrika",
|
|
222
|
+
"South Georgia and the South Sandwich Islands": "Südgeorgien und die Südlichen Sandwichinseln",
|
|
223
|
+
"Spain": "Spanien",
|
|
224
|
+
"Sri Lanka": "Sri Lanka",
|
|
225
|
+
"Sudan": "Sudan",
|
|
226
|
+
"Suriname": "Suriname",
|
|
227
|
+
"Svalbard and Jan Mayen": "Svalbard und Jan Mayen",
|
|
228
|
+
"Eswatini": "Eswatini",
|
|
229
|
+
"Sweden": "Schweden",
|
|
230
|
+
"Switzerland": "Schweiz",
|
|
231
|
+
"Syrian Arab Republic": "Syrien, Arabische Republik",
|
|
232
|
+
"Taiwan, Province of China": "Taiwan",
|
|
233
|
+
"Tajikistan": "Tadschikistan",
|
|
234
|
+
"United Republic of Tanzania": "Tansania, Vereinigte Republik",
|
|
235
|
+
"Thailand": "Thailand",
|
|
236
|
+
"Timor-Leste": "Osttimor",
|
|
237
|
+
"Togo": "Togo",
|
|
238
|
+
"Tokelau": "Tokelau",
|
|
239
|
+
"Tonga": "Tonga",
|
|
240
|
+
"Trinidad and Tobago": "Trinidad und Tobago",
|
|
241
|
+
"Tunisia": "Tunesien",
|
|
242
|
+
"Türkiye": "Türkei",
|
|
243
|
+
"Turkmenistan": "Turkmenistan",
|
|
244
|
+
"Turks and Caicos Islands": "Turks- und Caicosinseln",
|
|
245
|
+
"Tuvalu": "Tuvalu",
|
|
246
|
+
"Uganda": "Uganda",
|
|
247
|
+
"Ukraine": "Ukraine",
|
|
248
|
+
"United Arab Emirates": "Vereinigte Arabische Emirate",
|
|
249
|
+
"United Kingdom": "Vereinigtes Königreich",
|
|
250
|
+
"United States of America": "Vereinigte Staaten von Amerika",
|
|
251
|
+
"United States Minor Outlying Islands": "United States Minor Outlying Islands",
|
|
252
|
+
"Uruguay": "Uruguay",
|
|
253
|
+
"Uzbekistan": "Usbekistan",
|
|
254
|
+
"Vanuatu": "Vanuatu",
|
|
255
|
+
"Venezuela": "Venezuela",
|
|
256
|
+
"Vietnam": "Vietnam",
|
|
257
|
+
"Virgin Islands, British": "Britische Jungferninseln",
|
|
258
|
+
"Virgin Islands, U.S.": "Amerikanische Jungferninseln",
|
|
259
|
+
"Wallis and Futuna": "Wallis und Futuna",
|
|
260
|
+
"Western Sahara": "Westsahara",
|
|
261
|
+
"Yemen": "Jemen",
|
|
262
|
+
"Zambia": "Sambia",
|
|
263
|
+
"Zimbabwe": "Simbabwe",
|
|
264
|
+
"Åland Islands": "Åland",
|
|
265
|
+
"Bonaire, Sint Eustatius and Saba": "Bonaire",
|
|
266
|
+
"Curaçao": "Curaçao",
|
|
267
|
+
"Guernsey": "Guernsey",
|
|
268
|
+
"Isle of Man": "Insel Man",
|
|
269
|
+
"Jersey": "Jersey",
|
|
270
|
+
"Montenegro": "Montenegro",
|
|
271
|
+
"Saint Barthélemy": "Saint-Barthélemy",
|
|
272
|
+
"Saint Martin (French part)": "Saint-Martin",
|
|
273
|
+
"Serbia": "Serbien",
|
|
274
|
+
"Sint Maarten (Dutch part)": "Sint Maarten",
|
|
275
|
+
"South Sudan": "Südsudan",
|
|
276
|
+
"Kosovo": "Kosovo"
|
|
26
277
|
}
|