diff --git a/app/build.gradle b/app/build.gradle index f29cf1cc8..777d6a60b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -77,7 +77,7 @@ android { } dependencies { - implementation 'com.github.SimpleMobileTools:Simple-Commons:78bc75576d' + implementation 'com.github.SimpleMobileTools:Simple-Commons:f31f354315' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0' implementation 'it.sephiroth.android.exif:library:1.0.1' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.24' 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 2fe3db372..b3ed7542d 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 @@ -626,9 +626,9 @@ class DirectoryAdapter( return@handleSAFDialog } - activity.handleSAFDeleteSdk30Dialog(SAFPath){ + activity.handleSAFDialogSdk30(SAFPath){ if (!it) { - return@handleSAFDeleteSdk30Dialog + return@handleSAFDialogSdk30 } var foldersToDelete = ArrayList(selectedKeys.size) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/MediaAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/MediaAdapter.kt index e048add72..3ca5cd943 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/MediaAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/adapters/MediaAdapter.kt @@ -468,9 +468,9 @@ class MediaAdapter( } val sdk30SafPath = selectedPaths.firstOrNull { activity.isAccessibleWithSAFSdk30(it) } ?: getFirstSelectedItemPath() ?: return@handleSAFDialog - activity.handleSAFDeleteSdk30Dialog(sdk30SafPath){ + activity.handleSAFDialogSdk30(sdk30SafPath){ if (!it) { - return@handleSAFDeleteSdk30Dialog + return@handleSAFDialogSdk30 } val fileDirItems = ArrayList(selectedKeys.size) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/dialogs/PickDirectoryDialog.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/dialogs/PickDirectoryDialog.kt index b968b0f9b..7d81001fc 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/dialogs/PickDirectoryDialog.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/dialogs/PickDirectoryDialog.kt @@ -7,6 +7,7 @@ import com.simplemobiletools.commons.activities.BaseSimpleActivity import com.simplemobiletools.commons.dialogs.FilePickerDialog import com.simplemobiletools.commons.extensions.* import com.simplemobiletools.commons.helpers.VIEW_TYPE_GRID +import com.simplemobiletools.commons.helpers.isRPlus import com.simplemobiletools.commons.views.MyGridLayoutManager import com.simplemobiletools.gallery.pro.R import com.simplemobiletools.gallery.pro.adapters.DirectoryAdapter @@ -110,6 +111,9 @@ class PickDirectoryDialog( if (path.trimEnd('/') == sourcePath) { activity.toast(R.string.source_and_destination_same) return@DirectoryAdapter + } else if (isRPlus() && path.isBasePath(activity)) { + activity.toast(R.string.copy_to_restricted_folder_message) + return@DirectoryAdapter } else { activity.handleLockedFolderOpening(path) { success -> if (success) { diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/extensions/Activity.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/extensions/Activity.kt index f2ccfef4e..49e992678 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/extensions/Activity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/extensions/Activity.kt @@ -250,7 +250,11 @@ fun BaseSimpleActivity.tryCopyMoveFilesTo(fileDirItems: ArrayList, val destination = it handleSAFDialog(source) { if (it) { - copyMoveFilesTo(fileDirItems, source.trimEnd('/'), destination, isCopyOperation, true, config.shouldShowHidden, callback) + handleSAFDialogSdk30(fileDirItems[0].path){ + if (it) { + copyMoveFilesTo(fileDirItems, source.trimEnd('/'), destination, isCopyOperation, true, config.shouldShowHidden, callback) + } + } } } } diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index cca706716..4d48c14f3 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -39,6 +39,8 @@ تعيين كمجلد افتراضي إلغاء التعيين كمجلد افتراضي إعادة ترتيب المجلدات عن طريق السحب + The system does not allow copying to this folder. + فلترة الوسائط الصور @@ -372,4 +374,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 193d8abc1..b76450467 100644 --- a/app/src/main/res/values-az/strings.xml +++ b/app/src/main/res/values-az/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filter media diff --git a/app/src/main/res/values-bn/strings.xml b/app/src/main/res/values-bn/strings.xml index df015b5ee..e05dfec7f 100644 --- a/app/src/main/res/values-bn/strings.xml +++ b/app/src/main/res/values-bn/strings.xml @@ -33,6 +33,7 @@ ডিফল্ট ফোল্ডার হিশেবে সেট করুন ডিফল্ট ফোল্ডার হিশেবে আর রাখবেন না Reorder folders by dragging + The system does not allow copying to this folder. মিডিয়া ফিল্টার করুন diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 79765d2ee..26a4f252f 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -39,6 +39,8 @@ Estableix com a carpeta predeterminada Desactiva com a carpeta predeterminada Reordeneu les carpetes arrossegant-les + The system does not allow copying to this folder. + Filtre multimèdia Imatges @@ -372,4 +374,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 c058edfa4..5905e7c11 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -33,6 +33,8 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. + Filtr médií Obrázky diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 2921f9e91..9594febca 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -33,6 +33,8 @@ Vælg som standardmappe Fravælg som standardmappe Omorganiser mapper ved at trække + The system does not allow copying to this folder. + Filtrer medier Billeder @@ -418,4 +420,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 6b0a8fbf3..037d36927 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -39,6 +39,8 @@ Als Standardordner festlegen Nicht mehr als Standardordner festlegen Neuordnung von Ordnern durch Ziehen + The system does not allow copying to this folder. + Filter Bilder @@ -370,4 +372,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 a43fb258a..8f91cf01a 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -33,6 +33,7 @@ Ορισμός ως προεπιλεγμένου φακέλου Κατάργηση ως προεπιλεγμένου φακέλου Αναδιάταξη φακέλων με μεταφορά + The system does not allow copying to this folder. Φιλτράρισμα πολυμέσων diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml index 6ef72ba43..6063deed2 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filter media Bildoj diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 17fbe1bf7..1c8a7e6c9 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -33,6 +33,7 @@ Poner como carpeta predeterminada Quitar como carpeta predeterminada Reordenar carpetas arrastrándolas + The system does not allow copying to this folder. Filtro de medios diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml index e662caa63..20c488c3f 100644 --- a/app/src/main/res/values-et/strings.xml +++ b/app/src/main/res/values-et/strings.xml @@ -33,6 +33,8 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. + Filter media Pildid @@ -423,4 +425,4 @@ https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res --> Näita vahepealkirjades failide arvu - \ 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 63da7b83f..b2ef49e7b 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -33,6 +33,7 @@ Ezarri lehenetsitako karpeta gisa Kendu karpeta lehenetsitako karpeta gisa Berrordenatu karpetak arrastatuz + The system does not allow copying to this folder. Iragazi multimedia diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index f079e7f92..fe17c994f 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -33,6 +33,8 @@ تنظیم به عنوان شاخهٔ پیش‌گزیده برداشتن تنظیم به عنوان شاخهٔ پیش‌گزیده مرتب‌سازی مجدد شاخه‌ها با کشیدن + The system does not allow copying to this folder. + پالایش رسانه تصاویر diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index f4634fba3..a85d13d2d 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -39,6 +39,8 @@ Aseta oletushakemistoksi Älä käytä oletushakemistona Järjestä kansiot uudelleen vetämällä + The system does not allow copying to this folder. + Suodata media Kuvat @@ -426,4 +428,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-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 91f029e49..0a36dc0e1 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -33,6 +33,8 @@ Dossier par défaut Oublier le dossier Réordonner par glisser + The system does not allow copying to this folder. + Filtrer les médias Images @@ -346,12 +348,12 @@ Vous pouvez soit appuyer sur l\'option \"Afficher les fichiers cachés\" du menu de l\'écran principal, ou appuyer sur le bouton \"Afficher les fichiers cachés\" dans les paramètres de l\'application. Si vous voulez rétablir leur affichage, effectuez un appui prolongé dessus et appuyez sur le symbole \"Œil\" permettant l\'affichage. Les dossiers sont cachés en ajoutant un fichier .nomedia à leur racine, vous pouvez également supprimer ce fichier avec n\'importe quel explorateur de fichiers. Notez que le masquage fonctionne de manière récursive, donc si vous masquez un dossier, tous les sous-dossiers seront également masqués. Donc, pour afficher les sous-dossiers, vous devez afficher le dossier parent. Pourquoi l\'application prend-elle tant de place ? Le cache d\'application peut prendre jusqu\'à 250 Mo pour accélérer le chargement des images. Si l\'application occupe encore plus d\'espace, c\'est probablement parce que vous avez des éléments dans la corbeille. Ces fichiers comptent pour la taille de l\'application. Vous pouvez vider la corbeille en l\'ouvrant et en supprimant tous les fichiers ou à partir des paramètres de l\'application. Chaque fichier de la corbeille est automatiquement supprimé après 30 jours. - Qu\'est ce qui arrive aux fichiers et dossiers cachés et pourquoi je ne peut plus les voir \? + Qu\'est ce qui se passe avec les fichiers et dossiers cachés et pourquoi je ne peux plus les voir \? À partir d\'Android 11, vous ne pouvez plus masquer ou démasquer des fichiers ou des dossiers, et vous ne pouvez pas non plus voir ceux qui sont masqués dans les applications de la galerie. Vous devrez utiliser un gestionnaire de fichiers pour cela. - Pourquoi ne puis-je plus inclure les dossiers manquants \? - Cela a cessé de fonctionner en raison des modifications apportées au système avec Android 11. L\'application ne peut plus parcourir les dossiers réels, elle s\'appuie sur le MediaStore pour récupérer les données. - Pourquoi des publicités apparaissent-elles pendant la lecture d\'une vidéo \? - Nos applications ne comportent aucune publicité. Si vous les voyez pendant la lecture d\'une vidéo, vous devez utiliser le lecteur vidéo d\'une autre application. Essayez de trouver votre lecteur vidéo par défaut dans les paramètres de l\'appareil, puis faites « Effacer les par défaut » sur celui-ci. La prochaine fois que vous invoquerez une intention vidéo, vous verrez une invite de sélection d\'application, où vous pourrez choisir l\'application que vous voulez utiliser. + Pourquoi je ne peux plus inclure des dossiers manquants \? + Cette fonctionnalité ne fonctionne plus en raison des modifications apportées au système avec Android 11. L\'application ne peut plus parcourir les dossiers réels, elle s\'appuie sur le MediaStore pour récupérer les données. + Pourquoi des publicités apparaissent pendant la lecture d\'une vidéo \? + Nos applications ne comportent aucune publicité. Si vous en voyez pendant la lecture d\'une vidéo, vous devez sûrement utiliser le lecteur vidéo d\'une autre application. Essayez de trouver le lecteur vidéo par défaut dans les paramètres de votre appareil, puis faites \"Supprimer les valeurs par défaut\". Lors du prochain lancement d\'une vidéo, une invite de sélection d\'application s\'affichera, et vous pourrez choisir l\'application que vous souhaitez utiliser. Simple Gallery Pro – Gestionnaire et éditeur @@ -362,4 +364,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 efb0d0acd..721189382 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filtrar medios diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index cbdea0335..602372a5b 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filtriranje medija Slike diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 619938877..5be8c2978 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -39,6 +39,8 @@ Beállítás alapértelmezett mappaként Eltávolítás mint alapértelmezett mappa Mappák átrendezése húzással + The system does not allow copying to this folder. + Médiafájlok szűrése Képek diff --git a/app/src/main/res/values-id/strings.xml b/app/src/main/res/values-id/strings.xml index d0dccfca7..cc5fd711f 100644 --- a/app/src/main/res/values-id/strings.xml +++ b/app/src/main/res/values-id/strings.xml @@ -33,6 +33,8 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. + Filter media Gambar @@ -419,4 +421,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-it/strings.xml b/app/src/main/res/values-it/strings.xml index 509096c0c..75f9c163e 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -33,6 +33,7 @@ Imposta come cartella predefinita Non impostare come cartella predefinita Riordina cartelle trascinandole + The system does not allow copying to this folder. Filtra i file Immagini @@ -419,4 +420,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-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index df84ed5a3..e4f9613fd 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -33,6 +33,7 @@ デフォルトのフォルダとして設定 デフォルトのフォルダから外す Reorder folders by dragging + The system does not allow copying to this folder. 表示する形式 diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index dff518238..6202d4ac7 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. 필터 설정 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index 2a4079aff..0602adfb1 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -33,6 +33,8 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. + Filtruoti mediją Paveikslai diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml index d3552d336..332c83b36 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -33,6 +33,8 @@ Sett som standardmappe Ikke lenger sett som standardmappe Endre mapperekkefølge ved å dra + The system does not allow copying to this folder. + Filtrer media Bilder diff --git a/app/src/main/res/values-ne/strings.xml b/app/src/main/res/values-ne/strings.xml index 3f1185114..3b93230f7 100644 --- a/app/src/main/res/values-ne/strings.xml +++ b/app/src/main/res/values-ne/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filter media diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 6dc7d60d7..ab53183dd 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -35,6 +35,8 @@ Als standaardmap instellen Standaardmap herstellen Volgorde mappen bepalen met sleepgebaren + The system does not allow copying to this folder. + Media filteren Afbeeldingen @@ -424,4 +426,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-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index f905e55e1..cb5e11ad8 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -39,6 +39,8 @@ Ustaw jako folder domyślny Anuluj ustawienie folderu domyślnego Przeorganizuj foldery przeciągając + The system does not allow copying to this folder. + Filtruj multimedia Obrazy @@ -423,4 +425,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 19484f7ce..063dff715 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -39,6 +39,8 @@ Definir como pasta padrão Indefinir como pasta padrão Reordenar as pastas ao arrastar + The system does not allow copying to this folder. + Filtrar mídia Imagens diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index afb226c50..ce568e780 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -39,6 +39,8 @@ Utilizar como pasta padrão Deixar de utilizar como pasta padrão Organizar pasta por arrasto + The system does not allow copying to this folder. + Filtrar multimédia Imagens diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index 091d89780..40c28e5e1 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -33,6 +33,7 @@ Setază ca dosar implicit Dezactivează ca dosar implicit Reordonează dosarele prin tragere + The system does not allow copying to this folder. Filtrează elementele media diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index f069c111a..c53998ed6 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -33,6 +33,8 @@ Установить как папку по умолчанию Отключить как папку по умолчанию Менять порядок папок перетаскиванием + The system does not allow copying to this folder. + Фильтр медиа Изображения @@ -421,4 +423,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 7334908ed..83459c8e8 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -33,6 +33,7 @@ Nastaviť ako predvolený priečinok Odobrať predvolený priečinok Zmeniť poradie priečinkov presunutím + Systém nepovoľuje kopírovanie do tohto priečinka. Filter médií diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index 48de3381c..69d2394cf 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filtriranje datotek diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index 402a55197..c060ac7c8 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Филтрирај медију diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 253edb254..0bae76b42 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filtrera media diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index b2fd64d31..a87b7804d 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -39,6 +39,8 @@ இயல்புநிலை அடைவாக அமை இயல்புநிலை அடைவாக அமைக்காதே பிடித்திழுத்து அடைவுகளை மறுசீரமை + The system does not allow copying to this folder. + ஊடகத்தை வடிகட்டு படங்கள் @@ -427,4 +429,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-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index f372bd89d..e4261a599 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -39,6 +39,8 @@ Öntanımlı klasör olarak ayarla Öntanımlı klasör ayarını kaldır Sürükleyerek klasörleri yeniden sırala + The system does not allow copying to this folder. + Medyayı filtrele Resimler @@ -371,4 +373,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 5564782e1..3d1291e0c 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -33,6 +33,7 @@ Встановити теку за замовчуванням Відмінити встановлення теки за замовчуванням Сортувати папки шляхом переміщення + The system does not allow copying to this folder. Фільтр мультимедійних файлів diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 744272def..ef1f97bfd 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Lọc diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index cf59478d5..4fc539b36 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -39,6 +39,7 @@ 设置为默认文件夹 取消设置为默认文件夹 通过拖动重新排序文件夹 + The system does not allow copying to this folder. 筛选媒体文件 图片 @@ -427,4 +428,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 92f076531..2ea02b586 100644 --- a/app/src/main/res/values-zh-rHK/strings.xml +++ b/app/src/main/res/values-zh-rHK/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. 篩選媒體檔案 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index a6cec85f4..6d411b462 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -33,6 +33,7 @@ 設為預設資料夾 取消設為預設資料夾 Reorder folders by dragging + The system does not allow copying to this folder. 篩選媒體檔案 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 351dea3f9..eb4d5412d 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -33,6 +33,7 @@ Set as default folder Unset as default folder Reorder folders by dragging + The system does not allow copying to this folder. Filter media