From 0b78731bb34064af791d516eff69c4b85e04bfe8 Mon Sep 17 00:00:00 2001 From: J-Jamet Date: Mon, 24 Aug 2020 22:20:58 +0200 Subject: [PATCH] Strings for upload notification --- .../AttachmentFileNotificationService.kt | 55 +++++++++++++------ app/src/main/res/values-ar/strings.xml | 2 +- app/src/main/res/values-ca/strings.xml | 2 +- app/src/main/res/values-cs/strings.xml | 4 +- app/src/main/res/values-da/strings.xml | 4 +- app/src/main/res/values-de/strings.xml | 4 +- app/src/main/res/values-el/strings.xml | 4 +- app/src/main/res/values-es/strings.xml | 4 +- app/src/main/res/values-eu/strings.xml | 2 +- app/src/main/res/values-fi/strings.xml | 2 +- app/src/main/res/values-fr/strings.xml | 4 +- app/src/main/res/values-hi/strings.xml | 2 +- app/src/main/res/values-hr/strings.xml | 4 +- app/src/main/res/values-hu/strings.xml | 4 +- app/src/main/res/values-it/strings.xml | 4 +- app/src/main/res/values-iw/strings.xml | 2 +- app/src/main/res/values-ja/strings.xml | 4 +- app/src/main/res/values-ko/strings.xml | 2 +- app/src/main/res/values-lv/strings.xml | 2 +- app/src/main/res/values-ml/strings.xml | 4 +- app/src/main/res/values-nb/strings.xml | 4 +- app/src/main/res/values-nl/strings.xml | 4 +- app/src/main/res/values-nn/strings.xml | 2 +- app/src/main/res/values-pa/strings.xml | 4 +- app/src/main/res/values-pl/strings.xml | 4 +- app/src/main/res/values-pt-rBR/strings.xml | 4 +- app/src/main/res/values-pt-rPT/strings.xml | 4 +- app/src/main/res/values-ro/strings.xml | 4 +- app/src/main/res/values-ru/strings.xml | 4 +- app/src/main/res/values-sk/strings.xml | 2 +- app/src/main/res/values-sv/strings.xml | 4 +- app/src/main/res/values-tr/strings.xml | 4 +- app/src/main/res/values-uk/strings.xml | 4 +- app/src/main/res/values-zh-rCN/strings.xml | 4 +- app/src/main/res/values-zh-rTW/strings.xml | 2 +- app/src/main/res/values/strings.xml | 5 +- 36 files changed, 97 insertions(+), 77 deletions(-) diff --git a/app/src/main/java/com/kunzisoft/keepass/notifications/AttachmentFileNotificationService.kt b/app/src/main/java/com/kunzisoft/keepass/notifications/AttachmentFileNotificationService.kt index 858bc0c85..e6832d0b4 100644 --- a/app/src/main/java/com/kunzisoft/keepass/notifications/AttachmentFileNotificationService.kt +++ b/app/src/main/java/com/kunzisoft/keepass/notifications/AttachmentFileNotificationService.kt @@ -74,9 +74,7 @@ class AttachmentFileNotificationService: LockNotificationService() { private val attachmentFileActionListener = object: AttachmentFileAction.AttachmentFileActionListener { override fun onUpdate(attachmentNotification: AttachmentNotification) { - newNotification(attachmentNotification.uri, - attachmentNotification.entryAttachmentState, - attachmentNotification.notificationId) + newNotification(attachmentNotification) mActionTaskListeners.forEach { actionListener -> actionListener.onAttachmentAction(attachmentNotification.uri, attachmentNotification.entryAttachmentState) @@ -145,15 +143,14 @@ class AttachmentFileNotificationService: LockNotificationService() { } } - private fun newNotification(downloadFileUri: Uri, - entryAttachment: EntryAttachmentState, - notificationIdAttachment: Int) { + private fun newNotification(attachmentNotification: AttachmentNotification) { val pendingContentIntent = PendingIntent.getActivity(this, 0, Intent().apply { action = Intent.ACTION_VIEW - setDataAndType(downloadFileUri, contentResolver.getType(downloadFileUri)) + setDataAndType(attachmentNotification.uri, + contentResolver.getType(attachmentNotification.uri)) addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION) }, PendingIntent.FLAG_CANCEL_CURRENT) @@ -161,38 +158,59 @@ class AttachmentFileNotificationService: LockNotificationService() { 0, Intent(this, AttachmentFileNotificationService::class.java).apply { // No action to delete the service - putExtra(FILE_URI_KEY, downloadFileUri) + putExtra(FILE_URI_KEY, attachmentNotification.uri) }, PendingIntent.FLAG_CANCEL_CURRENT) - val fileName = DocumentFile.fromSingleUri(this, downloadFileUri)?.name ?: "" + val fileName = DocumentFile.fromSingleUri(this, attachmentNotification.uri)?.name ?: "" val builder = buildNewNotification().apply { setSmallIcon(R.drawable.ic_file_download_white_24dp) - setContentTitle(getString(R.string.download_attachment, fileName)) + when (attachmentNotification.streamDirection) { + AttachmentFileAction.StreamDirection.UPLOAD -> { + setContentTitle(getString(R.string.upload_attachment, fileName)) + } + AttachmentFileAction.StreamDirection.DOWNLOAD -> { + setContentTitle(getString(R.string.download_attachment, fileName)) + } + } setAutoCancel(false) - when (entryAttachment.downloadState) { + when (attachmentNotification.entryAttachmentState.downloadState) { AttachmentState.NULL, AttachmentState.START -> { setContentText(getString(R.string.download_initialization)) setOngoing(true) } AttachmentState.IN_PROGRESS -> { - if (entryAttachment.downloadProgression > 100) { + if (attachmentNotification.entryAttachmentState.downloadProgression > 100) { setContentText(getString(R.string.download_finalization)) } else { - setProgress(100, entryAttachment.downloadProgression, false) - setContentText(getString(R.string.download_progression, entryAttachment.downloadProgression)) + setProgress(100, + attachmentNotification.entryAttachmentState.downloadProgression, + false) + setContentText(getString(R.string.download_progression, + attachmentNotification.entryAttachmentState.downloadProgression)) } setOngoing(true) } - AttachmentState.COMPLETE, AttachmentState.ERROR -> { + AttachmentState.COMPLETE -> { setContentText(getString(R.string.download_complete)) - setContentIntent(pendingContentIntent) + when (attachmentNotification.streamDirection) { + AttachmentFileAction.StreamDirection.UPLOAD -> { + + } + AttachmentFileAction.StreamDirection.DOWNLOAD -> { + setContentIntent(pendingContentIntent) + } + } setDeleteIntent(pendingDeleteIntent) setOngoing(false) } + AttachmentState.ERROR -> { + setContentText(getString(R.string.error_file_not_create)) + setOngoing(false) + } } } - startForeground(notificationIdAttachment, builder.build()) + startForeground(attachmentNotification.notificationId, builder.build()) } override fun onDestroy() { @@ -207,6 +225,7 @@ class AttachmentFileNotificationService: LockNotificationService() { private data class AttachmentNotification(var uri: Uri, var notificationId: Int, + var streamDirection: AttachmentFileAction.StreamDirection, var entryAttachmentState: EntryAttachmentState, var attachmentFileAction: AttachmentFileAction? = null) { override fun equals(other: Any?): Boolean { @@ -236,7 +255,7 @@ class AttachmentFileNotificationService: LockNotificationService() { val nextNotificationId = (attachmentNotificationList.maxByOrNull { it.notificationId } ?.notificationId ?: notificationId) + 1 val entryAttachmentState = EntryAttachmentState(entryAttachment) - val attachmentNotification = AttachmentNotification(downloadFileUri, nextNotificationId, entryAttachmentState) + val attachmentNotification = AttachmentNotification(downloadFileUri, nextNotificationId, streamDirection, entryAttachmentState) attachmentNotificationList.add(attachmentNotification) mainScope.launch { diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index b16b3c2a8..f6f215faf 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -43,7 +43,7 @@ العنوان رابط اسم المستخدم - تعذر إنشاء الملف : + تعذر إنشاء الملف تأكد أن المسار صحيح. ادخل اسمًا. كلمتا السر غير متطابقتين. diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 761ef5417..950370b37 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -57,7 +57,7 @@ Usuari L\'encriptació Arcfour no està suportada. KeePassDX no pot manejar aquesta URI. - No s\'ha pogut crear l\'arxiu: + No s\'ha pogut crear l\'arxiu No s\'ha pogut llegir la base de dades. Assegureu-vos que el camí eś correcte. Introduïu-hi un nom. diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 59ed25a64..f28e62fa1 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -59,7 +59,7 @@ Uživatelské jméno Arcfour proudová šifra není podporována. KeePassDX nemůže zpracovat toto URI. - Soubor se nedaří vytvořit: + Soubor se nedaří vytvořit Nelze přečíst databázi. Neplatná cesta. Vložte jméno. @@ -440,7 +440,7 @@ Zahajuji… Probíhá: %1$d%% Dokončuji… - Ukončeno! Klepnout pro otevření souboru. + Klepnout pro otevření souboru Skrýt propadlé záznamy Propadlé záznamy jsou skryty Kontakt diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index b56f36cab..5547cf6af 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -58,7 +58,7 @@ Brugernavn Arcfour stream cipher er ikke understøttet. Kunne ikke håndtere URI i KeePassDX. - Kunne ikke oprette fil: + Kunne ikke oprette fil Kunne ikke læse databasen. Sørg for, at stien er korrekt. Indtast et navn. @@ -440,7 +440,7 @@ Initialiserer… I gang: %1$d%% Færdiggørelse… - Komplet! Tryk for at åbne filen. + Komplet! Skjul udløbne poster Udløbne poster er skjult Kontakt diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 8e2eb6781..b80ddade0 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -67,7 +67,7 @@ Benutzername Die RC4/Arcfour-Stromverschlüsselung wird nicht unterstützt. KeePassDX kann diese URI-Adresse nicht verarbeiten. - Konnte Datei nicht erstellen: + Konnte Datei nicht erstellen Datenbank nicht lesbar. Sicherstellen, dass der Pfad korrekt ist. Namen eingeben. @@ -456,7 +456,7 @@ Initialisieren… Fortschritt: %1$d%% Fertigstellen… - Vollständig! Tippen Sie, um die Datei zu öffnen. + Vollständig! Abgelaufene Einträge ausblenden Abgelaufene Einträge werden ausgeblendet App-Design diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 3941ebd0f..f93c2ede2 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -61,7 +61,7 @@ Όνομα Χρήστη Η ροή κρυπτογράφησης Arcfour δεν υποστηρίζεται. Το KeePassDX δε μπορεί να χειριστεί αυτή τη διεύθυνση URI. - Δεν ήταν δυνατή η δημιουργία αρχείου: + Δεν ήταν δυνατή η δημιουργία αρχείου Δεν ήταν δυνατή η ανάγνωση της βάσης δεδομένων. Βεβαιωθείτε ότι η διαδρομή είναι σωστή. Εισαγάγετε ένα όνομα. @@ -442,7 +442,7 @@ Αρχικοποίηση… Σε εξέλιξη: %1$d%% Ολοκλήρωση… - Ολοκληρώθηκε! Πατήστε για να ανοίξετε το αρχείο. + Ολοκληρώθηκε! Απόκρυψη καταχωρίσεων που έχουν λήξει Οι καταχωρίσεις που έχουν λήξει είναι κρυμμένες Εμφάνιση πρόσφατων αρχείων diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 0891405c1..341c9ba3d 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -58,7 +58,7 @@ Nombre de usuario No se admite el cifrador de flujo Arcfour. KeePassDX no puede manejar este URI. - No se pudo crear el archivo: + No se pudo crear el archivo No se pudo leer la base de datos. Asegúrese de que la ruta sea correcta. Proporcione un nombre. @@ -397,7 +397,7 @@ No fue posible crear el archivo de base de datos. Parar lograr <strong>mantener nuestra libertad</strong>, <strong>corregir errores</strong>, <strong>agregar características</strong> y <strong>siempre estar activos</strong>, contamos con tu <strong>contribución</strong>. Añadir elemento - Descarga completa! Toca para abrir el archivo. + Descarga completa! Finalizando… En progreso: %1$d%% Inicializando… diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml index d58a8eef3..0941855ca 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -61,7 +61,7 @@ Erabiltzaile izena Arcfour stream zifratze sisterako ez dago euskarririk.. KeePassDX-ek ezin dut uri hau kudeatu. - Ezin izan da fitxategia sortu: + Ezin izan da fitxategia sortu Datubase baliogabea. Fitxategirako bide baliogabea. Izen bat behar da. diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index 4a2ce5acb..3d39a5e76 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -61,7 +61,7 @@ Käyttäjänimi Arcfour stream cipher ei ole tuettu. KeePassDX ei osaa käsitellä tätä osoitetta. - Tiedoston luonti epäonnistui: + Tiedoston luonti epäonnistui Tietokantaa ei pystytty lukemaan. Varmista että polku on oikein. Anna nimi. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 530a23e77..1b63659f7 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -65,7 +65,7 @@ Nom d’utilisateur Le chiffrement de flux Arcfour n’est pas pris en charge. Impossible de gérer cette URI dans KeePassDX. - Impossible de créer le fichier : + Impossible de créer le fichier Impossible de lire la base de données. Vérifier la validité du chemin d’accès. Saisir un nom. @@ -456,7 +456,7 @@ Initialisation… En cours : %1$d%% Finalisation… - Terminé ! Appuyer pour ouvrir le fichier. + Terminé ! Masquer les entrées expirées Les entrées expirées sont cachées Contact diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index d472c3131..e08f3687d 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -62,7 +62,7 @@ यू.आर.एल उपयोगकर्ता का नाम KeePassDX में इस URI को संभाल नहीं सका। - फाइल नहीं बना सका: + फाइल नहीं बना सका डाटाबेस नहीं पढ़ सका। सुनिश्चित करें कि रास्ता सही है। एक नाम दर्ज करें। diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 2231d7292..eee32dd68 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -238,7 +238,7 @@ Pod-čvor Pristupljeno Arcfour šifriranje nije podržano. - Nije moguće stvoriti datoteku: + Nije moguće stvoriti datoteku Nije moguće čitati bazu podataka. Provjeri putanju do datoteke. Neispravan OTP tajni ključ. @@ -469,7 +469,7 @@ \n \nGrupe (~mape) organiziraju unose u bazi podataka. U tijeku: %1$d%% - Gotovo! Dodirni, za otvaranje datoteke. + Gotovo! Automatski se vrati na prethodnu tipkovnicu nakon izvršavanja automatske radnje tipke Automatska radnja tipke Automatski se prebaci na prethodnu tipkovnicu pri ekranu za unos podataka za prijavu u bazu podataka diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index eb91ae444..63b34721b 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -60,7 +60,7 @@ Felhasználónév Az Arcfour adatfolyam-titkosítás nem támogatott. Ez az URI nem kezelhető a KeePassDX-ben. - Nem sikerült létrehozni a fájlt: + Nem sikerült létrehozni a fájlt Az adatbázist nem lehet olvasni. Győződjön meg róla, hogy az útvonal helyes. Adjon meg egy nevet. @@ -384,7 +384,7 @@ Kapcsolat A lejárt bejegyzések rejtettek Lejárt bejegyzések elrejtése - Kész! Koppintson a fájl megnyitásához. + Kész! Befejezés… Folyamatban: %1$d%% Előkészítés… diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 4314b3df3..a41e94b97 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -63,7 +63,7 @@ Nome utente La codifica a flusso Arcfour non è supportata. KeePassDX non può gestire questo URI. - Impossibile creare il file: + Impossibile creare il file Lettura del database fallita. Assicurati che il percorso sia corretto. Inserisci un nome. @@ -448,7 +448,7 @@ I record scaduti sono nascosti Nascondi i record scaduti Imposta la gestione delle OTP (HOTP / TOTP) per generare un token richiesto per la 2FA. - Completo! Tocca per aprire il file. + Completo! Finalizzazione… Avanzamento %1$d%% Inizializzazione… diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 0796b6d87..a9da2a051 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -60,7 +60,7 @@ שם משתמש צופן זרם Arcfour אינו נתמך. KeePassDX לא יכול לטפל ב-URI הזה. - לא הצליח ליצור קובץ: + לא הצליח ליצור קובץ מסד נתונים לא חוקי. נתיב לא חוקי. שם נדרש. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 1f55cc7f5..0589dcea8 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -57,7 +57,7 @@ ユーザー名 Arcfour ストリーム暗号には対応していません。 KeePassDX ではこの URI を処理できませんでした。 - ファイルを作成できませんでした: + ファイルを作成できませんでした データベースを読み取れませんでした。 パスが正しいことを確認してください。 名前を入力してください。 @@ -407,7 +407,7 @@ デバイスのクリップボードを使用して、エントリーのフィールドをコピーします この機能をすばやくリリースするために開発に勤しんでいます。 パスワードとすべての ID フィールドを格納するカスタム キーボードを有効にします - 完了しました!タップするとファイルが開きます。 + 完了しました! 進行中:%1$d%% %1$s をダウンロード 貢献 diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index c5e6b8cb9..bfa3010ae 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -64,7 +64,7 @@ 아이디 Arcfour 스트림 암호는 지원되지 않습니다. KeePassDX에서는 이 URI를 처리할 수 없습니다. - 파일을 생성할 수 없음: + 파일을 생성할 수 없음 데이터베이스를 읽을 수 없음. 경로가 확실한지 확인하십시오. 이름을 입력하십시오. diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml index b6f76af56..e076478a2 100644 --- a/app/src/main/res/values-lv/strings.xml +++ b/app/src/main/res/values-lv/strings.xml @@ -58,7 +58,7 @@ Lietotāja vārds Arcfour plūsmas šifrs netiek atbalstīts. Neizdevās pātiet uz norādīto adresi. - Neizdevās izveidot failu: + Neizdevās izveidot failu Nederīga datu bāze. Nederīgs ceļš. Vajag ievadīt faila nosaukumu diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml index 94fb1f5e2..dd4416a62 100644 --- a/app/src/main/res/values-ml/strings.xml +++ b/app/src/main/res/values-ml/strings.xml @@ -76,7 +76,7 @@ ഡാറ്റാബേസ് സംരക്ഷിക്കാൻ കഴിഞ്ഞില്ല. പാസ്‌വേഡുകൾ പൊരുത്തപ്പെടുന്നില്ല. ഒരു പേര് നൽകുക. - ഫയൽ സൃഷ്ടിക്കാൻ കഴിഞ്ഞില്ല: + ഫയൽ സൃഷ്ടിക്കാൻ കഴിഞ്ഞില്ല ഡാറ്റാബേസ് വായിക്കാൻ സാധിച്ചില്ല. ഉപയോക്തൃനാമം URL @@ -154,7 +154,7 @@ ChaCha20 Twofish Rijndael (AES) - പൂർത്തിയാക്കി! ഫയൽ തുറക്കാൻ സ്പർശിക്കുക + പൂർത്തിയാക്കി! നിങ്ങളുടെ ഡാറ്റാബേസ് ഫയൽ സൃഷ്ടിക്കുക സ്വയം തിരയൽ കീബോർഡ് മാറ്റുക diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index a0249162e..5be5816bb 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -64,7 +64,7 @@ Brukernavn Arcfour-strømchifferet støttes ikke. KeePassDX kan ikke håntere denne URI-en. - Kunne ikke opprette fil: + Kunne ikke opprette fil Ugyldig database eller fremmed hovednøkkel. Ugyldig sti. Et navn er påkrevd. @@ -401,7 +401,7 @@ Last ned %1$s Underveis: %1$d%% Fullfører… - Fullført. Trykk for å åpne filen. + Fullført! Skjul utløpte oppføringer Hurtigsøk Legg til vedlegg diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 836db35b5..13f7be0b9 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -59,7 +59,7 @@ Gebruikersnaam De Arcfour stream-versleuteling wordt niet ondersteund. KeePassDX kan deze URI niet verwerken. - Bestand is niet aangemaakt: + Bestand is niet aangemaakt Kan database niet uitlezen. Zorg ervoor dat het pad juist is. Voer een naam in. @@ -433,7 +433,7 @@ Databaselocatie opslaan Verlopen items worden verborgen Verberg verlopen items - Klaar! Tik om het bestand te openen. + Tik om het bestand te openen Voltooien… Voortgang: %1$d%% Initialiseren… diff --git a/app/src/main/res/values-nn/strings.xml b/app/src/main/res/values-nn/strings.xml index 1ac743e35..e1826a928 100644 --- a/app/src/main/res/values-nn/strings.xml +++ b/app/src/main/res/values-nn/strings.xml @@ -56,7 +56,7 @@ Brukaramn Kan ikkje bruka Arcfour dataflytkryptering. KeePassDX kan ikkje bruka denne ressursen. - Klarte ikkje å laga fila: + Klarte ikkje å laga fila Ugyldig database. Ugyldig stig. Treng eit namn. diff --git a/app/src/main/res/values-pa/strings.xml b/app/src/main/res/values-pa/strings.xml index 44d72f85b..d8186017f 100644 --- a/app/src/main/res/values-pa/strings.xml +++ b/app/src/main/res/values-pa/strings.xml @@ -6,7 +6,7 @@ ਆਈਕਾਨ ਪੈਕ ਐਪ ਵਿੱਚ ਵਰਤਿਆ ਥੀਮ ਐਪ ਦਾ ਥੀਮ - ਪੂਰਾ ਹੋਇਆ! ਫ਼ਾਇਲ ਖੋਲ੍ਹਣ ਲਈ ਛੂਹੋ। + ਪੂਰਾ ਹੋਇਆ! …ਪੂਰਾ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ਜਾਰੀ ਹੈ: %1$d%% …ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ @@ -156,7 +156,7 @@ ਗ਼ਲਤ OTP ਭੇਤ ਹੈ। ਪਾਥ ਦੇ ਠੀਕ ਹੋਣ ਨੂੰ ਯਕੀਨੀ ਬਣਾਓ। ਡਾਟਾਬੇਸ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ। - ਫ਼ਾਇਲ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕੀ: + ਫ਼ਾਇਲ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕੀ ਇਹ URI KeePassDX ਵਿੱਚ ਹੈਂਡਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ। Arcfour ਸਟਰੀਮ ਸੀਫ਼ਰ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। ਵਰਤੋਂਕਾਰ-ਨਾਂ diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 83be08535..8b226e240 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -55,7 +55,7 @@ Nazwa użytkownika Strumieniowe szyfrowanie Arcfour nie jest wspierane. Nie można obsłużyć tego identyfikatora URI w KeePassDX. - Nie można utworzyć pliku: + Nie można utworzyć pliku Nie można odczytać bazy danych. Upewnij się, że ścieżka jest prawidłowa. Wpisz nazwę. @@ -442,7 +442,7 @@ Inicjowanie… W trakcie realizacji: %1$d%% Kończę… - Kompletny! Stuknij, aby otworzyć plik. + Kompletny! Ukryj wygasłe wpisy Wygasłe wpisy są ukryte Kontakt diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 2861988f9..91212d4f6 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -56,7 +56,7 @@ Nome de usuário A cifra de fluxo Arcfour não é suportada. Não pôde tratar esta URI no KeePassDX. - Não foi possível criar o arquivo: + Não foi possível criar o arquivo Falha ao ler o banco. Certifique-se de que o caminho está correto. Digite um nome. @@ -443,7 +443,7 @@ Sugerir resultados de pesquisa de domínios da internet ou de aplicações automaticamente Entradas expeiradas foram escondidas Esconder entradas expiradas - Completo! Toque para abrir o aquivo. + Completo! Finalizando… Em progresso: %1$d%% Inicializando… diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index dac64284d..d069a7a87 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -61,7 +61,7 @@ Nome de utilizador A cifra de fluxo Arcfour não é suportada. Não pôde tratar esta URI no KeePassDX. - Não foi possível criar o ficheiro: + Não foi possível criar o ficheiro Não foi possível ler a base de dados. Certifique-se que o caminho é válido. Introduza um nome. @@ -428,7 +428,7 @@ A finalizar… Configurações de preenchimento automático Limitar a quantidade de itens do histórico por entrada - Completo! Toque para abrir o ficheiro. + Completo! Atualizar Contribuição Esconder ligações quebradas na lista de bases de dados recentes diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index b11921c25..412513797 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -95,7 +95,7 @@ Nume utilizator Cifrarea fluxului Arcfour nu este acceptată. Nu s-a putut gestiona acest URI în KeePassDX. - Nu s-a putut creea fisierul: + Nu s-a putut creea fisierul Nu s-a putut citi baza de date. Asigurați-vă că calea este corectă. Secret OTP nevalid. @@ -418,7 +418,7 @@ Inițializare … In progress: %1$d%% Finalizare … - Complet! Atingeți pentru a deschide fișierul. + Complet! Rijndael (AES) Twofish ChaCha20 diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index b76ff35d7..aadd8c830 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -61,7 +61,7 @@ Имя пользователя Потоковый шифр Arcfour не поддерживается. Невозможно обработать указанный URI в KeePassDX. - Невозможно создать файл: + Невозможно создать файл Невозможно прочитать базу. Убедитесь, что путь указан правильно. Введите название. @@ -442,7 +442,7 @@ Инициализация… Выполнение: %1$d%% Завершение… - Готово! Нажмите, чтобы открыть файл. + Готово! Скрывать устаревшие записи Записи с истёкшим сроком окончания будут скрыты Контактная информация diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 6933d7455..1df29f1f9 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -57,7 +57,7 @@ Meno používateľa Arcfour stream šifra nieje podporovaná. KeePassDX nevie použiť túto uri. - Neviem vytvoriť súbor: + Neviem vytvoriť súbor Chybná databáza. Chybná cesta. Vyžaduje sa meno. diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 625c6d4d7..7dae12187 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -60,7 +60,7 @@ Användarnamn Strömchiffret Arcfour stöds inte. KeePassDX kunde inte hantera denna URI. - Kunde inte skapa filen: + Kunde inte skapa filen Kunde inte läsa databas. Se till att sökvägen är korrekt. Ange ett namn. @@ -446,7 +446,7 @@ Kontakt Utgångna poster är dolda Dölj utgångna poster - Färdigt! Klicka för att öppna filen. + Färdigt! Färdigställande… Händelse %1$d%% Initiering… diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 9b0a4937e..a1cc254ec 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -53,7 +53,7 @@ Başlık URL Kullanıcı adı - Dosya oluşturulamadı: + Dosya oluşturulamadı Veritabanı okunamadı. Yolun doğru olduğundan emin olun. Bir isim girin. @@ -426,7 +426,7 @@ Başlatılıyor… Devam ediyor: %1$d%% Sonlandırılıyor… - Tamamlandı! Dosyayı açmak için dokunun. + Tamamlandı! Süresi dolmuş girdileri gizle Süresi dolmuş girdiler gizlenecek Veri tabanı değişikliklerini kaydetmek için dosya yazma erişimi ver diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index a37c54ede..fef30ce0c 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -57,7 +57,7 @@ Ім’я користувача Потокове шифрування Arcfour не підтримується. Не вдалось обробити цей URI в KeePassDX. - Не вдалося створити нотатку: + Не вдалося створити нотатку Неможливо прочитати базу даних. Переконайтеся у правильності шляху. Введіть назву. @@ -279,7 +279,7 @@ Argon2 AES ChaCha20 - Готово! Торкніться, щоб відкрити файл. + Готово! Завершення… Виконується: %1$d%% Ініціалізація… diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index a4350c64f..eaffe5591 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -57,7 +57,7 @@ 用户名 不支持Arcfour流式加密。 无法在KeePassDX中处理此URI。 - 无法新建文件: + 无法新建文件 无法读取数据库。 请确保路径正确。 输入名称。 @@ -444,7 +444,7 @@ 正在初始化… 进行中:%1$d%% 正在完成… - 完成!点击打开文件。 + 完成! 隐藏过期条目 过期条目将被隐藏 联系我们 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 9b570f381..b0c9be168 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -56,7 +56,7 @@ 用戶名 Arcfour流密碼不被支援。 KeePassDX無法處理此URI。 - 不能創建檔案: + 不能創建檔案 無法閱讀資料庫。 請確保路徑正確。 請輸入用戶名。 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index aa26b9b4c..ffcfdd962 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -103,7 +103,7 @@ Username The Arcfour stream cipher is not supported. Could not handle this URI in KeePassDX. - Could not create file: + Could not create file Could not read the database. Make sure the path is correct. Invalid OTP secret. @@ -451,10 +451,11 @@ Download Contribute Download %1$s + Upload %1$s Initializing… In progress: %1$d%% Finalizing… - Tap to open the file. + Complete! Rijndael (AES) Twofish ChaCha20