Skip to content

Commit 7ba406d

Browse files
authored
5.0.10
2 parents c00e0de + d91f431 commit 7ba406d

29 files changed

+1923
-170
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ build
33
chrome
44
firefox
55
.vscode
6+
.atom-build.yml
7+
ci/authenticator-build-key.enc

.travis.yml

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
language: node_js
22
node_js:
33
- "node"
4-
before_script:
5-
- "npm install -g typescript"
6-
- "npm install -g gts"
7-
- "npm install -g addons-linter"
8-
- "npm install -g lintspaces-cli"
9-
script:
10-
- "gts check"
11-
- "lintspaces -nt -d 'spaces' -i 'js-comments' src/* view/* manifest-*.json css/popup.css css/import.css"
12-
- "npm run firefox"
13-
- "npm run chrome"
14-
- "addons-linter firefox"
15-
deploy:
16-
# release tagging
17-
- provider: script
18-
script: bash ci/tag.sh
19-
on:
20-
branch: release
4+
stages:
5+
- test
6+
- deploy
7+
jobs:
8+
include:
9+
- stage: test
10+
script: "gts check"
11+
- stage: test
12+
script: "npm i -g lintspaces-cli && lintspaces -nt -d 'spaces' -i 'js-comments' src/* view/* manifest-*.json css/popup.css css/import.css"
13+
- stage: test
14+
script: "npm install --only=production addons-linter && npm run firefox && addons-linter firefox"
15+
- stage: test
16+
script: "npm run chrome"
17+
- stage: test
18+
# new i18n strings
19+
script: bash ci/i18n.sh
20+
if: branch = dev
21+
- stage: deploy
22+
# release tagging
23+
script: bash ci/tag.sh
24+
if: branch = release

_locales/de/messages.json

Lines changed: 250 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,250 @@
1+
{
2+
"extName": {
3+
"message": "Authentifikator",
4+
"description": "Extension Name."
5+
},
6+
"extShortName": {
7+
"message": "Authenticator",
8+
"description": "Extension Short Name."
9+
},
10+
"extDesc": {
11+
"message": "Die Authenticator Erweiterung generiert Zwei-Faktor-Authentifizierung Codes in Ihrem Browser.",
12+
"description": "Extension Description."
13+
},
14+
"added": {
15+
"message": " wurde hinzugefügt.",
16+
"description": "Added Account."
17+
},
18+
"errorqr": {
19+
"message": "Fehler beim Erkennen des QR Codes.",
20+
"description": "QR Error."
21+
},
22+
"errorsecret": {
23+
"message": "Schlüssel-Fehler. Nur Base32(A-Z, 2-7 und =)- und HEX(0-9 und A-F)-Schlüssel sind unterstützt. Ihr Schlüssel ist: ",
24+
"description": "Secret Error."
25+
},
26+
"add_qr": {
27+
"message": "QR Code scannen",
28+
"description": "Scan QR Code."
29+
},
30+
"add_secret": {
31+
"message": "Manuelle Eingabe",
32+
"description": "Manual Entry."
33+
},
34+
"close": {
35+
"message": "Schließen",
36+
"description": "Close."
37+
},
38+
"ok": {
39+
"message": "Ok",
40+
"description": "OK."
41+
},
42+
"yes": {
43+
"message": "Ja",
44+
"description": "Yes."
45+
},
46+
"no": {
47+
"message": "Nein",
48+
"description": "No."
49+
},
50+
"account": {
51+
"message": "Konto",
52+
"description": "Account."
53+
},
54+
"accountName": {
55+
"message": "Kontoname",
56+
"description": "Account Name."
57+
},
58+
"issuer": {
59+
"message": "Aussteller",
60+
"description": "Issuer."
61+
},
62+
"secret": {
63+
"message": "Schlüssel",
64+
"description": "Secret."
65+
},
66+
"updateSuccess": {
67+
"message": "Erfolgreich.",
68+
"description": "Update Success."
69+
},
70+
"updateFailure": {
71+
"message": "Fehler.",
72+
"description": "Update Failure."
73+
},
74+
"about": {
75+
"message": "Über",
76+
"description": "About."
77+
},
78+
"export_import": {
79+
"message": "Exportieren / Importieren",
80+
"description": "Export and Import."
81+
},
82+
"settings": {
83+
"message": "Einstellungen",
84+
"description": "Settings."
85+
},
86+
"security": {
87+
"message": "Sicherheit",
88+
"description": "Security."
89+
},
90+
"current_phrase": {
91+
"message": "Aktuelles Kennwort",
92+
"description": "Current Passphrase."
93+
},
94+
"new_phrase": {
95+
"message": "Neues Kennwort",
96+
"description": "New Passphrase."
97+
},
98+
"phrase": {
99+
"message": "Kennwort",
100+
"description": "Passphrase."
101+
},
102+
"confirm_phrase": {
103+
"message": "Kennwort bestätigen",
104+
"description": "Confirm Passphrase."
105+
},
106+
"confirm_delete": {
107+
"message": "Sind Sie sicher, dass Sie diesen Schlüssel löschen wollen? Diese Aktion kann nicht rückgängig gemacht werden.",
108+
"description": "Remove entry confirmation"
109+
},
110+
"security_warning": {
111+
"message": "Dieses Passwort wird für die Verschlüsselung ihrer Schlüssel benutzt werden. Niemand kann ihnen helfen, wenn Sie dieses Passwort vergessen.",
112+
"description": "Passphrase Warning."
113+
},
114+
"update": {
115+
"message": "Aktualisieren",
116+
"description": "Update."
117+
},
118+
"phrase_incorrect": {
119+
"message": "Sie können kein neues Konto hinzufügen oder Daten exportieren, solange nicht alle Konten entschlüsselt sind. Bitte geben Sie das richtige Passwort ein, bevor Sie fortfahren.",
120+
"description": "Passphrase Incorrect."
121+
},
122+
"phrase_not_match": {
123+
"message": "Kennwort stimmt nicht überein.",
124+
"description": "Passphrase Not Match."
125+
},
126+
"encrypted": {
127+
"message": "Verschlüsselt",
128+
"description": "Encrypted."
129+
},
130+
"copied": {
131+
"message": "Kopiert",
132+
"description": "Copied."
133+
},
134+
"feedback": {
135+
"message": "Feedback",
136+
"description": "Feedback."
137+
},
138+
"translate": {
139+
"message": "Übersetzen",
140+
"description": "Translate."
141+
},
142+
"source": {
143+
"message": "Quellcode",
144+
"description": "Source Code."
145+
},
146+
"passphrase_info": {
147+
"message": "Kennwort eingeben um Kontoinformationen zu entschlüsseln.",
148+
"description": "Passphrase Info"
149+
},
150+
"sync_clock": {
151+
"message": "Zeitgeber mit Google synchronisieren",
152+
"description": "Sync Clock"
153+
},
154+
"remember_phrase": {
155+
"message": "Kennwort speichern",
156+
"description": "Remember Passphrase"
157+
},
158+
"clock_too_far_off": {
159+
"message": "Achtung! Ihre lokale Uhrzeit hat eine zu große Abweichung, bitte beheben bevor Sie fortfahren.",
160+
"description": "Local Time is Too Far Off"
161+
},
162+
"remind_backup": {
163+
"message": "Haben Sie ein Backup ihrer geheimen Schlüssel? Warten Sie nicht mit dem Erstellen bevor es zu spät ist!",
164+
"description": "Remind Backup"
165+
},
166+
"capture_failed": {
167+
"message": "Aufnahme fehlgeschlagen, bitte aktualisieren Sie die Seite und versuchen Sie es erneut.",
168+
"description": "Capture Failed"
169+
},
170+
"based_on_time": {
171+
"message": "Zeitbasiert",
172+
"description": "Time Based"
173+
},
174+
"based_on_counter": {
175+
"message": "Zählerbasiert",
176+
"description": "Counter Based"
177+
},
178+
"resize_popup_page": {
179+
"message": "Ändern der Pop-Up Größe",
180+
"description": "Resize Popup Page"
181+
},
182+
"scale": {
183+
"message": "Skalierung",
184+
"description": "Scale"
185+
},
186+
"export_info": {
187+
"message": "Warnung: Alle Sicherungen sind unverschlüsselt! Wollen Sie ein Konto zu einer anderen App hinzufügen? Fahren Sie mit dem Mauszeiger über den oberen, rechten Teil des Kontos und drücken Sie die versteckte Schaltfläche.",
188+
"description": "Export menu info text"
189+
},
190+
"download_backup": {
191+
"message": "Sicherungsdatei herunterladen",
192+
"description": "Download backup file."
193+
},
194+
"import_backup": {
195+
"message": "Backup importieren",
196+
"description": "Import backup."
197+
},
198+
"import_backup_file": {
199+
"message": "Sicherungsdatei importieren",
200+
"description": "Import backup file."
201+
},
202+
"import_backup_code": {
203+
"message": "Text-Sicherungsdatei importieren",
204+
"description": "Import backup code."
205+
},
206+
"dropbox_backup": {
207+
"message": "Automatische Sicherung in Dropbox",
208+
"description": "Auto backup to Dropbox."
209+
},
210+
"dropbox_code": {
211+
"message": "Dropbox-Code",
212+
"description": "Dropbox code."
213+
},
214+
"dropbox_token": {
215+
"message": "Dropbox-Token",
216+
"description": "Dropbox token."
217+
},
218+
"dropbox_authorization": {
219+
"message": "Einloggen in Dropbox",
220+
"description": "Dropbox authorization."
221+
},
222+
"show_all_entries": {
223+
"message": "Alle Einträge anzeigen",
224+
"description": "Show all entries."
225+
},
226+
"dropbox_risk": {
227+
"message": "Vorsicht: Sicherungen, die in Dropbox gespeichert werden, sind nicht verschlüsselt. Benutzung auf eigene Gefahr.",
228+
"description": "Dropbox backup risk warning."
229+
},
230+
"import_error_password": {
231+
"message": "Sie müssen das richtige Passwort angeben um Sicherungsdateien zu importieren.",
232+
"description": "Error password warning when import backups."
233+
},
234+
"local_passphrase_warning": {
235+
"message": "Ihr Passwort wird lokal gespeichert, bitte ändern Sie es sofort im Sicherheitsmenü.",
236+
"description": "localStorage password warning."
237+
},
238+
"dropbox_logout": {
239+
"message": "Aus Dropbox ausloggen",
240+
"description": "Dropbox logout."
241+
},
242+
"remove": {
243+
"message": "Löschen",
244+
"description": "Remove password."
245+
},
246+
"download_enc_backup": {
247+
"message": "Download Password-Protected Backup",
248+
"description": "Download Encrypted Backup"
249+
}
250+
}

_locales/en/messages.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,5 +238,13 @@
238238
"dropbox_logout": {
239239
"message": "Logout of Dropbox",
240240
"description": "Dropbox logout."
241+
},
242+
"remove": {
243+
"message": "Remove",
244+
"description": "Remove password."
245+
},
246+
"download_enc_backup": {
247+
"message": "Download Password-Protected Backup",
248+
"description": "Download Encrypted Backup"
241249
}
242250
}

_locales/es/messages.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extName": {
3-
"message": "Autenticador",
3+
"message": "Authenticator",
44
"description": "Extension Name."
55
},
66
"extShortName": {
@@ -76,7 +76,7 @@
7676
"description": "About."
7777
},
7878
"export_import": {
79-
"message": "Exportación \/ importación",
79+
"message": "Exportación / importación",
8080
"description": "Export and Import."
8181
},
8282
"settings": {
@@ -128,7 +128,7 @@
128128
"description": "Encrypted."
129129
},
130130
"copied": {
131-
"message": "Copiado",
131+
"message": "Copied",
132132
"description": "Copied."
133133
},
134134
"feedback": {
@@ -238,5 +238,13 @@
238238
"dropbox_logout": {
239239
"message": "Logout of Dropbox",
240240
"description": "Dropbox logout."
241+
},
242+
"remove": {
243+
"message": "Remove",
244+
"description": "Remove password."
245+
},
246+
"download_enc_backup": {
247+
"message": "Download Password-Protected Backup",
248+
"description": "Download Encrypted Backup"
241249
}
242250
}

0 commit comments

Comments
 (0)