diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/CreateNewFolderDialog.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/CreateNewFolderDialog.kt index 0aa46b604..54f481c4d 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/CreateNewFolderDialog.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/CreateNewFolderDialog.kt @@ -65,7 +65,7 @@ class CreateNewFolderDialog(val activity: BaseSimpleActivity, val path: String, } } File(path).mkdirs() -> sendSuccess(alertDialog, path) - isRPlus() && path.getParentPath().isBasePath(activity) -> activity.handleSAFCreateDocumentDialogSdk30(path) { + isRPlus() && activity.isAStorageRootFolder(path.getParentPath()) -> activity.handleSAFCreateDocumentDialogSdk30(path) { if (it) { sendSuccess(alertDialog, path) } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt index a5504672b..491103e38 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt @@ -1022,26 +1022,56 @@ fun BaseSimpleActivity.renameFile( return@updateSDK30Uris } try { + val sourceUri = fileUris.first() val sourceFile = File(oldPath).toFileDirItem(this) - val destinationFile = FileDirItem( - newPath, - newPath.getFilenameFromPath(), - sourceFile.isDirectory, - sourceFile.children, - sourceFile.size, - sourceFile.modified - ) - val copySuccessful = copySingleFileSdk30(sourceFile, destinationFile) - if (copySuccessful) { - if (!baseConfig.keepLastModified) { - newFile.setLastModified(System.currentTimeMillis()) + + if (oldPath.equals(newPath, true)) { + val tempDestination = try { + createTempFile(File(sourceFile.path)) ?: return@updateSDK30Uris + } catch (exception: Exception) { + callback?.invoke(false, Android30RenameFormat.NONE) + return@updateSDK30Uris } - contentResolver.delete(fileUris.first(), null) - updateInMediaStore(oldPath, newPath) - scanPathsRecursively(arrayListOf(newPath)) { - runOnUiThread { - callback?.invoke(true, Android30RenameFormat.NONE) + + val copyTempSuccess = copySingleFileSdk30(sourceFile, tempDestination.toFileDirItem(this)) + if (copyTempSuccess) { + contentResolver.delete(sourceUri, null) + tempDestination.renameTo(File(newPath)) + if (!baseConfig.keepLastModified) { + newFile.setLastModified(System.currentTimeMillis()) } + updateInMediaStore(oldPath, newPath) + scanPathsRecursively(arrayListOf(newPath)) { + runOnUiThread { + callback?.invoke(true, Android30RenameFormat.NONE) + } + } + } else { + callback?.invoke(false, Android30RenameFormat.NONE) + } + } else { + val destinationFile = FileDirItem( + newPath, + newPath.getFilenameFromPath(), + sourceFile.isDirectory, + sourceFile.children, + sourceFile.size, + sourceFile.modified + ) + val copySuccessful = copySingleFileSdk30(sourceFile, destinationFile) + if (copySuccessful) { + if (!baseConfig.keepLastModified) { + newFile.setLastModified(System.currentTimeMillis()) + } + contentResolver.delete(sourceUri, null) + updateInMediaStore(oldPath, newPath) + scanPathsRecursively(arrayListOf(newPath)) { + runOnUiThread { + callback?.invoke(true, Android30RenameFormat.NONE) + } + } + } else { + callback?.invoke(false, Android30RenameFormat.NONE) } } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/String.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/String.kt index 8e5bffd98..2603942d7 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/String.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/String.kt @@ -37,10 +37,6 @@ fun String.getBasePath(context: Context): String { } } -fun String.isBasePath(context: Context): Boolean { - return getBasePath(context) == this -} - fun String.getFirstParentDirName(context: Context, level: Int): String? { val basePath = getBasePath(context) val startIndex = basePath.length + 1 diff --git a/commons/src/main/res/values-ar/strings.xml b/commons/src/main/res/values-ar/strings.xml index 0199da85b..9c82cbeb8 100644 --- a/commons/src/main/res/values-ar/strings.xml +++ b/commons/src/main/res/values-ar/strings.xml @@ -178,6 +178,7 @@ إلحاق بـ \'_1\' تطبيق علي الكل The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder تحديد مجلد تحديد ملف @@ -941,4 +942,4 @@ لا تنسى أنه إذا قمت بإلغاء تثبيت أي تطبيق مدفوع في غضون ساعتين ، فسيتم إسترداد أموالك تلقائياً. إذا كنت تريد إسترداد الأموال في أي وقت لاحق ، فأتصل بنا على hello@simplemobiletools.com وستحصل عليه. هذا يجعل من السهل تجربته :) مجموعة بسيطة، من تطبيقات أندرويد المفتوحة المصدر ذات الودجات القابلة للتخصيص، بدون إعلانات أو أذونات غير ضرورية. - \ No newline at end of file + diff --git a/commons/src/main/res/values-az/strings.xml b/commons/src/main/res/values-az/strings.xml index 188bc0302..c0755748b 100644 --- a/commons/src/main/res/values-az/strings.xml +++ b/commons/src/main/res/values-az/strings.xml @@ -189,6 +189,7 @@ \'_1\' ilə əlavə et Hamsına şamil et The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Qovluq seç diff --git a/commons/src/main/res/values-br/strings.xml b/commons/src/main/res/values-br/strings.xml index 3fd00a9d3..459b00c7d 100644 --- a/commons/src/main/res/values-br/strings.xml +++ b/commons/src/main/res/values-br/strings.xml @@ -189,6 +189,7 @@ Append with \'_1\' Apply to all The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Select a folder diff --git a/commons/src/main/res/values-ca/strings.xml b/commons/src/main/res/values-ca/strings.xml index b5376cd17..dca75c6fd 100644 --- a/commons/src/main/res/values-ca/strings.xml +++ b/commons/src/main/res/values-ca/strings.xml @@ -184,6 +184,7 @@ Afegeix amb «_1» Aplica-ho a tots El sistema no permet l\'operació en aquesta carpeta, trieu-ne una altra + The system does not allow renaming in this folder Selecciona una carpeta Seleccioneu un fitxer @@ -915,4 +916,4 @@ No oblideu que si desinstal·leu qualsevol aplicació de pagament en un termini de 2 hores, el càrrec es retornarà automàticament. Si voleu un reemborsament més tard, poseu-vos en contacte amb nosaltres a hello@simplemobiletools.com i el rebreu. Això fa que sigui fàcil provar-ho :) Un grup d\'aplicacions Android simples i de codi obert amb ginys personalitzables, sense anuncis ni permisos innecessaris. - \ No newline at end of file + diff --git a/commons/src/main/res/values-cs/strings.xml b/commons/src/main/res/values-cs/strings.xml index 967c808d5..4a155e465 100644 --- a/commons/src/main/res/values-cs/strings.xml +++ b/commons/src/main/res/values-cs/strings.xml @@ -188,6 +188,7 @@ Ponechat s \'_1\' Použít pro všechny The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Zvolte složku diff --git a/commons/src/main/res/values-cy/strings.xml b/commons/src/main/res/values-cy/strings.xml index 66e38430f..d882bd228 100644 --- a/commons/src/main/res/values-cy/strings.xml +++ b/commons/src/main/res/values-cy/strings.xml @@ -188,6 +188,7 @@ Ychwanegu \'_1\' i\'r diwedd Gweithredu ar y cwbl The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Dewisa ffolder diff --git a/commons/src/main/res/values-da/strings.xml b/commons/src/main/res/values-da/strings.xml index 01f041ba7..e486557f1 100644 --- a/commons/src/main/res/values-da/strings.xml +++ b/commons/src/main/res/values-da/strings.xml @@ -178,6 +178,7 @@ Tilføj \"_1\" Anvend på alle konflikter Systemet tillader ikke operationen i denne mappe, vælg en anden + The system does not allow renaming in this folder Vælg en mappe Vælg en fil diff --git a/commons/src/main/res/values-de/strings.xml b/commons/src/main/res/values-de/strings.xml index 58860261f..b73688b5b 100644 --- a/commons/src/main/res/values-de/strings.xml +++ b/commons/src/main/res/values-de/strings.xml @@ -178,6 +178,7 @@ \"_1\" anhängen Bei allen Konflikten anwenden The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Ordner auswählen Datei auswählen diff --git a/commons/src/main/res/values-el/strings.xml b/commons/src/main/res/values-el/strings.xml index e35827bfe..399c587d8 100644 --- a/commons/src/main/res/values-el/strings.xml +++ b/commons/src/main/res/values-el/strings.xml @@ -186,6 +186,7 @@ Προσάρτηση με \'_1\' Εφαρμογή σε όλα Το Σύστημα δεν επιτρέπει τη λειτουργία σε αυτόν το φάκελο, παρακαλούμε επιλέξτε έναν άλλο φάκελο + The system does not allow renaming in this folder Επιλογή φακέλου diff --git a/commons/src/main/res/values-eo/strings.xml b/commons/src/main/res/values-eo/strings.xml index 260c717a8..b0b8732b2 100644 --- a/commons/src/main/res/values-eo/strings.xml +++ b/commons/src/main/res/values-eo/strings.xml @@ -178,6 +178,7 @@ Append with \'_1\' Apply to all The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Select a folder Select a file diff --git a/commons/src/main/res/values-es/strings.xml b/commons/src/main/res/values-es/strings.xml index be2f7bbb0..4cf8d43fe 100644 --- a/commons/src/main/res/values-es/strings.xml +++ b/commons/src/main/res/values-es/strings.xml @@ -188,6 +188,7 @@ Añadir \'_1\' Aplicar a todo The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Seleccione una carpeta diff --git a/commons/src/main/res/values-et/strings.xml b/commons/src/main/res/values-et/strings.xml index 0c73184ec..a9b63d956 100644 --- a/commons/src/main/res/values-et/strings.xml +++ b/commons/src/main/res/values-et/strings.xml @@ -184,6 +184,7 @@ Lisa nimele _1 Kohalda kõigile Selles kaustas pole toimingud lubatud, palun vali mõni muu kaust + The system does not allow renaming in this folder Vali kaust Vali fail @@ -926,4 +927,4 @@ Palun arvesta, et kui eemaldad tasulise rakenduse nutiseadmest 2 tunni jooksul, siis ostusumma tagastatakse automaatselt. Kui soovit tagastust hiljem, siis saada e-kiri hello@simplemobiletools.com aadressile ning korraldame tagastuse. Mõlemal juhul on sul võimalik meie tasulisi rakendusi testida :) Arendame Androidi jaoks avatud lähtekoodil põhinevaid lihtsaid tarvikuid, millel on kohandatavad vidinad ja milles pole reklaame ega vajadust asjatute õiguste jaoks. - \ No newline at end of file + diff --git a/commons/src/main/res/values-eu/strings.xml b/commons/src/main/res/values-eu/strings.xml index f3d6b498c..bac4d608d 100644 --- a/commons/src/main/res/values-eu/strings.xml +++ b/commons/src/main/res/values-eu/strings.xml @@ -187,6 +187,7 @@ Erantsi honekin: \'_1\' Aplikatu guztiei The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Hautatu karpeta diff --git a/commons/src/main/res/values-fa/strings.xml b/commons/src/main/res/values-fa/strings.xml index f290fbd89..2c28af6ca 100644 --- a/commons/src/main/res/values-fa/strings.xml +++ b/commons/src/main/res/values-fa/strings.xml @@ -189,6 +189,7 @@ افزودن \'_1\' به انتها اعمال به همه The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder گزینش یک پوشه diff --git a/commons/src/main/res/values-fi/strings.xml b/commons/src/main/res/values-fi/strings.xml index 4689c1c76..7106e14bc 100644 --- a/commons/src/main/res/values-fi/strings.xml +++ b/commons/src/main/res/values-fi/strings.xml @@ -178,6 +178,7 @@ Lisää nimeen \'_1\' Käytä kaikkiin Järjestelmä ei salli toimintoa tässä kansiossa, ole hyvä ja valitse toinen + The system does not allow renaming in this folder Valitse kansio Valitse tiedosto @@ -933,4 +934,4 @@ Muista, että saat rahasi automaattisesti takaisin, jos poistat minkä tahansa maksullisista sovelluksistamme kahden tunnin sisällä asentamisesta. Jos haluat rahasi milloin vain myöhemmin takaisin, ota yhteyttä sähköpostitse hello@simplemobiletools.com ja saat rahat takaisin. Tämä tekee kokeilun helpoksi :) Yksinkertaisia vapaan lähdekoodin Android-sovelluksia kustomoitavilla pienoissovelluksilla, ilman mainoksia ja tarpeettomia käyttöoikeuksia. - \ No newline at end of file + diff --git a/commons/src/main/res/values-fr/strings.xml b/commons/src/main/res/values-fr/strings.xml index 5b448d4e7..b4bbd174d 100644 --- a/commons/src/main/res/values-fr/strings.xml +++ b/commons/src/main/res/values-fr/strings.xml @@ -178,6 +178,7 @@ Ajouter un suffixe \"_1\" Appliquer à tous Le système n\'autorise pas l\'opération dans ce dossier, veuillez en choisir un autre + The system does not allow renaming in this folder Sélectionner un dossier Sélectionner un fichier diff --git a/commons/src/main/res/values-gl/strings.xml b/commons/src/main/res/values-gl/strings.xml index 3c3ca59a4..21664260c 100644 --- a/commons/src/main/res/values-gl/strings.xml +++ b/commons/src/main/res/values-gl/strings.xml @@ -178,6 +178,7 @@ Engadir \'_1\' Aplicar a todo The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Selecciona un cartafol Selecciona un ficheiro @@ -945,4 +946,4 @@ Non esquezas que se desinstalas calquera app de pago antes de 2 horas, devolveránseche os cartos automáticamente. Se queres unha devolución máis tarde, contáctanos en hello@simplemobiletools.com e terala. Isto fai que sexa fácil probala :) Un grupo de apps simples e de código aberto con widgets personalizables, sen anuncios nin permisos innecesarios. - \ No newline at end of file + diff --git a/commons/src/main/res/values-hi-rIN/strings.xml b/commons/src/main/res/values-hi-rIN/strings.xml index dc6a4c5cd..7065e3e9f 100644 --- a/commons/src/main/res/values-hi-rIN/strings.xml +++ b/commons/src/main/res/values-hi-rIN/strings.xml @@ -186,6 +186,7 @@ Append with \'_1\' Apply to all The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Select a folder diff --git a/commons/src/main/res/values-hr/strings.xml b/commons/src/main/res/values-hr/strings.xml index f069497ee..991302c31 100644 --- a/commons/src/main/res/values-hr/strings.xml +++ b/commons/src/main/res/values-hr/strings.xml @@ -186,6 +186,7 @@ Dodaj s \'_1\' Primjeni na sve sukobe The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Odaberite mapu diff --git a/commons/src/main/res/values-hu/strings.xml b/commons/src/main/res/values-hu/strings.xml index 2bdd2ec41..e249eb707 100644 --- a/commons/src/main/res/values-hu/strings.xml +++ b/commons/src/main/res/values-hu/strings.xml @@ -184,6 +184,7 @@ „_1” hozzáfűzése Alkalmaz az összesre The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Válasszon egy mappát Válasszon egy fájlt diff --git a/commons/src/main/res/values-id/strings.xml b/commons/src/main/res/values-id/strings.xml index 5c4f43e98..57a6b6cb8 100644 --- a/commons/src/main/res/values-id/strings.xml +++ b/commons/src/main/res/values-id/strings.xml @@ -178,6 +178,7 @@ Akhiri dengan \'_1\' Terapkan ke semua The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Pilih folder Pilih berkas diff --git a/commons/src/main/res/values-it/strings.xml b/commons/src/main/res/values-it/strings.xml index b6cb6db8c..9226f87c9 100644 --- a/commons/src/main/res/values-it/strings.xml +++ b/commons/src/main/res/values-it/strings.xml @@ -178,6 +178,7 @@ Aggiungi \'_1\' alla fine Applica a tutti i conflitti The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Seleziona una cartella Seleziona un file diff --git a/commons/src/main/res/values-iw/strings.xml b/commons/src/main/res/values-iw/strings.xml index 7117190b4..9f1a6de54 100644 --- a/commons/src/main/res/values-iw/strings.xml +++ b/commons/src/main/res/values-iw/strings.xml @@ -189,6 +189,7 @@ Append with \'_1\' החל על הכל The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder בחר/י תיקייה diff --git a/commons/src/main/res/values-ja/strings.xml b/commons/src/main/res/values-ja/strings.xml index 850e2f95c..75dcc4aa9 100644 --- a/commons/src/main/res/values-ja/strings.xml +++ b/commons/src/main/res/values-ja/strings.xml @@ -178,6 +178,7 @@ \'_1\' に追記する すべてに適用 The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder フォルダを選択 ファイルを選択 diff --git a/commons/src/main/res/values-ko-rKR/strings.xml b/commons/src/main/res/values-ko-rKR/strings.xml index 2f77d9abe..951848dfb 100644 --- a/commons/src/main/res/values-ko-rKR/strings.xml +++ b/commons/src/main/res/values-ko-rKR/strings.xml @@ -188,6 +188,7 @@ \'_1\' 문자열을 추가하기 모든 충돌에 적용 The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder 폴더 선택 diff --git a/commons/src/main/res/values-lt/strings.xml b/commons/src/main/res/values-lt/strings.xml index eac442421..0eabddb74 100644 --- a/commons/src/main/res/values-lt/strings.xml +++ b/commons/src/main/res/values-lt/strings.xml @@ -184,6 +184,7 @@ Pridėti prie pavadinimo „_1“ Taikyti visiems The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Pasirinkite aplanką Pasirinkite failą diff --git a/commons/src/main/res/values-nb-rNO/strings.xml b/commons/src/main/res/values-nb-rNO/strings.xml index ffc7283f0..38cf84a9b 100644 --- a/commons/src/main/res/values-nb-rNO/strings.xml +++ b/commons/src/main/res/values-nb-rNO/strings.xml @@ -178,6 +178,7 @@ Tilføy \'_1\' Bruk på alle konflikter The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Velg en mappe Velg en fil diff --git a/commons/src/main/res/values-nl/strings.xml b/commons/src/main/res/values-nl/strings.xml index 936b3939b..a73590614 100644 --- a/commons/src/main/res/values-nl/strings.xml +++ b/commons/src/main/res/values-nl/strings.xml @@ -178,6 +178,7 @@ Toevoegen met \'_1\' Toepassen op alle Het systeem staat de bewerking in deze map niet toe, kies een andere map + The system does not allow renaming in this folder Kies een map Kies een bestand @@ -937,4 +938,4 @@ Bij het deïnstalleren van de app binnen 2 uur na aanschaf wordt het aankoopbedrag automatisch teruggestort. Wilt u op een later tijdstip een terugbetaling, neem dan contact op via hello@simplemobiletools.com en het wordt geregeld. Zodoende blijft het gemakkelijk om de app uit te proberen :) Een verzameling eenvoudige open-source Android-apps met widgets, zonder advertenties en onnodige machtigingen. - \ No newline at end of file + diff --git a/commons/src/main/res/values-pl/strings.xml b/commons/src/main/res/values-pl/strings.xml index 2b1cd94f7..2943c59b8 100644 --- a/commons/src/main/res/values-pl/strings.xml +++ b/commons/src/main/res/values-pl/strings.xml @@ -178,6 +178,7 @@ Dodaj końcówkę „_1” Zastosuj do wszystkich System nie pozwala na operację w tym folderze, wybierz inny + The system does not allow renaming in this folder Wybierz folder Wybierz plik @@ -966,4 +967,4 @@ Pamiętaj, że jeśli odinstalujesz którąkolwiek z płatnych aplikacji w ciągu 2 godzin, automatycznie otrzymasz zwrot pieniędzy. Jeśli chcesz zwrotu pieniędzy w dowolnym momencie później, wystarczy skontaktować się z nami na hello@simplemobiletools.com, a otrzymasz go. To sprawia, że aplikacje są łatwe do wypróbowania :) Zestaw prostych, otwartoźródłowych aplikacji na Androida z konfigurowalnymi widżetami, bez reklam i zbędnych uprawnień. - \ No newline at end of file + diff --git a/commons/src/main/res/values-pt-rBR/strings.xml b/commons/src/main/res/values-pt-rBR/strings.xml index d59e49b0f..487fb3584 100644 --- a/commons/src/main/res/values-pt-rBR/strings.xml +++ b/commons/src/main/res/values-pt-rBR/strings.xml @@ -178,6 +178,7 @@ Adicionar sufixo \'_1\' Aplicar a todos os conflitos O sistema não permite a operação nesta pasta, por favor escolha outra + The system does not allow renaming in this folder Selecionar pasta Selecionar arquivo diff --git a/commons/src/main/res/values-pt/strings.xml b/commons/src/main/res/values-pt/strings.xml index 302c2d258..f80baa2b8 100644 --- a/commons/src/main/res/values-pt/strings.xml +++ b/commons/src/main/res/values-pt/strings.xml @@ -178,6 +178,7 @@ Anexar \'_1\' Aplicar a todos The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Selecionar pasta Selecionar ficheiro diff --git a/commons/src/main/res/values-ro/strings.xml b/commons/src/main/res/values-ro/strings.xml index 260aa6538..606d2254b 100644 --- a/commons/src/main/res/values-ro/strings.xml +++ b/commons/src/main/res/values-ro/strings.xml @@ -179,6 +179,7 @@ Adăugaţi cu \'_1\' Se aplică tuturor Sistemul nu permite operarea în acest dosar, vă rugăm să alegeți un alt dosar + The system does not allow renaming in this folder Selectaţi un dosar Selectaţi un dosar @@ -952,4 +953,4 @@ Nu uitați că, dacă dezinstalați orice aplicație plătită în termen de 2 ore, veți fi rambursat automat. Dacă doriți o rambursare oricând mai târziu, contactați-ne la hello@simplemobiletools.com și o veți obține. Astfel, este ușor să o încercați. :) Un grup de aplicații Android simple, open source, cu widget-uri personalizabile, fără reclame și permisiuni inutile. - \ No newline at end of file + diff --git a/commons/src/main/res/values-ru/strings.xml b/commons/src/main/res/values-ru/strings.xml index c16bfb765..2c3f0fb20 100644 --- a/commons/src/main/res/values-ru/strings.xml +++ b/commons/src/main/res/values-ru/strings.xml @@ -184,6 +184,7 @@ Добавить \"_1\" к имени Применить ко всем Система не разрешает операции в этой папке, выберите другую + The system does not allow renaming in this folder Выбор папки Выбор файла @@ -984,4 +985,4 @@ Не забывайте, что если вы удалите любое платное приложение в течение 2 часов, вам будет автоматически возвращена сумма покупки. Если вы захотите вернуть деньги позднее, просто свяжитесь с нами по адресу hello@simplemobiletools.com и вы их получите. Так что можно легко опробовать это приложение :) Группа простых приложений для Android с открытым исходным кодом с настраиваемыми виджетами без рекламы и ненужных разрешений. - \ No newline at end of file + diff --git a/commons/src/main/res/values-sk/strings.xml b/commons/src/main/res/values-sk/strings.xml index 0ff2617a7..f1457c33b 100644 --- a/commons/src/main/res/values-sk/strings.xml +++ b/commons/src/main/res/values-sk/strings.xml @@ -189,6 +189,7 @@ Pripnúť \'_1\' Použiť na všetky konflikty Systém nepovoľuje túto operáciu v tomto priečinku, prosím zvoľte iný + Systém v tomto priečinku nepovoľuje premenovávanie Zvoľte priečinok diff --git a/commons/src/main/res/values-sl/strings.xml b/commons/src/main/res/values-sl/strings.xml index ca3e6ef9c..cadaca3bf 100644 --- a/commons/src/main/res/values-sl/strings.xml +++ b/commons/src/main/res/values-sl/strings.xml @@ -189,6 +189,7 @@ Dodaj \'_1\' Uporabi za vse The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Izberi mapo diff --git a/commons/src/main/res/values-sr/strings.xml b/commons/src/main/res/values-sr/strings.xml index 45f7bde6b..f76f6493b 100644 --- a/commons/src/main/res/values-sr/strings.xml +++ b/commons/src/main/res/values-sr/strings.xml @@ -189,6 +189,7 @@ Додај суфикс \'_1\' Примени на све The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Изабери фасциклу diff --git a/commons/src/main/res/values-sv/strings.xml b/commons/src/main/res/values-sv/strings.xml index 46315624f..8ae7074d2 100644 --- a/commons/src/main/res/values-sv/strings.xml +++ b/commons/src/main/res/values-sv/strings.xml @@ -178,6 +178,7 @@ Lägg till \'_1\' Använd på alla konflikter The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Välj mapp Välj fil @@ -947,4 +948,4 @@ Don\'t forget that if you uninstall any paid app within 2 hours, you will automatically be refunded. If you want a refund anytime later, just contact us at hello@simplemobiletools.com and you will get it. That makes it easy to try it out :) A group of simple, open source Android apps with customizable widgets, without ads and unnecessary permissions. - \ No newline at end of file + diff --git a/commons/src/main/res/values-ta/strings.xml b/commons/src/main/res/values-ta/strings.xml index 729eba050..daae9fb89 100644 --- a/commons/src/main/res/values-ta/strings.xml +++ b/commons/src/main/res/values-ta/strings.xml @@ -178,6 +178,7 @@ Append with \'_1\' Apply to all The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder கோப்புறையை தேர்ந்தெடு கோப்பை தேர்ந்தெடு @@ -947,4 +948,4 @@ Don\'t forget that if you uninstall any paid app within 2 hours, you will automatically be refunded. If you want a refund anytime later, just contact us at hello@simplemobiletools.com and you will get it. That makes it easy to try it out :) A group of simple, open source Android apps with customizable widgets, without ads and unnecessary permissions. - \ No newline at end of file + diff --git a/commons/src/main/res/values-tr/strings.xml b/commons/src/main/res/values-tr/strings.xml index 206078ec1..07c21496d 100644 --- a/commons/src/main/res/values-tr/strings.xml +++ b/commons/src/main/res/values-tr/strings.xml @@ -178,6 +178,7 @@ \'_1\' ile ekle Tümüne uygula Sistem bu klasörde işlem yapmaya izin vermiyor, lütfen başka bir tane seçin + The system does not allow renaming in this folder Bir klasör seç Bir dosya seç @@ -939,4 +940,4 @@ Ücretli herhangi bir uygulamayı 2 saat içinde kaldırırsanız, otomatik olarak iade edileceğini unutmayın. İstediğiniz zaman geri ödeme almak isterseniz, hello@simplemobiletools.com adresinden bizimle iletişime geçmeniz yeterli olacaktır. Bu denemeyi kolaylaştırır :) Özelleştirilebilir widget\'lara sahip, reklamlar ve gereksiz izinler içermeyen bir grup basit, açık kaynaklı Android uygulaması. - \ No newline at end of file + diff --git a/commons/src/main/res/values-uk/strings.xml b/commons/src/main/res/values-uk/strings.xml index 7169bffc1..c289b6547 100644 --- a/commons/src/main/res/values-uk/strings.xml +++ b/commons/src/main/res/values-uk/strings.xml @@ -178,6 +178,7 @@ Додати \'_1\' в кінець Застосувати до усіх The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Обрати теку Обрати файл diff --git a/commons/src/main/res/values-vi/strings.xml b/commons/src/main/res/values-vi/strings.xml index 1821c7478..ce9598e52 100644 --- a/commons/src/main/res/values-vi/strings.xml +++ b/commons/src/main/res/values-vi/strings.xml @@ -189,6 +189,7 @@ Nối với \'_1\' Áp dụng cho tất cả The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Chọn một thư mục diff --git a/commons/src/main/res/values-zh-rCN/strings.xml b/commons/src/main/res/values-zh-rCN/strings.xml index 91251edde..ee683c53f 100644 --- a/commons/src/main/res/values-zh-rCN/strings.xml +++ b/commons/src/main/res/values-zh-rCN/strings.xml @@ -178,6 +178,7 @@ 应用到 \'_1\' 应用到全部冲突项 系统不允许在此文件夹中操作,请选择另一个文件夹 + The system does not allow renaming in this folder 选择文件夹 选择文件 @@ -890,4 +891,4 @@ 别忘了如果您在2小时内卸载任何付费应用将会自动退款。如果您想在之后退款,只需通过 hello@simplemobiletools.com 联系我们即可。这样您就可以放心试用了 :) 一组简易且开源的 Android 应用程序,可自定义小部件,并且没有广告和不必要的权限。 - \ No newline at end of file + diff --git a/commons/src/main/res/values-zh-rTW/strings.xml b/commons/src/main/res/values-zh-rTW/strings.xml index bc723b961..6245b137a 100644 --- a/commons/src/main/res/values-zh-rTW/strings.xml +++ b/commons/src/main/res/values-zh-rTW/strings.xml @@ -178,6 +178,7 @@ 附加 \'_1\' 添加到全部衝突 The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder 選擇資料夾 選擇檔案 diff --git a/commons/src/main/res/values/strings.xml b/commons/src/main/res/values/strings.xml index ac22e983c..50e03c39d 100644 --- a/commons/src/main/res/values/strings.xml +++ b/commons/src/main/res/values/strings.xml @@ -189,6 +189,7 @@ Append with \'_1\' Apply to all The system does not allow the operation in this folder, please pick another one + The system does not allow renaming in this folder Select a folder