From c8efdaa2f4433a7b102fa293fb0c72cbb7a1b4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Tue, 25 Jul 2023 08:37:48 +0200 Subject: [PATCH] Add explanation for unhiding folders starting with . --- .../gallery/pro/adapters/DirectoryAdapter.kt | 10 ++++++++-- app/src/main/res/values-ar/strings.xml | 3 ++- app/src/main/res/values-az/strings.xml | 1 + app/src/main/res/values-be/strings.xml | 1 + app/src/main/res/values-bg/strings.xml | 1 + app/src/main/res/values-bn/strings.xml | 1 + app/src/main/res/values-ca/strings.xml | 3 ++- app/src/main/res/values-cs/strings.xml | 3 ++- app/src/main/res/values-da/strings.xml | 3 ++- app/src/main/res/values-de/strings.xml | 3 ++- app/src/main/res/values-el/strings.xml | 3 ++- app/src/main/res/values-eo/strings.xml | 1 + app/src/main/res/values-es/strings.xml | 3 ++- app/src/main/res/values-et/strings.xml | 3 ++- app/src/main/res/values-eu/strings.xml | 1 + app/src/main/res/values-fa/strings.xml | 1 + app/src/main/res/values-fi/strings.xml | 1 + app/src/main/res/values-fr/strings.xml | 3 ++- app/src/main/res/values-gl/strings.xml | 1 + app/src/main/res/values-hr/strings.xml | 3 ++- app/src/main/res/values-hu/strings.xml | 1 + app/src/main/res/values-in/strings.xml | 1 + app/src/main/res/values-it/strings.xml | 3 ++- app/src/main/res/values-iw/strings.xml | 1 + app/src/main/res/values-ja/strings.xml | 1 + app/src/main/res/values-ko-rKR/strings.xml | 1 + app/src/main/res/values-lt/strings.xml | 1 + app/src/main/res/values-nb-rNO/strings.xml | 1 + app/src/main/res/values-ne/strings.xml | 1 + app/src/main/res/values-nl/strings.xml | 3 ++- app/src/main/res/values-pa-rPK/strings.xml | 1 + app/src/main/res/values-pl/strings.xml | 3 ++- app/src/main/res/values-pt-rBR/strings.xml | 1 + app/src/main/res/values-pt/strings.xml | 3 ++- app/src/main/res/values-ro/strings.xml | 1 + app/src/main/res/values-ru/strings.xml | 3 ++- app/src/main/res/values-sk/strings.xml | 1 + app/src/main/res/values-sl/strings.xml | 1 + app/src/main/res/values-sr/strings.xml | 1 + app/src/main/res/values-sv/strings.xml | 1 + app/src/main/res/values-ta/strings.xml | 1 + app/src/main/res/values-tr/strings.xml | 3 ++- app/src/main/res/values-uk/strings.xml | 3 ++- app/src/main/res/values-vi/strings.xml | 3 ++- app/src/main/res/values-zh-rCN/strings.xml | 3 ++- app/src/main/res/values-zh-rHK/strings.xml | 1 + app/src/main/res/values-zh-rTW/strings.xml | 1 + app/src/main/res/values/strings.xml | 1 + 48 files changed, 74 insertions(+), 21 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/DirectoryAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/DirectoryAdapter.kt index 68046252e..8ddf8f864 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/DirectoryAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/DirectoryAdapter.kt @@ -193,10 +193,10 @@ class DirectoryAdapter( private fun checkHideBtnVisibility(menu: Menu, selectedPaths: ArrayList) { menu.findItem(R.id.cab_hide).isVisible = - (!isRPlus() || isExternalStorageManager()) && selectedPaths.any { !it.doesThisOrParentHaveNoMedia(HashMap(), null) && !File(it).isHidden } + (!isRPlus() || isExternalStorageManager()) && selectedPaths.any { !it.doesThisOrParentHaveNoMedia(HashMap(), null) } menu.findItem(R.id.cab_unhide).isVisible = - (!isRPlus() || isExternalStorageManager()) && selectedPaths.any { it.doesThisOrParentHaveNoMedia(HashMap(), null) && !File(it).isHidden } + (!isRPlus() || isExternalStorageManager()) && selectedPaths.any { it.doesThisOrParentHaveNoMedia(HashMap(), null) } } private fun checkPinBtnVisibility(menu: Menu, selectedPaths: ArrayList) { @@ -304,6 +304,11 @@ class DirectoryAdapter( } } } else { + if (selectedPaths.any { File(it).isHidden }) { + ConfirmationDialog(activity, "", R.string.cant_unhide_folder, R.string.ok, 0) {} + return + } + selectedPaths.filter { it != FAVORITES && it != RECYCLE_BIN && (selectedPaths.size == 1 || !config.isFolderProtected(it)) }.forEach { val path = it activity.handleLockedFolderOpening(path) { success -> @@ -583,6 +588,7 @@ class DirectoryAdapter( config.isDeletePasswordProtectionOn -> activity.handleDeletePasswordProtection { deleteFolders() } + config.skipDeleteConfirmation -> deleteFolders() else -> { val itemsCnt = selectedKeys.size diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 2028d094c..60cb254d7 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -55,6 +55,7 @@ إدارة المجلدات المخفية يبدو أنه لا توجد لديك أي مجلدات مخفية بملف \".nomedia\". يجب عليك منح التطبيق حق الوصول إلى جميع الملفات لرؤية الملفات المخفية ، وإلا فإنه لا يمكن أن يعمل. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. المجلدات المضمنة إدارة المجلدات المضمنة @@ -388,4 +389,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml index 99e3fa944..e14a6cee7 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders Manage included folders diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml index 514d4c6a3..f0f65d964 100644 --- a/app/src/main/res/values-be/strings.xml +++ b/app/src/main/res/values-be/strings.xml @@ -93,6 +93,7 @@ \nДаданне некаторых элементаў сюды не прывядзе да выключэння якой-небудзь іншай тэчкі. Здаецца, у вас няма тэчак, схаваных з файлам \".nomedia\". Вы павінны даць праграме доступ да ўсіх файлаў, каб бачыць схаваныя файлы, інакш яна не можа працаваць. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Вышыня Захоўвайце суадносіны бакоў Увядзіце сапраўднае рашэнне diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 29272752d..fea7c9326 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -55,6 +55,7 @@ Управление на скритите папки Изглежда нямате папки скрити чрез \'.nomedia\' файл. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Включени папки Управление на включените папки diff --git a/app/src/main/res/values-bn/strings.xml b/app/src/main/res/values-bn/strings.xml index 33bca0989..f191da801 100644 --- a/app/src/main/res/values-bn/strings.xml +++ b/app/src/main/res/values-bn/strings.xml @@ -55,6 +55,7 @@ লুকানো ফোল্ডারগুলি পরিচালনা করুন দেখে মনে হচ্ছে আপনার সাথে কোনও ফোল্ডার লুকানো নেই \".nomedia\" ফাইল। You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. অন্তর্ভুক্ত ফোল্ডার অন্তর্ভুক্ত ফোল্ডার ব্যবস্থাপনা করুন diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index ba2663ca9..99b1d5b29 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -55,6 +55,7 @@ Gestiona les carpetes ocultes Sembla que no teniu cap carpeta oculta amb el fitxer «.nomedia». Cal concedir a l\'aplicació accés a tots els fitxers per veure els fitxers ocults, en cas contrari podria no funcionar. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Carpetes incloses Gestiona les carpetes incloses @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index fb22dcaa3..4fe6ce9de 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -55,6 +55,7 @@ Spravovat skryté složky Zdá se, že nemáte žádné složky skryté pomocí souboru \".nomedia\". Pro zobrazení skrytých souborů musíte aplikaci povolit přístup ke všem souborům. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Zahrnuté složky Spravovat zahrnuté složky @@ -385,4 +386,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 9a6dbdf62..e59711fe0 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -55,6 +55,7 @@ Administrer skjulte mapper Det ser ikke ud til at du har nogen skjulte mapper med en \".nomedia\"-fil. Du skal give app\'en "Alle filer" tilladelsen for at se skjulte filer, ellers vil det ikke fungere. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Inkluderede mapper Administrer inkluderede mapper @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 0887f15c4..36a33da83 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -55,6 +55,7 @@ Versteckte Ordner verwalten Keinen mit einer .nomedia-Datei versteckten Ordner gefunden. Du musst der App den Zugriff auf alle Dateien gewähren, um versteckte Dateien zu sehen, sonst funktioniert sie nicht. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Einbezogene Ordner Einbezogene Ordner verwalten @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 1840f3e1a..68893e3f4 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -55,6 +55,7 @@ Διαχείριση κρυφών φακέλων Φαίνεται πως δεν υπάρχουν κρυφοί φάκελοι με \".nomedia\" αρχείο. Πρέπει να εκχωρήσετε στην εφαρμογή πρόσβαση σε \"Όλα τα αρχεία\" για να δείτε τα κρυφά αρχεία, διαφορετικά δεν μπορεί να λειτουργήσει. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Συμπεριλαμβανόμενοι Φάκελοι Διαχείριση συμπεριλαμβανόμενων Φακέλων @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml index 317e6aee8..14f78d505 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders Manage included folders diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index caaa486d1..26e0b4ad8 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -55,6 +55,7 @@ Gestionar carpetas ocultas Parece que no tiene carpetas ocultas con archivos \".nomedia\". Tienes que conceder a la aplicación el acceso a todos los archivos para ver los archivos ocultos, de lo contrario no puede funcionar. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Carpetas incluidas Gestionar carpetas incluidas @@ -385,4 +386,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml index 658efc1cf..ba8e12507 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -55,6 +55,7 @@ Halda peidetud kaustu Tundub, et sa pole „.nomedia“ faili abil ühtegi kausta märkinud peidetuks. Peidetud failide nägemiseks pead andma sellele rakendusele juurdepääsu kõikidele failidele, muidu ei saa see töötada. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Kaasatud kaustad Halda kaasatud kaustu @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml index b2f47be08..692a9182f 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -55,6 +55,7 @@ Kudeatu ezkutatutako karpetak Badirudi \".nomedia\" fitxategia duen ezkutatutako karpetarik ez duzula. Ezkutuko fitxategiak ikusteko Fitxategi guztiak sarbidea eman behar diozu aplikazioari, bestela ezin izango du funtzionatu. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Sartutako karpetak Kudeatu sartutako karpetak diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index e9effb0ed..4935462df 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders Manage included folders diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index f817f358a..09c239567 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -55,6 +55,7 @@ Hallitse piilotettuja kansioita Näyttää siltä, että sinulla ei ole kansioita piilotettuna \".nomedia\" -tiedostolla. Sovellukselle on myönnettävä kaikkien tiedostojen käyttöoikeus, jotta se näkee piilotiedostot, tai se ei toimi. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Sisällytä kansiot Hallitse sisällettyjä kansioita diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 1b45180cf..40aabcc78 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -55,6 +55,7 @@ Gérer les dossiers cachés Il semblerait que vous n\'ayez pas de dossier caché par un fichier .nomedia. Vous devez accorder à l\'application l\'accès à tous les fichiers pour voir les fichiers cachés, sinon elle ne peut pas fonctionner. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Dossiers ajoutés Gérer les dossiers ajoutés @@ -385,4 +386,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 02dc9feeb..7ce87fd71 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -55,6 +55,7 @@ Xestionar cartafoles ocultos Semella que non tes ningún cartafol oculto cun ficheiro \".nomedia\". Ten que concederlle acceso á aplicación a todolos ficheiros para velos ficheiros ocultos, se non, a aplicación non pode funcionar. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Cartafoles incluídos Xestionar cartafoles incluídos diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index 1dd25ace3..5fba7f7e0 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -55,6 +55,7 @@ Upravljaj skrivenim mapama Čini se da nemaš skrivene mape s \".nomedia\" datotekom. Aplikaciji moraš odobriti pristup svim datotekama za prikaz skrivenih datoteka, inače neće raditi. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Uključene mape Upravljaj uključenim mapama @@ -385,4 +386,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index fac355cf7..66493759c 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -55,6 +55,7 @@ Rejtett mappák kezelése Úgy tűnik, nincsenek „.nomedia” fájllal elrejtett mappái. Meg kell adnia az alkalmazásnak az összes fájl elérésének engedélyét a rejtett fájlok megtekintéséhez, különben nem tud működni. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Belevett mappák Belevett mappák kezelése diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index 4a893b235..c35993cae 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -55,6 +55,7 @@ Kelola folder tersembunyi Sepertinya tidak ada folder yang tersembunyi dengan berkas \".nomedia\" di dalamnya. Anda harus memberikan aplikasi akses Semua Berkas untuk melihat berkas tersembunyi, jika tidak diberikan maka tidak akan bekerja. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Folder yang disertakan Kelola folder yang disertakan diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index c2d43716b..2fca23f03 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -55,6 +55,7 @@ Gestisci le cartelle nascoste Non c\'è alcuna cartella nascosta con un file .nomedia. È necessario concedere all\'applicazione l\'accesso a Tutti i file per vedere i file nascosti, altrimenti non può funzionare. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Includi cartelle Gestisci le cartelle incluse @@ -385,4 +386,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index f2524b315..7691364d4 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -55,6 +55,7 @@ נהל תיקיות נסתרות נראה שאין לך תיקיות מוסתרות עם קובץ \".nomedia\". You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. תיקיות כלולות נהל תיקיות כלולות diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index ea8bb9220..f7f199191 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -55,6 +55,7 @@ 非表示フォルダの管理 「.nomedia」で隠されたフォルダはありません。 非表示項目を表示するには [すべてのファイルへのアクセス] を許可する必要があります。許可をしないと機能しません。 + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. 追加フォルダ 追加フォルダの管理 diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index ba8dd3f7b..691bba5a6 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -55,6 +55,7 @@ 숨겨진 폴더 관리 \".nomedia\"파일로 숨겨진 폴더가 존재하지 않습니다. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. 포함된 폴더 포함된 폴더 관리 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index e3a1553d6..cc0fa170d 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -53,6 +53,7 @@ Tvarkyti paslėptus aplankus Atrodo, kad neturite jokių aplankų, paslėptų \". Nomedia \" bylos. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Įtraukti aplankai Tvarkyti įtrauktus aplankus diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml index 6ee12fc29..3a2f4a7fb 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -55,6 +55,7 @@ Håndter skjulte mapper Ser ut til at du ikke har skjult noen mapper med en \".nomedia\"-fil. Du må gi appen tilgang til alle filer for å se skjulte filer, ellers fungerer det ikke. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Inkluderte mapper Håndter inkluderte mapper diff --git a/app/src/main/res/values-ne/strings.xml b/app/src/main/res/values-ne/strings.xml index 12020fa9a..5eb268a3f 100644 --- a/app/src/main/res/values-ne/strings.xml +++ b/app/src/main/res/values-ne/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders Manage included folders diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 7dda81425..9294a47f2 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -55,6 +55,7 @@ Verborgen mappen beheren Er zijn geen mappen gevonden die zijn verborgen door bestand \".nomedia\". Geef de app het recht om alle bestanden te beheren om ook verborgen items te kunnen zien. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Toegevoegde mappen Toegevoegde mappen beheren @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml index f82f1d9d3..daed87159 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders Manage included folders diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 6c6d80d2c..96e36f6ac 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -55,6 +55,7 @@ Zarządzaj ukrytymi folderami Wygląda na to, że nie masz żadnych ukrytych folderów z plikiem „.nomedia”. Musisz przyznać aplikacji dostęp do wszystkich plików, aby widzieć ukryte pliki, inaczej to nie będzie działać. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Dołączone foldery Zarządzaj dołączonymi folderami @@ -386,4 +387,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 2c06b8de7..53c998f53 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -55,6 +55,7 @@ Gerenciar pastas ocultas Parece que você não tem nenhuma pasta oculta por um arquivo \".nomedia\". Você deve dar para o aplicativo a permissão de acesso à todos os arquivos para acessar arquivos encondidos, do contrário não pode funcionar. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Pastas inclusas Gerenciar pastas inclusas diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 90a29e0e9..039a1780e 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -55,6 +55,7 @@ Gerir pastas ocultas Parece que não existem pastas ocultas com ficheiros \".nomedia\". Tem que conceder o acesso a todos os ficheiros para ver os ficheiros ocultos. Se não o fizer, a aplicação não funcionará corretamente. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Pastas incluídas Gerir pastas incluídas @@ -385,4 +386,4 @@ Não encontrou todas as cadeias a traduzir? Existem mais algumas em: https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 584aa92fd..2eebed12c 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -55,6 +55,7 @@ Gestionează dosarele ascunse Se pare că nu ai niciun dosar ascuns cu un fișier \".nomedia\". You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Dosare incluse Gestionează dosarele incluse diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 0aa5e5a7e..f0ec2bfb7 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -55,6 +55,7 @@ Управление скрытыми папками Похоже, у вас нет папок, скрытых файлом \".nomedia\". Чтобы видеть скрытые файлы, необходимо предоставить приложению доступ ко всем файлам. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Включённые папки Управление включёнными папками @@ -386,4 +387,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index 9bf77b002..dfa2bbcc2 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -55,6 +55,7 @@ Spravovať skryté priečinky Zdá sa, že nemáte žiadne priečinky skryté pomocou súboru \".nomedia\". Na zobrazenie skrytých súborov musíte apke povoliť prístup ku všetkým súborom, ináč to fungovať nebude. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Pridané priečinky Spravovať pridané priečinky diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index f8dd0d43c..7acad2c08 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -55,6 +55,7 @@ Urejaj skrite mape Kot kaže, ne obstajajo skrite mape z \".nomedia\" datoteko. Dovoliti morate dostop do vseh datotek, da so vidne skrite datoteke, sicer ne bo delovalo. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Vključene mape Urejaj vključene mape diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 3d0f99deb..abb4dd1d1 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -55,6 +55,7 @@ Управљај скривеним фасциклама Изгледа да немате ни једну фасциклу скривену са \".nomedia\" датотеком. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Укључене фасцикле Управљај укљученим фасциклама diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 046e5bd54..8c74f7349 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -55,6 +55,7 @@ Hantera dolda mappar Det verkar som att inga mappar har dolts med \".nomedia\"-filer. Du måste ge appen behörighet till alla filer för att se dolda filer, annars fungerar det inte. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Inkluderade mappar Hantera inkluderade mappar diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index 731ac6eaa..3673e0d2f 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -55,6 +55,7 @@ மறைத்த அடைவுகளை நிர்வகி உங்களிடம் \".nomedia\" கோப்புடன் எவ்வடைகளும் மறைக்கப்படவில்லை என தெரிகிறது. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. உள்ளடக்கிய அடைவுகள் உள்ளடக்கிய அடைவுகளை நிர்வகி diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 6c0d2133c..20d8945dd 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -55,6 +55,7 @@ Gizli klasörleri yönet \".nomedia\" dosyasıyla gizlenmiş herhangi bir klasörünüz yok gibi görünüyor. Gizli dosyaları görmek için uygulamaya Tüm Dosyalar erişimi vermeniz gerekir, aksi takdirde çalışamaz. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Dahil edilen klasörler Dahil edilen klasörleri yönet @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index f86c804ea..44e2c4e10 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -55,6 +55,7 @@ Керування прихованими теками Схоже, у вас немає тек, прихованих за допомогою файлу \".nomedia\". Ви повинні надати доступ застосунку до всіх файлів, щоб бачити приховані файли, інакше це не може працювати. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Включені папки Керування включеними папками @@ -386,4 +387,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 22cd88424..acf78270b 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -55,6 +55,7 @@ Quản lý thư mục ẩn Có vẻ như bạn không có bất kỳ thư mục nào bị ẩn với tệp \".nomedia\". Bạn phải cấp cho ứng dụng quyền truy cập Tất cả các tệp để xem các tệp ẩn, nếu không ứng dụng sẽ không thể hoạt động. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Bao gồm các thư mục Quản lý các thư mục được bao gồm @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 5572536e9..41bfff7b6 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -55,6 +55,7 @@ 管理隐藏的文件夹 看起来您没有任何使用“.nomedia”文件隐藏的目录。 你必须授予访问所有文件的权限,应用才能看到隐藏的文件。 + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. 包含的文件夹 管理包含的文件夹 @@ -384,4 +385,4 @@ Haven't found some strings? There's more at https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> - \ No newline at end of file + diff --git a/app/src/main/res/values-zh-rHK/strings.xml b/app/src/main/res/values-zh-rHK/strings.xml index 87cd65aff..071f6e75e 100644 --- a/app/src/main/res/values-zh-rHK/strings.xml +++ b/app/src/main/res/values-zh-rHK/strings.xml @@ -56,6 +56,7 @@ 管理隱藏資料夾 您似乎沒有用\".nomedia\"檔案來隱藏的資料夾 You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. 包含資料夾 管理包含資料夾 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 314f5874f..48f5518ab 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -56,6 +56,7 @@ 管理隱藏資料夾 看來沒有以「.nomedia」檔案來隱藏的資料夾。 You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. 包含資料夾 管理包含資料夾 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 99fa0a115..4cc40006e 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -55,6 +55,7 @@ Manage hidden folders Seems like you don\'t have any folders hidden with a \".nomedia\" file. You have to grant the app All Files access to see hidden files, else it cannot work. + If a folder or one of its parent folders has a dot before its name, it is hidden and cannot be unhidden like this. You have to remove the dot by renaming it. Included folders