From e0ac0406bd77c10d7b59ce16e11adaee833e0a29 Mon Sep 17 00:00:00 2001 From: darthpaul Date: Wed, 16 Mar 2022 15:23:55 +0000 Subject: [PATCH 1/3] SDK 30 changes - image / copy changes to WritePermissionDialog - rename function to execute after SAF action on SDK 30 from funAfterDelete30File to funAfterSdk30Action - image / copy changes to WritePermissionDialog - add missing method isShowingSAFCreateDocumentDialogSdk30 - extract android.content.extra.SHOW_ADVANCED to a constant EXTRA_SHOW_ADVANCED as it is used in many locations --- .../commons/activities/BaseSimpleActivity.kt | 22 ++++----- .../commons/dialogs/WritePermissionDialog.kt | 11 +++-- .../commons/extensions/Activity.kt | 46 ++++++++++++++++-- .../commons/helpers/Constants.kt | 1 + .../img_write_storage_create_doc_sdk_30.webp | Bin 0 -> 5032 bytes .../img_write_storage_create_doc_sdk_30.webp | Bin 0 -> 7780 bytes .../img_write_storage_create_doc_sdk_30.webp | Bin 0 -> 10708 bytes .../img_write_storage_create_doc_sdk_30.webp | Bin 0 -> 15278 bytes commons/src/main/res/values-ar/strings.xml | 1 + commons/src/main/res/values-az/strings.xml | 1 + commons/src/main/res/values-br/strings.xml | 1 + commons/src/main/res/values-ca/strings.xml | 3 +- commons/src/main/res/values-cs/strings.xml | 1 + commons/src/main/res/values-cy/strings.xml | 1 + commons/src/main/res/values-da/strings.xml | 3 +- commons/src/main/res/values-de/strings.xml | 3 +- commons/src/main/res/values-el/strings.xml | 1 + commons/src/main/res/values-eo/strings.xml | 1 + commons/src/main/res/values-es/strings.xml | 1 + commons/src/main/res/values-et/strings.xml | 1 + commons/src/main/res/values-eu/strings.xml | 1 + commons/src/main/res/values-fa/strings.xml | 1 + commons/src/main/res/values-fi/strings.xml | 1 + commons/src/main/res/values-fr/strings.xml | 1 + commons/src/main/res/values-gl/strings.xml | 1 + .../src/main/res/values-hi-rIN/strings.xml | 1 + commons/src/main/res/values-hr/strings.xml | 1 + commons/src/main/res/values-hu/strings.xml | 1 + commons/src/main/res/values-id/strings.xml | 3 +- commons/src/main/res/values-it/strings.xml | 3 +- commons/src/main/res/values-iw/strings.xml | 1 + commons/src/main/res/values-ja/strings.xml | 3 +- .../src/main/res/values-ko-rKR/strings.xml | 1 + commons/src/main/res/values-lt/strings.xml | 1 + .../src/main/res/values-nb-rNO/strings.xml | 1 + commons/src/main/res/values-nl/strings.xml | 3 +- commons/src/main/res/values-pl/strings.xml | 3 +- .../src/main/res/values-pt-rBR/strings.xml | 1 + commons/src/main/res/values-pt/strings.xml | 1 + commons/src/main/res/values-ro/strings.xml | 1 + commons/src/main/res/values-ru/strings.xml | 3 +- commons/src/main/res/values-sk/strings.xml | 1 + commons/src/main/res/values-sl/strings.xml | 1 + commons/src/main/res/values-sr/strings.xml | 1 + commons/src/main/res/values-sv/strings.xml | 1 + commons/src/main/res/values-ta/strings.xml | 1 + commons/src/main/res/values-tr/strings.xml | 3 +- commons/src/main/res/values-uk/strings.xml | 3 +- commons/src/main/res/values-vi/strings.xml | 1 + .../src/main/res/values-zh-rCN/strings.xml | 3 +- .../src/main/res/values-zh-rTW/strings.xml | 1 + commons/src/main/res/values/strings.xml | 1 + 52 files changed, 117 insertions(+), 31 deletions(-) create mode 100644 commons/src/main/res/drawable-hdpi/img_write_storage_create_doc_sdk_30.webp create mode 100644 commons/src/main/res/drawable-xhdpi/img_write_storage_create_doc_sdk_30.webp create mode 100644 commons/src/main/res/drawable-xxhdpi/img_write_storage_create_doc_sdk_30.webp create mode 100644 commons/src/main/res/drawable-xxxhdpi/img_write_storage_create_doc_sdk_30.webp diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt index c42769916..8b7ebde8c 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt @@ -60,7 +60,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() { companion object { var funAfterSAFPermission: ((success: Boolean) -> Unit)? = null - var funAfterDelete30File: ((success: Boolean) -> Unit)? = null + var funAfterSdk30Action: ((success: Boolean) -> Unit)? = null var funAfterUpdate30File: ((success: Boolean) -> Unit)? = null var funRecoverableSecurity: ((success: Boolean) -> Unit)? = null } @@ -236,11 +236,11 @@ abstract class BaseSimpleActivity : AppCompatActivity() { val takeFlags = Intent.FLAG_GRANT_READ_URI_PERMISSION or Intent.FLAG_GRANT_WRITE_URI_PERMISSION applicationContext.contentResolver.takePersistableUriPermission(treeUri, takeFlags) - val funAfter = funAfterDelete30File - funAfterDelete30File = null + val funAfter = funAfterSdk30Action + funAfterSdk30Action = null funAfter?.invoke(true) } else { - funAfterDelete30File?.invoke(false) + funAfterSdk30Action?.invoke(false) } } else if (requestCode == OPEN_DOCUMENT_TREE_FOR_SDK_30) { @@ -256,11 +256,11 @@ abstract class BaseSimpleActivity : AppCompatActivity() { val takeFlags = Intent.FLAG_GRANT_READ_URI_PERMISSION or Intent.FLAG_GRANT_WRITE_URI_PERMISSION applicationContext.contentResolver.takePersistableUriPermission(treeUri, takeFlags) - val funAfter = funAfterDelete30File - funAfterDelete30File = null + val funAfter = funAfterSdk30Action + funAfterSdk30Action = null funAfter?.invoke(true) } else { - funAfterDelete30File?.invoke(false) + funAfterSdk30Action?.invoke(false) } } else if (requestCode == OPEN_DOCUMENT_TREE_FOR_ANDROID_DATA_OR_OBB) { @@ -343,7 +343,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() { val outputStream = contentResolver.openOutputStream(resultData.data!!) exportSettingsTo(outputStream, configItemsToExport) } else if (requestCode == DELETE_FILE_SDK_30_HANDLER) { - funAfterDelete30File?.invoke(resultCode == Activity.RESULT_OK) + funAfterSdk30Action?.invoke(resultCode == Activity.RESULT_OK) } else if (requestCode == RECOVERABLE_SECURITY_HANDLER) { funRecoverableSecurity?.invoke(resultCode == Activity.RESULT_OK) funRecoverableSecurity = null @@ -450,7 +450,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() { callback(true) false } else if (isShowingSAFDialogSdk30(path)) { - funAfterDelete30File = callback + funAfterSdk30Action = callback true } else { callback(true) @@ -463,7 +463,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() { callback(true) false } else if (isShowingSAFCreateDocumentDialogSdk30(path)) { - funAfterDelete30File = callback + funAfterSdk30Action = callback true } else { callback(true) @@ -512,7 +512,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() { @SuppressLint("NewApi") fun deleteSDK30Uris(uris: List, callback: (success: Boolean) -> Unit) { if (isRPlus()) { - funAfterDelete30File = callback + funAfterSdk30Action = callback try { val deleteRequest = MediaStore.createDeleteRequest(contentResolver, uris).intentSender startIntentSenderForResult(deleteRequest, DELETE_FILE_SDK_30_HANDLER, null, 0, 0, 0) diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/WritePermissionDialog.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/WritePermissionDialog.kt index 349f9d23f..6cb45ba52 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/WritePermissionDialog.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/WritePermissionDialog.kt @@ -14,13 +14,14 @@ class WritePermissionDialog(activity: Activity, val mode: Mode, val callback: () enum class Mode { OTG, SD_CARD, - SDK_30 + OPEN_DOCUMENT_TREE_SDK_30, + CREATE_DOCUMENT_SDK_30, } var dialog: AlertDialog init { - val layout = if (mode == Mode.OTG || mode == Mode.SDK_30) R.layout.dialog_write_permission_otg else R.layout.dialog_write_permission + val layout = if (mode == Mode.SD_CARD) R.layout.dialog_write_permission else R.layout.dialog_write_permission_otg val view = activity.layoutInflater.inflate(layout, null) val glide = Glide.with(activity) @@ -34,10 +35,14 @@ class WritePermissionDialog(activity: Activity, val mode: Mode, val callback: () glide.load(R.drawable.img_write_storage).transition(crossFade).into(view.write_permissions_dialog_image) glide.load(R.drawable.img_write_storage_sd).transition(crossFade).into(view.write_permissions_dialog_image_sd) } - Mode.SDK_30 -> { + Mode.OPEN_DOCUMENT_TREE_SDK_30 -> { view.write_permissions_dialog_otg_text.setText(R.string.confirm_storage_access_android_text) glide.load(R.drawable.img_write_storage_sdk_30).transition(crossFade).into(view.write_permissions_dialog_otg_image) } + Mode.CREATE_DOCUMENT_SDK_30 -> { + view.write_permissions_dialog_otg_text.setText(R.string.confirm_create_doc_for_new_folder_text) + glide.load(R.drawable.img_write_storage_create_doc_sdk_30).transition(crossFade).into(view.write_permissions_dialog_otg_image) + } } dialog = AlertDialog.Builder(activity) 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 3a4605928..787cf3441 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt @@ -127,7 +127,7 @@ fun BaseSimpleActivity.isShowingSAFDialog(path: String): Boolean { if (!isDestroyed && !isFinishing) { WritePermissionDialog(this, Mode.SD_CARD) { Intent(Intent.ACTION_OPEN_DOCUMENT_TREE).apply { - putExtra("android.content.extra.SHOW_ADVANCED", true) + putExtra(EXTRA_SHOW_ADVANCED, true) try { startActivityForResult(this, OPEN_DOCUMENT_TREE_SD) checkedDocumentPath = path @@ -153,13 +153,13 @@ fun BaseSimpleActivity.isShowingSAFDialog(path: String): Boolean { } @SuppressLint("InlinedApi") -fun BaseSimpleActivity.isShowingSAFDialogForDeleteSdk30(path: String): Boolean { +fun BaseSimpleActivity.isShowingSAFDialogSdk30(path: String): Boolean { return if (isAccessibleWithSAFSdk30(path) && !hasProperStoredFirstParentUri(path)) { runOnUiThread { if (!isDestroyed && !isFinishing) { - WritePermissionDialog(this, Mode.SDK_30) { + WritePermissionDialog(this, Mode.OPEN_DOCUMENT_TREE_SDK_30) { Intent(Intent.ACTION_OPEN_DOCUMENT_TREE).apply { - putExtra("android.content.extra.SHOW_ADVANCED", true) + putExtra(EXTRA_SHOW_ADVANCED, true) putExtra(DocumentsContract.EXTRA_INITIAL_URI, createFirstParentTreeUriUsingRootTree(path)) try { startActivityForResult(this, OPEN_DOCUMENT_TREE_FOR_SDK_30) @@ -185,6 +185,42 @@ fun BaseSimpleActivity.isShowingSAFDialogForDeleteSdk30(path: String): Boolean { } } +@SuppressLint("InlinedApi") +fun BaseSimpleActivity.isShowingSAFCreateDocumentDialogSdk30(path: String): Boolean { + return if (!hasProperStoredDocumentUriSdk30(path)) { + runOnUiThread { + if (!isDestroyed && !isFinishing) { + WritePermissionDialog(this, Mode.CREATE_DOCUMENT_SDK_30) { + Intent(Intent.ACTION_CREATE_DOCUMENT).apply { + type = DocumentsContract.Document.MIME_TYPE_DIR + putExtra(EXTRA_SHOW_ADVANCED, true) + addCategory(Intent.CATEGORY_OPENABLE) + putExtra(DocumentsContract.EXTRA_INITIAL_URI, buildDocumentUriSdk30(path.getParentPath())) + putExtra(Intent.EXTRA_TITLE, path.getFilenameFromPath()) + try { + startActivityForResult(this, CREATE_DOCUMENT_SDK_30) + checkedDocumentPath = path + return@apply + } catch (e: Exception) { + type = "*/*" + } + + try { + startActivityForResult(this, CREATE_DOCUMENT_SDK_30) + checkedDocumentPath = path + } catch (e: Exception) { + toast(R.string.unknown_error_occurred) + } + } + } + } + } + true + } else { + false + } +} + fun BaseSimpleActivity.isShowingAndroidSAFDialog(path: String): Boolean { return if (isRestrictedSAFOnlyRoot(path) && (getAndroidTreeUri(path).isEmpty() || !hasProperStoredAndroidTreeUri(path))) { runOnUiThread { @@ -192,7 +228,7 @@ fun BaseSimpleActivity.isShowingAndroidSAFDialog(path: String): Boolean { ConfirmationAdvancedDialog(this, "", R.string.confirm_storage_access_android_text, R.string.ok, R.string.cancel) { success -> if (success) { Intent(Intent.ACTION_OPEN_DOCUMENT_TREE).apply { - putExtra("android.content.extra.SHOW_ADVANCED", true) + putExtra(EXTRA_SHOW_ADVANCED, true) putExtra(DocumentsContract.EXTRA_INITIAL_URI, createAndroidDataOrObbUri(path)) try { startActivityForResult(this, OPEN_DOCUMENT_TREE_FOR_ANDROID_DATA_OR_OBB) diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt index 5ccc7de88..7ec5dec75 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt @@ -13,6 +13,7 @@ import java.util.HashMap import java.util.LinkedHashMap const val EXTERNAL_STORAGE_PROVIDER_AUTHORITY = "com.android.externalstorage.documents" +const val EXTRA_SHOW_ADVANCED = "android.content.extra.SHOW_ADVANCED" const val APP_NAME = "app_name" const val APP_LICENSES = "app_licenses" diff --git a/commons/src/main/res/drawable-hdpi/img_write_storage_create_doc_sdk_30.webp b/commons/src/main/res/drawable-hdpi/img_write_storage_create_doc_sdk_30.webp new file mode 100644 index 0000000000000000000000000000000000000000..886257e250afa52996e729450690558f1f874bf4 GIT binary patch literal 5032 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 literal 0 HcmV?d00001 diff --git a/commons/src/main/res/drawable-xxhdpi/img_write_storage_create_doc_sdk_30.webp b/commons/src/main/res/drawable-xxhdpi/img_write_storage_create_doc_sdk_30.webp new file mode 100644 index 0000000000000000000000000000000000000000..5b7f16e9e28108c735b2ff4f1010becf90698b16 GIT binary patch literal 10708 zcmXwfV~{31u=O+cj&0kvy<^+9ZQHhOW5>2_+uYH&@4ffys#H3s)A^CA)16ZlMM*KS zDM|o9O;ku;Rh~l~8UO%5{u}rpfDvH8KZL;iUzFhjCgh%i74Av7`O#h_@?yr*qx;Rl& zeHCzSHOXIMOWE9~_QNlQkMWZmN^F7|N2llQ*k zu(E~;!dR^|+(UbB7v-&Wu#5KA_Wu{<^PuyyB^DH4Ra;1TFB+g}WOASZpHOJJ`oGu$ z4F&?=FRP($dAcBwcn!6>$But;rv{}+LtH9m;C=2I83gaPv|c2er5^pCAraNMpqGzD z2yu)hcV6{gfK=PMr+e=1jekq||ssrYqw>aP=xGp09Rh zX=NfpvQ4JhE?J1AiHS!gQR}{KP2As~L5368Xjs^46n`lWr!$3e6Wt_R>KGXcz90-) zmY0l;!c%!`4I=Lpk<}o+U%{x^%yoU8_DnPz?`)@9{Y*!YvtBkHEhp!75?qr`H#FX+ zvU@j1#_1Y50?ZB+d~=dZcw@H8^ZeTOb4OXxI^hLio2h}wR5o|U%=3yy+YwPk>Yo#I zIzKqVLW7GuB@vtXC~luAg6gg87{7~hr-v>Q5ZLRR;c~t>6@*Z0edn&YBTMGxTfQZ! zG&Hg2($gGF`yjdQNn-M^BkmCjcNtXGLbZTz&>7dXMPcCxCeTYS!c(5VIb^|yye!es&8Fv&q6yp%Z z@{2Q_ZLDI?k*O*i%!}c{qJv|B)%MI_Y0fHn-F#U>_QdQp=4zog>6k(6z5iIPYMQ_* zlwiN3ezQhaUcp~U-frx0fji-hnaTMJAEYSfBO0XE?E7JJvF`HaThsPFoSO7Q*=KT@GQ&W65t*_gLeCX{UNZ0XOk&UMv z(5SrY{C25fa(tB9z`nXJ#G@StX}tVywB945AVb%CPAZ0R6u9a%PFXra5i2|6Xu`j4 zCZ4$1r&-r?_;;cj)NlW;$bAKLb6tP5#M%!WzS~6N&7V-@nSpBBsCo*z_LiB4NtokV z`~DX)}jL&rdF_wOk?wf z3BWhUb7L?G`t0Q|SfH`X7FXws_WhL@m1ogd4TsNX>E#ScjYC5$u<80k`0HB$6$XPs zD|SarQF_N>hIg1k^xe6pJRc*L{Z}({H07f%Y9Hqhe&%;{(qH@ClDN{5>d(mK5t**{ z6SEwF^&%G!y4B;C*g*mdRwy^aZuOHOlE0n@Jg6&+i(+nIi=ImFQ|Ml4b(6-Z-5u7~ zV%6as;VGdsQMCDStRy{yXc<%8z^FI0xpF^w5C~T8o8x94pYvfRF0$0__3h5^QL$#} zs229TqG3`=)a^L-I$icIA$Y#5l6WjbC|gv9jbR9@qk&qw{HK55!b6D@xK^|AQAK|U zrpy9Xvv1QjQ+!Y`VVI_=GJlV)f#BXr&LyyXjFT+EVv?5^8R#N zhQ+5MS{DOMLLPMD6+bTUBF5e?A;hEqY+xU&G^cbuWe0b)ZwSR+58qWaMcCV#JgJ~- zS4WxcH(Bn<9C+TdsrG<5=szTt7JmDK88uQ6&Eyw++`aR5Q>x|K_*v>c47@Yq zuYjzPV}srGUuknotowB+Fn@m~#YgLHhvOLYMqpfpu+SiBDXb&1hoT|J%~X|ATs>Ci ze9kuUuGqZ!y7%HyqWXAH-Yil9ZE?b^O$Uavmr~bxv8SbD>_o&cX+8_CQ3WO1wMRV- z33P><7Sh**6%VNEkzq2-^Q&=htduQ9s)oSyH0bfh#&6|6CSm;WI*CtUJcb=GoF%Zy-O@(r+S+Zg z1xyceO#j@e4V1}(tuh;?*mmEN71e!YPo~*e*R=I9lU?i)igPx+IRud;r%W#ux(wH9 z?y(^s{Q*vbL^~hot!0YyS0uYg9YYmn&#STb0*0o2cb66!W<;EBkx=>>4;!GZAz7wa zh|oHPHJ?c~zU9*3V5M~B<2l?EZooB-em->X8st7OKxROF__b2j?s|OUN*fr^Xq=pB z%uT|%L=skRIt8XCxgu1`5vdtZsJ8u!a|{hSQ#hQ2@S7Gez^~Sq8p;*qXF>L{&J6R4_}r6^Y*yD|5`wQ@*N1KUcm*`PX#(|lOX@+092dc5X)(G-v3J;6 zMX2hMO21Dua+YTk5IJD+ZBu)H1RMw6PS96%UUV08DOI^F7gtzBH4hb6CDF9)^d63) zJzengtL!v`9hz_FQ|RQIBGD{$q(NC~M)LwM3L;c&}pl3i#LCg-J3(=1ssMO{Mp zQMe3HF98^S#pu|a>_!&m_9l<^7d1pXplaYu#DmZq{G#`zeIjmTj@Uwc_!64eFR%-& zu+M)#a{t>t>Bqf!tZzg~6Oq1SlH-IXQb#l`Z9453b z3bLnpY1$^$W|{Sb9sO$@oJ`N0QNY$lnw z(5Kcxx6W-7XeC00tlk`W2uB*bhmJ4~g3<3TLPGsVp8t3zHl6mr4M~up^QSuf-S`uj z1&F)vVX8g<|5Cq<&w;n%f7A6|l1rc+1?mi_9(0`NGnzU)_>Yg*zEfS8q`7n%v6dsq zYspl2v8|q^5c65LZ;c(MoJCYI#svOlr>6?}4DCX3wh1n59@;hrvp=?IcxKCNr593G z`kfmpFh!(Y$|g*PGoIA#Uy^zQMVhwnA`fl*d`9i3XzvlJna}dIZXO$n?($sKA*yCg zWZ~?o^c)V;u_h3ZHBq%USpG~uDQV1dnsy z-`C$_ylN5j7qnfsJvmufEzL+an>})XzG9>z6r1lrU&b&qC1W6Q7`a7;BSDRk;|QnQ zGGL5D9TFP;s9pH<4wcd@b)K>B?+szhSxDKNMszAzrmPh;o~0q z=qv2g%BC?VQwq#dUSU6KUXXXchz?<7wFR6W1;Z=6Yq`QHlX`siTGQLGJiJ9)ckGGn zEGL?JKtc-vbtKdA9M&5+ z0`Df4IdHNw>s>(5`1=~p0d5OGUxd4AkhdIkqaM^d0#|Q(NA+;RvEH{JM#wMCkNa`5 zV3J?*Yjno9PL4lGf%#`SnC{<`{?TICTlbu&MIvr<&ej>T0uS@18Ho66o-nlcGtfrO ztw|PD>=NV(zrrw@pgOcq0l*jTtnj$0hxLAWD!akqbSnAJHvRi;D+%Dv%5iy>jxzZ`LE1rT(A&i zae-5jq(bvc7MDz}XM%* zTcg0z38-)I5U@$MvHXzNG>Fs}-*N}W*~RjPUeF{vS-#2Z8)fFp?s-EJZDaT&u4s~+ zEk5N8jI)a54!mIgOZruwflO#8M9OgpDx!pPXswaq!pgTQm#fqpX~LS=wfNltkl0pI;@ z+N#D(JbE!JQCY6MCcq?sn4)hU2)a!<$ol^W_YFAX8uCn!omJ&QU%Zi5?d8@5dUg+A zyy54;>UuMJ+zp?a`2-xGQ ztv0*qu;+8-Vu_gd`=ZH2sHHgo@cs3`Tjo&`87Z#+Pj&-HuvrIY(d}W4*&waHW-ycl z*Rz7X{6JNs!$%Oo)e%zqnQ-Qc_EnBRDj{cGU0nhhY4?cbRC*$vv4t~MtE6BAolFFEv*mBRws z?N;O?@Wy6<)dT3xHn=q(UQY4W?mtg1|Y$9q$$jTwW6(Tn)a z#R-uALOLmz^Q~#x)IENw3)}bF(ivoJNZ7Urv&Jlg?U{*PN;MX_O1V2*p8071Rt-}% zlQ95*a|}$jl|MRHf+L_c9{W{nAic zzxSpITZDbMEifEIo#{-Mwv>@<-~2_naE*&-7w|&d>%N*+0)>l_uUm%@^cX;no;M^v zyk9sf9U`e$Ou+a_f)E|le1*4Nk+Z-$PF)(W@&vdRjQ*}%(^fh|rqaVc+r)@{;n9_V zPk=ECBx-I`bPsiLG(T>V2|=dO)~m6pTP6!x9D<~#I9Nk1aBReNaFS1ZhsA z+zy-+x6}`OEbR_ca-Hr=?0IAt!%!w#O|=c92)FKmbsfF#XJ8FmA-G{(f}4d z;}FXbz(_cIQs&Kk-FV@B*8+3uE}fL7CHMD%GQ*uqXW-XZ<_cv%nDXgmU1htQjZlGo zjWKA3nqmubo+uWEKAKA@s;J*_b4rV-XaG!=wUuc8JeYK^BrdeOYWRgdtPF7N_eb+N z7(OT~-@gTWjzSXf5n~KQH^aqI*{q#CUd@W(lb&yjT<}@7JknFm+_t%8DxY?Q$HF*+T?}PloD~FS{u>1Ewa^m z^UFA4?lU%AAM>1&<`W?g4P(sJHoGWRiwaX^ZzE8PgQ(hh(o~;BzaqYFCA!C;HS1{_ zZ2n^Ta25Gy_Ym3_I~d8OUbBmfcX5A1%xgZL3ZorI8uf*|+4ycXmt zSpmL8$V?s)JoaZt$JyvblyFTi+ehX|R;$M%KU2*PGP@;Kshm$<{NS=M8?uqYQu~IJ zN5D>p&i>qBM-_w;9FU zYXqh`oA{K}z1NXPs{@egDS$X*y$zHBfL0F2bybY5ZbWy_MCCyyuB84KcUXbaJo0@1 zr&Mg9cNzt05v8$X*^n?H)Gl}w=_n*iPLdi(QknEFJxZlSP9!!5+L?nR(Zdda2ONhg zk8;16_OH-Z*IK$J!3=8Qo6eu{0tQw+g%!_sK(R{7eZow-5cM4*VFWw6&Z8K2EIhs}Id zs_wq~Px~kBe)i9%XBLMSa({y9JU-G>j;W|>`gZn@Nd13Dv~6Q-DImvW2Bi{Pyi2cs zs>z8`y|vJSf;6>F?7Pbs-5c`$1rgLkYhsx7gUMT^aODMZX@^RA10A%Y9()bNQe2vH z2#pOchn(1U8>BX?lHy$FgCv%{ehwy)9>G8XMrjsmzQ`Te(P;pUj~2#ChDzs#C7L=2 z|Lfs^H6R(gJP}XjTXhFZv5%7V2^z8fr*Ycw?jxZK+Ey63p_|gv9$DMr^RuzM&DNqJ zzT3ZDv_ScgL}jq)jNxlN5^|hc30*RQA(A!f7%{W3-!o2*!iaJ{RQS;qg^4S|Zt=@j z&+geWQ|(uUflr^_C`8U*3hG<$L8f=9zCCiLr=DMNqLb9Qjc&6Et2XR8h$CIinKH>1-tarPLK+o6X95Z?WhU$u}tET#s6@z9@ z@Y80z*dL79O8`i!eKZ+@pT8}AFujzP+j$#44qeC&zWvDLqB5(&n*LrNitGtb7kq>E z83bW^BDyy`&%|nl;HW+Ew<5?ZAbUuJqseSrf?p5#)+p*KE_6wc(Nf1Xf7Ql020@I9or6f*5pjsxnbbU@&^GwDU6Mmw!UB1M)SGBZ& z0&0sb4?^L(N67KlV`0KA2kgT}yhXmL64eFVe;4a!S9%CowR(3o=S*)h2N+!EZFDE~ zb*KK7es3L!A!ivxZ@giiLlOW$#4$kxAy`5Pp$)lC z?kE5tC7D-1ogFhOB_s$Z7A6c>&AO_PIxQc!qTjtGmRQ!u^DPz*Rxh#1Mivt%@EE6+ zUCjNZoe`!E1Lv2STn%@cfmU4-GLb=B-hL2By)^x<(y}djuz8k`ZK1^0%87)4$tCJb zmN@->_eUl41R02+!W>=Y(QHdG=&3Rq8cpD}MP`T^Q zv@TUbmO#rRQqA%x!EEx8+z@$#)eLj+h@T%qdpc=E^5FjSa({;kMZ;a5M!jO$zg{tG znni>UH@$!c({rBUy2^$iU~=F^LC#mqjT2~G8827V>}Ir;xQGeS-bq^d+4f*N+prcz z3{sEq5HeY$@jYzO3@CxajAR-A|lM3 z^cLG1+Uq2>>@_qu3zdxpQm?i3hT|jvPW+mElaZenjncv{S^uteVSsa*oxobE5AEe5 zn<+(==klQL7WCxz@_lz2>m~)zbG&(K8e`?)q7l1eo2<1*83C;yFY*Uy&Yrd$k0CTV z`8i|avQl=dXGf5I3%ukwHM7P`3b0;hQF(hOUSoeAnpdV+#fR}9Ry7pLp9lTR1;}XO zk`wA}YGY(|lYPO^Vqtqf9QR{)&%U!m@r${c0EOeXd16Pj@In z0>!g96||EANfX>@3=WWR27JB%Ur}*9+aJiPS$(SKbeQQmlr+PbwDs+Z>;6TCQ|M$1 zKLfsiH({^0g>4q~Pul`~U=(9<#`X&%fzI0;Cd4=r#)eIGwdPTLvoL%#UPSSY4%to( zk3Z;PMx7JO<7JSQIw$@*F$E=_eg&#^=MYTue=@WK_nV)o@j_seh6C`=53{vDn2~DJ z-na;6BO@>q3-ecDtYrK;Pzd~2oW5Pbf)}18GIlWfb77;wB~ey+(qrQL4M7BWI7-4m zgpL;{O!E9Bn~EDG5ZE52O$V;7B(`L;mZwp6wG=OttLb{xK}`$ExuN|lTR(^wWDuv& zzwC*ILg1WA5^#?k;eDi>3Vq|Uqn=aV>UtX+ahWbVhWgLxI-63j~ z#8?OKEqFFC^L0cIq?cRVnF0B45T?O!lp4+6(+v~?y@RRggmg`_QDzycIqysf=M#}q zvuCO@lr@ZEjjTPF?`#PMdC6uSYSk^$rWKGC1fvfKCje(_V>oZYew)K#Bv8(mQEwfq zxS%@y(`-PEA>BRylp9YtDDDWh

QE=sy&Y$G$DFP|G~#NGi!Qw)jG#7;f5o4ijgS$WkAK4kgX!?waR+*2vE zY+=wfX2~v&d%RK)-4kox_I>((8y0k2fsqFBD%2B$*vN6)Y4~U{sd}R1iu!F4D~4Sv zU_VJ$iucAr5d>KBkku8O29$rY`Q!Hl@AZ(C4ctml3BO;xUH`a*7Cp{iVl1Z8y~kMh z^No63ubPBR-;25Jdt$o&8(ns&{d)d~Uz;*7df$VnaTWMrCK`n{GH&)bR-RZg`UPTz zxA)M6gt;pgJ>Su-MA4e~PjlZmmQ`dCN4iC}Hj|Mx;nf#jE>W?vL|Y2V{R*0f&Wt(A z?~ORjo>^8Z`hV~ck78DWFoJQ}BF}z|45;EHk@nk5yi9n3l3ySbsA*i^5h~By7eH1T zvLDspnpv0-H_nQD^xEdc6VULp{M3P%l2)XQIz0riP;{I{DVRLXj+02s*qV~c=2nV_ z%JKQptkJWd7dwH?JV=7pp6IbXl_Ry!%@+tRl5#CE-s3a+Z9>TySO&<2H*0Hi)YSX8WJhYa&P0L6ZSARD9=MV=zvk6ehBKD zf1_N-{sE!V&uY;cq;}-C+MH-^1}cN0TDanW#>$a-|E<~uDId<3&!4c@QsGu&3_ki= z0lgJP%XZk#(*4Dxm6EVm_$K3SRv_4&5mI#v0#k~*q6PSZ-z#_f!?T#D-=La^!NCv1 z2SyPN=2?RdBCu|J2QLaH9k21+1>-b&X|1|>gTYKr>Z@)Vv4Gj&{WNm2S#+M7sPp0^ zxl3%&Ftc#cu10Iag_(v7`Ot*couEhY?ZlcN6g#tcxRu9Pu)WmJ_Bh2DzKIj&$Wl6q z6cZeT!{4YLzcm6hhUM<@TcHqwC0&%F0XjSI05;#q6OV3w{+A2JP9|CcjSkr^d$q4- z7`QG94kKR(r%t1OQi=ifTzPi9uKE4W{Cdiv+ssaTr_@u+iA_?Wwiz{rjh`%K9@3QQ z0~9t&m}uXJ2*b*39r1a!PAuRq=eC;X8yoLCa(d$s#?T)C^QeK@kwhQZ;oLo@r~Q!y z4Qn_|qDm|22kov5Y@JzZd4u4cA)$XVDn!22Pnj~b3ewBIDhnK|aMd(O5*>&d-5Dku zBP{Fo_zg5mDt&dyp=#;*m3QdMsVL{4)$HyMtm+F&K(pk!lY6Y?1bLS?wEtiX0v_=bj5R!5_=%x0-m_4PM&VbcLim7@Rx#ik@OPmvjv&Xs zH&};zGFFAl%-%Dn7ClHIyqArunC`8MSQXZ1#9am=e?la zGA2C#i#{=P%Bj%ifcl1-QC^fZ<;TrU9rG%;IwStY%r2`;oeAU@atD1}lf?vcV>Tk| z(tk+`wjfpO#c zu-uWLu~!GIsaK(~oO0fa>&yo`X_j&(*32m+lqgHr5%2jO3-{%qSb^`$S3b6v4JGomChORhayQ+zA!V@fgJRgZYv!zdrlx5 zt$*!t9B12Y6vMWpbboY(VcpOn z2JYZ^Wj3Pv1{z%Y08f(5M<*%BK+A0UOfaKEom&pR#mCap23$n=>` zl^hA=1%lqluVz*7e4|S*wGViQsNQm`OeXh+%CbJ;xq#Tnt^Wz@zc|vVP3?GrNy>0l z|9zvTs;ku-wdSvhzj{3}?JE+6#c5xKG=ShXqgzW>6QV1y0WiJsl$D&f^!Cv~hyMFh zV#I$&63*7@KpWXu#o&GaY~1|y@lyW$a!Xpz<2(M2vh!zNk+Nc-mhxTNm_bd_zo+wH z9CMkx(plC*x@&8n2>h~Fger^&5$+nn(F{lY(ppFwM0wVB1}>A>5G;;pS1+|Io`dI2 zhLl)=KHEF6iIaQI9^X*v4h%v)&ZlyD^jAVs*eFAC1^OsM=tNFaTJtwJmMN67I>$cf z#k!wY=|t}NcTffY)1TR7btBlgxI~BM8i)>3@Ah_!Lnm z(O4s-dMrlF3Yd(I4a%ts%IsZUxh^#7>?gSC_jISXMU3YtB|zK_iE9%ROJQGTF6FLK zvoe#Gma_e~cpK@2%5ZB+z@^0G53kq^o;!yG!(h$O_;KktpZ6`s8S7H{c2@MEieF0Y zB6;CYA;xl=1&*d!NlWXG3AxzR1wEkx0WX}*qSIJ$j{=vnHG;n_3*Qt-^)>_M3miC^ zxwj;^A=YLRLLz}P2nFd5L+1l+tTDs}2{TFGvl!g_={>Rlrv$@k+$!Xk@%M^oKl!!i zpoQ1vyE0OR=E+q5{AL8|*jaLYO>}J3ls0wP1ut`q+DpkT{^lP*tL?DZBwfwHvysC_ zKaJJN=JMM+0k12TViPai-~)HVmP|K=nnJ8+^{|~l>*dAGXwhkI&OMkdM@sKIv$Iav zxZ-t-;gtqXMt%F>{-{n(MVO|`a2dzTvuRCYf&qdmr6qj34xnTSj&3^5)1FG>}fE`lZIz(CBK%cYd*3Pj9ZsC>a{&D+;=| z$txAd;VMI`x|X&}F!5t_WZ=3gUFyJ)0xGQ>gkE^aoQXSwBQ~}Xyjg`BYJO)6kvo89 zORS9tE8v>(Bf<@}_4EP=&vff9UMW(P)T9F41e*L|Fu$m*TOfhqpki!~fEwHM*1}tK z+?AmNgMJFUiX{QC;d;RAyLEdSobsWO9}F&J=(Dc(ChIs6%UI9qleRoQSrHoL&5KVa9#G#=Vc&1`i?mgmuCz z@{U$tu&-nfcTVe)SVkqN)*#0oW@tF^$ZJo&(QbI|TOCwgEE-diFhJpX?><9__%ZC> zi3+|`#3wV;t7O&N$7)u^)5yaSOztgArs||W2K29P`cC?eSUt)Um?|P8F%G4EJ1M4u z$Fvm+0ma@7N6~+V@476DwsjEu&!Y1G^<+_XNin|vW_Jry06VN)X0s$<-KmkDi daIAmhKLZ8;=R^GuLI45)fc&373jDv({|B)^qDTM$ literal 0 HcmV?d00001 diff --git a/commons/src/main/res/drawable-xxxhdpi/img_write_storage_create_doc_sdk_30.webp b/commons/src/main/res/drawable-xxxhdpi/img_write_storage_create_doc_sdk_30.webp new file mode 100644 index 0000000000000000000000000000000000000000..0b3ac2644ce77b13852fb27fe28df73cbde01738 GIT binary patch literal 15278 zcmbWe1C%9Avo^Zhwr$&(wr$(CZDZQD?P>Q+cTd~4ZF^d`=l#z4zjMy|&%JBi*lTA! z85xmPnYGuGkx{#pB*nx^zX1U1qCyI43Y;3y004mS>&pQO=mr5u3JWXb1AkQk!1*@D zw$7l80D!HXi<6SL5TS;q79qqT02qJ*K>jj7H#By35L8f*`D^`um&Zi_(BGChy1#w> z-);U^Eu4v|voQbwMEGSPVC>-J@`Vk)FuS{p!(W{Kg;9+y3{Adp^%tgf`ntd`y!=;h z^e=q=7n}cs{}~jjlZuk?*Vs_M^n~XB1snYrY;56V`(?xWWkYIWYxmVZu*Scz$zSaA z7u(vneqGx?@^^%=rgo~zUq{lfFD^hFAPJBKD11$;5x^B-39tdU0O-Dsc3&E2fYMjH z(Es9({g1!GmzU9(mnFdX%R>ZU53mIo{^Jk$dk?;BzU1F?>ukot{ErF0Mi4&IY88$pgkab2?9AXWJT=E z1&m%%J;+d&cI%bg#zA?XGwOi3N1xq?W6iXl#U_q247unJoZioKAAz3~Z}#;Jcm9`~ ziMJrnDtE2>E`lew(X z{FE{m|AFOq!K6*e9c?S?ces#fe30n6G#+oLqji#vx+WMHOAQ0os#0% z*Qo>#JzQeEBZ%P5z}q7Uj`?7}Ajr;Gpm~9fPeb^n)?a9i0tevef0JVGiBK6@ex3V3 ztIOTwg8S_;D5*0&B;hp2$m$squTc>TZ%|7j1YmM!j2+B6fkW*IxtK@A5LQDc5Z4_a zQvnw(Ym>;CC?)Vvj($;^Bg6*52lXBr_aLe=jREecOp7y05z{=F%wcc?queU3Luo79 zw~mq5q`B~Y6)${8XE9iW&u;Hb8u2HbUiCc9LDZUol8hDQZ}n$uLFJ1W zLsIkao3fL{RcjF@EkaoaCp?emb?bL(FA_%25v$2Nc%IQ#@WID|;4Mf~=+o~P%{uh% zpzP1+ax9Y4uxjP0#DFl0n{a;odaL*`rw^K?JCF~t4i_d)CVo-K(P8Y_DU8i>qr<22 zj&3gjysKvE7Y)uUHuWJCL$2g<>+Jl4Hhd2d=M0&tCF1*mUY-uVpSSZ6=k>xDTbM>b zJ9nVvCgyX5yQ^a=50e(njHI3@_<9(tu{`T$MU|c2#QfyDk0#u_TCVS>B+kz)tS4~%f=D>C zaTHM4&rmE|mRsxLsTPTe%oyxOP?k`e0~uEz!ZX1f;aXYr?i0ffjU&pDErKP|JWwIl ziT~SZ(++7M%_0ivT1_+|(+y`znePg|$Ge(G_y>sizTvc6jbv0qw8>NO%xlg^%m61I zY9-A#aRQ}-WCi`rc)7lY>SxRm}7WJoP--HFEOZ$uRz2M3Ou zjkBQ%Lh&s7`VG@3GC)Y8=dcK9*zXJ(zdv#CpLI&-_kQ4Rcu0y2vUKdfy44tZp4o04 zF#C^8;S}%5t~o1V{Y31V;~6iR3w`XG29F*VgZ&YdhFfOfg?;M|ihbloyYNFOeLlg0 zGM(Nnmrg_zWE*jD$!-z^Ty`zTyEui0xWR8p>*qnR zOux8iC(FYWdA-W&*nRn_60Ej6--+6h@K2g~c~%?rn)|-`5MS@O(p9i4)#h0&snS!n z3N4w8AeL*Iagc+0j^$wzOVfN_5_RUj_QTp1?>X}*k{b&H{t*+0T#6c(WBD>!-#6lS zjg>%Rl=MIAART9oxpeANRN~JAaM339>3jY4lDY4ebS3>Z@L>ru9@t{Bd6RD<#NvBFB6c6}d^!k}-yeAw-Zugc3|K#+bha zI5z?T#8}YAn1g@oA_5Wi04;h2ryVQ5cDs~@DeujvpI84;+`s=P`VZY2qSM*WE4Kpb zP_9Ym?4$p^==DqT=Sk5*Lx6uiYqW!C^tw?tW%7y`cnh_29fjASw5F}7m~CmUvDV1c z08#S1heku6b^ZN(n8?8@;|X14^NjMN61iSg9)da1abb+aCBkKwavL=y zD|&sJcFHActoyrmfbf)^f-p?@tK1@f3db%bpf=-xLF0iBXhO!T*0p;5=^d)P!RQR_kgU#KKOpdcnD%! zU{cNWwIgrZDnV|}BE@^AZS~i{j-!VROmZd9+CfO zJrahaqYvcW;sTnf0W2|T(ZJ?0UL;yk*ix~qz!ncfkkR>bt1Z%Wq;A|UXG}2SF^z4= za!FG!GBn|ua<|uY(uTNMnhm+9zHb}yCYPdfcrfAqNiOc)%Ch`<{EY@Xua_7}4)PXM z?$0&6p`yWOqhxzhv|!RHpL0~`yQtUxTv##*2eBulq(EN1*tb7nYM5&B!QsJ3qoExy z5F~>6-O)D6eYHPM+CH16&bqhJ!N_pE!OGu*yu7xU9U7L$K{oexmUG9zmf5E<15YqZ zT}OWK`K85O!O88f2zM+PQK0PKw!YVidzcT(-%jj{3wW!xHlA!9OJf^`H}rdR(k+e} z{W;sI{TZ+04-1V#p=UZJc_7Z@1X|a1N@mV%CQTYT@Rp=$=(0F{D4FL%;bR%T*^iHB zu~Vix??{yYHVsy561n?s{;3z+d`SH1)9lqMa{pK<{t1MH@gxqz$xu)`N-&6N+HOw{ z-$cp5vKtZmmNQx!Vwms_el)J}M;D>HMMqfT@zAD&Neg0o?rWhx%>ab6<6lO%R*^Z$ z_Ru2BXS*WLs+)%q_ECH{wC+$3uXC@PG7-tTb0NU=Ru(mdW9XWg+mmo|aRRt^a7v)y zTY@biKAp%O);?S57s+KXj0gH$EUl8NPIyewBV@5@ujDj4ue8U+wz52M*;ybW@&Cft1A z4-jA~W&1s{L(ZzUBye18tUOYk-QMIg6d|gaJq#>j|8bP;^qe;VPIb{brIuq@ zyj8@ww>Agr{-hn+*SreWz=bDhjq=;Na_RjTwTg~~zQ2s+^}Ry7YH|tnG?pVgt1XYL znxC{026Wy^KJqQ(=Q+(Dnb&)L(LH|2J#> zgC2_?<_d&hlQHpLpot0pp}McaXsbZ~^M8mRv)A>;_gvK*hC0x{Joyh<{w;$4#gPB$ zYYZyeYV0=uJ`W#`{sVEv(u$wLP-o~oUo7`3b4m8~FCT&{pQWB?<6a1Bn(miLtuB7? zo7N&;^co;#3e%i0|sl7H^o+NwRJ{l2O8VO#QGVlzzOPI%W3*V% zs>g7qBhbOr{_RXd_lM@EsLx9rzb=xS6k<*$>{4-}e+%lUnU2w6712!i4=+)^sMatT z|5qSWwj&;YSf{A`!`t!jyDaPIr!q0GR984l6QG)6Tijcfv4M{Z1 zj#Zkig5hELW*SwN8pjHbLD*X}C#=7AEi6;kv_H$Mu@3I=)g6po$fyl(Z;EQe+ zww5wrYuP)5&1O*W@4F_iB@cNpO>X6QiMZn09j6gm)er>T8J#CFEZ1do;3?5q0zd-Q z9mLc>41_<}AJMw+Ep{l3o%l2j!jNYn^Gb31U;?CunJOkkc|E?Vdd?{ZRiVxogc6f8 z&D{RoImxPfeNsVgrL`1L&_C3`Ab;nOXP=xR*A{A!X+Y{%f!RHexx1BJL0_A?MRW5Q zWm7J`aACbHQ#fwjrqPFGmn z{g6B>6CM;lGw`r=lHU40CcZTXVUsuhY$xCGqfj6;;p~CLV$z_12*wBO??&z`-t{^q z{|feo)dH~#bI!(jI~JRZaKzaEVTrFojOjm-*1wpe0hV!f5Bzi|c8Hzpe*|Lxy;|y) zi2CO`dm2H*@xM3xH;ViU?0PtT*%s3B)9K4`R`YFynz5y1U!<(n;`Y?deskQoP!xNW zENVyv!}QR9tq&XBGWyKNgkcS#5Hz8}++x%CecdDvrBO+awQ*uUmyM9=_oink^r@Jj5a6f^@Qv%qP#dIYXVar9s1GKl}X()D~Ojq zzozno)5)Wd$fp=P=-Dr7pZU<4Z7u>_o_nM#TMXEBve$I*z#hhmA?vk|9|!1});Q5G`YJTsZ5Q&BcCWrcE#|5^ zcWgQ-V$asIwrsl<@=Yd>>6v8UKNn)!&q3k^rnXua^V^l_$C z^|_{rJ?!f#y3yNZZC4na$>kC!iis-(ckl_^XoHq|-n8;jz@{w|1q%2h?FGB>DQe+Q}Vy7U# z?L5+>8ERlnbz0+}Fk`=gk8ecgnX#k5w)egEPbv^! zze+t-7>4oBjozTw-;bKF3I3-O7jbdbcuDPp=@4Lg-~^|0#W%A z3NKINtgVLP1+C`(ECIFR4}6o2p4H(2V2wJwRRSdHHX!gp-VDJLaK?YAiakD<_m+xy zyO;ynjlC3IEtV$c2AfKk=QrXV;@U$w8fVcoTh@`=M%O>0aj%8DUrT^ zx0_$n+sq?-KBPnGq}Tt`?%orj#dx~uZtr~J#0zUzsT-FXAqqPW^Z;G+YbW(j_%?v? zH#?PLq2K&&%GWOZ^D9wx_%mrqk!5;Py>y@I;qRW#*3qBzjvlBw{Wmd!#nTT}xU`L# zdh*KWBdKK+RUhXP8>q@(T(d2pe;Gm>*sAWkOHJTcT7_G!$5Vb(uDtLxxGlzYYC`AQ z{){_NyfwwSx4ZfjtT$VA3jCv~{40N?&V%!3GG7O4;9n;HL`eTODKS(>$9iFpkbjXZ z@7HwZ{~uxA|E2nZ<YyxT#+uRhr|YfQg+BD2(kZ#349Hp>xWc$k%YxojCtZ2`~)W z&s%ag&CTuno13DT`;h!-J~8)1HNGb zjV&)CeSad=aRp?;br4k!IrqH)-qwG$Tfnvj7O>Mn!)iAm<1@vf7|Z8_ZE!o^_M^O^L|ICYA?}49=aErzjjA|V{lu&c8d=3lK;5t z-qzUDky*xgc3r>Vf1G;~rS-DWMISS^TlUE}ZRfu)-wHDXg&6&3j&rx0f(M$52Uqn! zJ9AkNcf!4h-k3J_aqz3c(hP+)rn`fy`@ZXj-9nQJxkoJa64Yl zVrM_Rwui%n|6fhf4901mpgn+(4}>zY+NDWO?5_tLe}!eYOls?A<_~^sOUi=)_YYYm zbg`BbQ4?^m004nS8+L4i489@&5hW3c1n>g|E^Tg1CU1kF4tARl52p&NRFSJn_SRy|#&BZQR8A z5*e*yMW7~%ugbIuc)mmsxpR*v2E2XM?>thoq`A8IG6d{K>w=*Ks%x*>mEsD6mnCU* zVc7-&NEZ>SaX^_prCXccEvR%K&t`qMNq*Pt=TBhoK+`Es5D$~O3}=A`a>>{7 zNt%TW*HMn3cfDhW@Tvmc0VZZH7mn3xuL2$+UwbZ|k!1ib zUmC)kvFv>c1w)T97p+AeYX{s*g*w^E*!L}Cd}-}8+2Y=+57Wz#sKKHAZ6Wo5U+-0v zbw1sca2&IghOgrCWs|dG8|52I_l^z->Nhh%mvd#={o6qc&TP_ihOJbG%FZMoPDd!c zSHsbsh$P~SLnehm?xGi6#pIaCCy_nJOERrMyh}oD;^&i3H*#(LB!cC0e$i{3gFOg4s_>wBaIEa!ZB z*kFeO)m4z0U``$<|7WtOO@tc-rOz>}E~VU$&nV!Ic7~(KtQ|6xhiff&?G7ousrp9{ zx-z7FOKn>Z%F2+QA8dn}<1zfwFBwR5MvmJ*N3Y~ZV+_yHpSN)Mu-EYn&_9KIXtN!v z_rKrudvkDHRj3DQ4$%?MzM~h?Tv^g?L28p)w@0+N5t67iStljWS=tzmoQ?UYN^yM` zkA|jmLPTqozPp9tVz77SIn`rmlYCIt#bW2Y1)w$?^dKV9uZE;BSU$#_ZQ#Uuz2^gZ zq!oHMy^*;n&--=5f@d$?kKx@ySJwbMZHv~d;m%1erU9XDaVJ>V*q;I=^o z2MuPDSVO$*J}bBW3!cI|{Th_~%YTSzbKOxsk7$B4fB8$CT7jg15|`?5;cIPMXC6>P zMsu>3QuH-nX(nj)6AFFnEj<|;ua2FQ6ur~+(RFQY2DvVzj^zkE?tOxG_vqb4eoL11 z#h9a)ollX!r>ZG=^H@07-EmX%P35a-v z_GDDxEiaV7-n?(JLb?|WQ#zF9>T{jP40uddryPC--FKf%hiZ~H&(=Be95JwUQNuaAD;*qPtLb6QYM6E~y07n?fvB~$* zA|dclK?2LrFb1jWQUQiB7R<2dBJbyu9QrXIb~wg4K?)gz?l%beAOZ1uzryNqBr1B; zrzc6TMun&cs$DGvq6Hy~zh~%NndejQpP2r@fEE+*%l($GmN7sm(*|TIoojWIPM@}m z&)!hVoxzL~U1?@7+UzH1qs#IkITUi{@LIB8=Mn$_kVJkESbolmNBU>tJC%jD^WDbe zf4f0z7oBb+E})0;A~)vn#u0CC0?&wg827Zg2pPJZsv`-y<+1M(N}(zg)Ro$#e2+WR z4uW+$PCVIC>h+c21=kGogHlR0nYx-*3`hlH81-!fif#C50;B;d@SZ{vjQ5xIkqBcv zfWL#mhtkK#{|LP)VlI`$`MVSV6ZCwQ;6DUOkw$iW^vwmnYCv4+kkf;swBIb{C5#IG zwu892%3NTH)`baicz2_*RG9Pt6mXmRLRUiJbC6DYrW9O_&sfU1OV}s@G9tqj*f7~&CF+~06Rf+Muiq9l_NoM2hX)3FtTRhCB(B&=yc$oNqU??xFPXJx^3Qj zAz@2K7m#`b=;u5&)YHFm7V=1X%pYz6Ana>twP7JQ^vL7^FxC548k2}JP7Q0JkfUR# z1{kkL!w23GaYq4dSP3P0Scb5tLTkm`NOHT)9&@svO|oeT<2JkV=`V+#nszoZMFuMK zM{0)#k};`DNeYxwI~_WfY86hdvBPcz-mR527($7OELRH!oMx=U%g;8C8hj@U!glo4 z@*`9_9*vRd#;la-K8EWb;$14E-0Z6zKB^!0^3hAYjr~f`Bop(iniRKOCb!Bv_VS^& ztaaSwcy6%g2jM(sD$$1p-5fA7LMSX=F|c?YG{BUq*@7HcvaaVGy_|0EW0dYJu@C~| zde-lXc0{Q_s^6yaiEG5W+Ae`)1l|Ze7QIHc_FG9>q{VpnNvz19csd4NTtpcX#uXOg zI!m;<57qGT@>r8=E1{~zU8J0zvh|ostz{o0Zl92GKBB}e)Q-r7F&a$m!m~{n)mXY z*RMLrThDLGoH0es&Q9>dCZSp~(X_8m%hvm&z_n%!`PhC>Ivj9|Y~%Y;0&hcNDnKgT zBgmzfz`K9soplPcy;v;ttOL4%D`?O_RGrj?ytF76MeP%r644FOIHtt|(mI->vq}Lx ze-ap+J`th|nlU`aS4Q-KV8^(HcdGQu`+dF>1Tkzk?3OOU)~zhjos~T{H$TOYiI4n` ze4SwwnsIt4^vUSF>0q9@sAA6NHI= zA28_H%V|U*Y3E|h9FJ((G&ff+`8w;@EcA<&!Qg+4XHl89@G4&94K;T{!DUQKKXY@rJqq5<7Xa}ynWmt0!-G9ymTlqLdyu$O0S2{Q$$XtJ zN#ZO<`<8qDbXZg37QEH7Z000Oggx{{yhWyAed|VWj_ttard4av@Wt0kw(W13-b;!+>Za3U4GHH)ZMp zjZ2o}b_6jRA15X}PGPDTa!i&}H+U4$jA8$#(%wfaDL~KZ4{t(W2|#B(dNHWz%Z}KH za>TT5B^aj5y*=t`zoPdZ`wP0voe+=z*=0b}648|~Osk%=OQ7zWAqE^xf2|{5!b(U4 zBI$(&R$9m}bG$craOgs_+salLZue^kuKdKLQI@@lT8i2~tM9J0gIE*tES?D#rsdiaxZ&Vq zX6o+sD&mH%V4()leObf9>{G?~DRteA;+VD@(*^^JC`>J2#F`tda52$oI=ypz3nXqZ zJFAy0%_fkhLcX5nR`}@{V)6@{K0$$+cllb`bqpb$+07|tHCb{XU6hR1X+RUW^nkR^ z^rnIPIb6o(X;hPbceq;r0wFma5Wv!$Kb5id?tPHbYQZzD}Bq^UnX{Y1g~>|*$ZjgEng~L2gUyU74Pi?KmY-=RBreCSwIw+{d7q%gL2|W!cP<>>B_|{)FFOx4#pjKn3M&a&pCD? z25|M#jme1DPG)T?g>NgpK3O%$yJX&|cY|wQROY7GV`A^ukJ_F+k5BUkBr!$H(iabi z`!uhcA`e<;EA}m`R&MI+y#pu0sPq_7f>C62dcj@CN6%W1qG36M=pK#kIC#-S=e(LO zq;tD{0TMcAhe&^{SuThbz?v__Z_8W~-s83i7pZ0~UEcAvyegGah1|P1cY~n9bQtnP z9L+thN)dyLd4Rz`7LSB#l@qYM#XxpC3}^ApUNa4lr9%Q$#8O&wO%#>8>H1@o%$6!W z@&-IiOH?ugu?O{6b)@s_Ziu4AFl4qeXBI>t(udsycW;c?DSL}sxOyc?Z@fsD1BN9D7xXgnaP@J@lwMF}P0fmjG9)ePtfRG32< znAATxO6H$TL zr6JF>YXA@V*_;x8B~{0L(-n}?-*WKXkcaBDiqgh1=X!(o6El+5yQXCrp~x!0GxrXV znid*W8SlB}DU$wM|3*^HLnOoZRjG*%^R4n*g(#TIOPF>$EmD!f=^^XZY;Q3(eZ%&V zNS46s)U)lJ7GE}=vk>BR=nAA#Twv3dFz1RmrXe5Ki%Lx$V6vYD*`1X^DGn0NJ-Riw zz!V%+1J3G)g71A@)Hy{lUv>Yj{LVa!d8zpKRp!ooXy0#&Hskq+9i+#)~ zVQ3cUKVUHB#n~ID+!oMqb0XMH3YFE2hiU+%WWP;y>_4|29f8Lw2-r}uB~lhEP0mw7 zl9Ykv)WM1fAAcI9Sq3A<7QeU9V^w$to*%*@HI|=WI>_ZG5|pTcUzVo?B8CjmjLh?>idn`5X%xJ{jQ%Wy6^J-unsPsf!m=dN-nG8kfsG z4WK#Y1o{1Ybj=cLJ07d5M~5O!bk_d&rT&PgDc;3u`!Pt}W`P8mVLqYC(JgXYp^ zoe9qB7A@jf26cs*187%J%%0Z7IMrxe4I;D%YwA9jrV}1LD++1MxiNWlBWf-3cZ#xSVwgW+IT5IG6N2vIJ!QVG zsrb_L@2F!>Z%oH1NDCo|e-cXaaFU!s-BcXt{(?TWn^ENkf7C=p?~Kbi)>}`e0dvoX z`-jzlh<=Uv(#w<-?=%*?s0xU)T-duU@Pe=keM#7}Y8qr#ZgLVaKOd$X$NDPF>oAnN z9Ck#cHau3K1hfwbuTn)()}zFh7K}`@;?&~t*{h{oIm}8>*HeEuf zRe!{*x}h_hZeA4V>NHpqwg)nx@NzN|jES7Mfhp7slRpE>p)5!a^U8Cyz$m1$Y`HfS zm2!!G^~OsHXVhjv+XHEFKnu*6+nb9A4qY)`B1XbecEp0)x?X^^(&73w>(>j39)rY=Y zE}@%HlM=FlXm*Wm*saeJAanusH9EsNDvf4#S7FQ~hiWEjN?BhRRl&EV?!Wgi^a;hs z7i4UWPvW>h)wgTT=&eY zTKutV4GX@RF`glzk}8ql0ZaAfaSh<1vI1eK3pS&0eOh1ql|Xz$gL5HrRYeg+_cr4Q zZnT5I%yMl|1+)xd%$Guj)gZDFOr0%XqH-z>4VNXsgxATm`Ac3|V&}TOPdJo0RE36a z-P~jYyr_~GiKwlv{UjR9G<1SML}De!`hCRLM`GFhjZ8KssYA&UVNglC&y9B|Ptz>V z&|VlyXCS1G)SXO_=H^%}L27FvY~MH%5@}5XFVr8TAL~d_>6lIvf(_7n7jy9To3ueK zNguqG5z*jMbT8xJd$U(8zZ(HdQocJG*{jTvP&hO&thc2lt&qjcGtX0x}#s%f~*?rrw-)p2{Tpt*<*^BM(@mL_mj zECnouKNnr?21CD8N7>J(B4*TShYtm*@;_x%QSOHn~<4lX@sy)90 zCqnK&b5L*XL=ykN%aN}MSCgCu9*K}vu2Jhd)ct-g;LmG<_Scjzk1+VTH8>^@tV8eZ zpHYfpx{yV;1x0>v=_nJG>Vn=@a`L*6BL#_ATS_$D;^Emj5YD4Nd3qo&6#OluMRut*dq~uvzg(ZXuRapAUvLXCs}x8 z-x%6eB3+tAFs?8>N$Uj1L_}_;{D?ECt{*DZ_`MSSJexm7gLGGm3caE_eD>vhy**%E@sFMuhczp8lRFp;BGhlNzX@F*YIwt??qQ7Jc*bsQ`8v|um`cn=4<#X%+g4bC|Jj*da6i(sC zow+DgI_y3(;5TXy|u%f>ft z*|gnNn{M{762Cv|<5kA8S&pNQw@w;EWzmzK_0PD3`G5Fz_>p~jn z&PU4h^_c`3Bg)x1#p)O{o!lTE-z9|9en|HP(7<-YMm&0nor6_&t)=gx7jYlu_Mu^e z{D4TVq1Hb?3@;fRjA`UVJw~)aAJfNYei*Q;KES!PC78l~M@c5#At4k#mppxui2T;s zr)o_Dz8zbimDjF72=Xo$G2rk2Bz)ZDy(ob#MLkUI|0l!%b!nhg%Yo+|>SvU?9;*@X z%A%z`K?lMrahl@M6s^P_wt}ccXfMr8tS{Q_dF8fMr0B%wUO!a*#?4)qI~g``c`s`K z)WFs}KDh9um48)A>mNK&zE(2lcS6l@G8Gso3N9SLK9)jsQ*oMndDJ=7*k_F)-GZ-Y zT>h?g-7w4kq*JtgM0aAnaQx~WaPL*os}w;#1ghnjD>a1|7u)i3JPgGn>dehyKN0fQ z@4m!&%utX!QW&Cust9=a-C4*3URP>xZ+;#T@hnlZG~T|=sTOB)E=16RMha@vtxsiN zzGO{0q@JzwThEq>fbFZR!)lyULp-Sgit113BBHag0qPEAkifXh8!%oeV7u3jR~chU zreaM4QCC5{5)hk2>bPU7=B=aar-|Ja<87q8IpXE#VKX2vP>pr^E1~>xCgr4>XZ3UK z&p4h%O!3i@ZIeG}hXK%aQG>5JCH_iOP%b-OiITM!YE60e?_7mfE7e|C>T1xbgx5pz zWLYy>ce8W}T2m5vzx3E6zUywuoC1mftd!@ZYE_uiyCWT^lo9=R?B0EHh-H)$ugsmZ zvVk`f8)^B&#f>e*@j>t--TRu(YmqG&&N*qaPrmk)k5EZC>W269$y8j(Wq?JRA^(uSFF+(X_|}8O0NovMJr>^d z`mSvp(}uqN3&Rpnd5l0UTO||e$d9!zi1PSYKP?4rcM^1Ld@B>KhwFH{Lee1Fn2%k&jlZ!4*G=zdB=uCFAUJD0a?7^!A*Q!jX?Q*@fhm!Y z<$d4dxOgiyavOyzGAhfCt&x zHgM~7grTyq`o;nMm`Yo@8MOK!SM|E9ini|WZbkkAY*Fu(`WT|U<-gUUgbZ^qGpv+c zE1Tt5xV3%Jl)EHzFx7!%tu6;G3QoYOv(#|&eo@tM-83^=NfR!R%)-{= znW1_he)}PlAiCsd41r7_4UAx6S576RUBPbpIqh-5m-G5Seb=c?f~8N7f8YdnzW+j^ z*}r#P58exIm<_I|uW-szyPGZ9T&Z%v9?siS%8KbFNj$_ShBs=}4orYiLan2Z*fFLf z>94o7w%grQI=qjnX44A^l2GyjGgj@lKFuR0p5J@LTQ23m8C z5;Q?O*1<gQx;ljxy&Xq8MHCyt30SlELe2{d)zPh^+rvbos+LqqP^t&2;q zD9~Hr&xCHaB;*LQ-X{d;-blh4l(c|HWEKbw{xh=zumgE-i?T@^uxS+`;()G1EGkGn z@hd-9|Ixh$NG=^cX5P1Cy(L9@bo1F@s7E9*!6I7nn*E?ziAn!d`QM-6qr=w0+)g_R zRXBWRP(Whoh~XEP$6Hy<^k!|clZLW}*@kbG!sRu*j{0%CHL7^@eh^QjyYs%0QVdX* z^U#5L{d2PL#CCXZKEfya&FcNU#)`C=R{<)jQM@Xj$+GZ6PY`;KHZuW+daL&PTDGC8 zZCoTGQ|R^2q4(d%4KvyP@b}fl zGee4Ad}w0?BmfKzb^QM9M{bx0^h;wH{C7>e6U|VJfl9*;P$UK!Rn3Pb@!h<(+`)af za59(D#uB`>dX`@6gHHo#=Y;V)P+EZ$-nQ6R5y%L+fJKu0Gyy#-9M&LKcBx;G$2=DJ z1};Y0gK$RFFr}SV8O*;1ITa5F(|q|r5MhZvOp4Hlw7jC2psP>D8R*x-BKuP#C}qPZ z_pJF8dBt}@Sr2WoyvnYz_nghd4S<$vFrt9kRfTT?h>F$M^W3%pD9z6G6TkrehFt_C zfZOBWFae!t$3_132wXU)5}Cx`Mw|Um-7Ds D_`|Zo literal 0 HcmV?d00001 diff --git a/commons/src/main/res/values-ar/strings.xml b/commons/src/main/res/values-ar/strings.xml index 8bbd5efc8..68e61a498 100644 --- a/commons/src/main/res/values-ar/strings.xml +++ b/commons/src/main/res/values-ar/strings.xml @@ -183,6 +183,7 @@ يرجى إختيار المجلد العلوي من بطاقة الذاكرة (SD) على الشاشة التالية ، لمنح صلاحيات الوصول للكتابة إذا كنت لا ترى بطاقة الذاكرة (SD) ، فجرب هذا Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder تأكيد التحديد Loading… diff --git a/commons/src/main/res/values-az/strings.xml b/commons/src/main/res/values-az/strings.xml index 4ebd724cd..b7c29e9cb 100644 --- a/commons/src/main/res/values-az/strings.xml +++ b/commons/src/main/res/values-az/strings.xml @@ -195,6 +195,7 @@ Xahiş olunur icazəni təsdiqləmək üçün gələcək ekranda SD kartın root qovluğunu seçin. Əgər SD kart görünmürsə, bunu yoxlayın Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Seçimi təsdiqlə Loading… diff --git a/commons/src/main/res/values-br/strings.xml b/commons/src/main/res/values-br/strings.xml index 981e88afe..e68d08bad 100644 --- a/commons/src/main/res/values-br/strings.xml +++ b/commons/src/main/res/values-br/strings.xml @@ -195,6 +195,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirm selection Loading… diff --git a/commons/src/main/res/values-ca/strings.xml b/commons/src/main/res/values-ca/strings.xml index 69848dfd9..9d998e49a 100644 --- a/commons/src/main/res/values-ca/strings.xml +++ b/commons/src/main/res/values-ca/strings.xml @@ -190,6 +190,7 @@ Trieu la carpeta superior de la targeta SD a la pantalla següent, per atorgar accés d\'escriptura Si no veieu la targeta SD, proveu això Permeteu que l\'aplicació accedeixi a l\'emmagatzematge seleccionat prement «Utilitza aquesta carpeta» a la part inferior de la pantalla següent. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmeu la selecció S\'està carregant… @@ -906,4 +907,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 367454faf..5889754b9 100644 --- a/commons/src/main/res/values-cs/strings.xml +++ b/commons/src/main/res/values-cs/strings.xml @@ -194,6 +194,7 @@ Pro poskytnutí oprávnění k zápisu prosím na následující obrazovce zvolte kořenový adresář SD karty Pokud SD kartu nevidíte, vyzkoušejte následující Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Potvrdit výběr Loading… Wrong folder selected, please select path \'%s\' diff --git a/commons/src/main/res/values-cy/strings.xml b/commons/src/main/res/values-cy/strings.xml index 016404e85..cd08a518f 100644 --- a/commons/src/main/res/values-cy/strings.xml +++ b/commons/src/main/res/values-cy/strings.xml @@ -194,6 +194,7 @@ Dewisa ffolder craidd y cerdyn SD ar y sgrin nesaf i roi hawl ysgrifennu Os nad wyt yn gweld y cerdyn SD, rho gynnig ar hyn Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Cadarnhau dewis Loading… diff --git a/commons/src/main/res/values-da/strings.xml b/commons/src/main/res/values-da/strings.xml index 375aa18d8..37b06dae4 100644 --- a/commons/src/main/res/values-da/strings.xml +++ b/commons/src/main/res/values-da/strings.xml @@ -183,6 +183,7 @@ Vælg SD-kortets rodmappe på næste side for at give skriveadgang til den Hvis ikke du kan se SD-kortet kan du prøve dette Tillad appen at få adgang til det valgte lager på det næste skærmbillede ved at trykke på \'Brug denne mappe\' nederst. + Please press \'Save\' at the bottom on the next screen to create the new folder Bekræft valg Indlæser… Forkert mappe valgt. Vælg stien \'%s\' @@ -937,4 +938,4 @@ Husk at hvis du afinstallerer en betalt app indenfor 2 timer, får du automatisk pengene tilbage. Vil du have refunderet beløbet på et senere tidspunkt, så send en mail til hello@simplemobiletools.com . På den måde kan du prøvekøre appen uden omkostninger :) En gruppe simple, open source apps til Android med widgets, der kan tilpasses, uden reklamer og unødvendige tilladelser. - \ No newline at end of file + diff --git a/commons/src/main/res/values-de/strings.xml b/commons/src/main/res/values-de/strings.xml index d32b0f328..c04083145 100644 --- a/commons/src/main/res/values-de/strings.xml +++ b/commons/src/main/res/values-de/strings.xml @@ -183,6 +183,7 @@ Bitte am nächsten Bildschirm das Hauptverzeichnis deiner SD-Karte auswählen, um Schreibzugriff zu erlauben Wenn die SD-Karte nicht angezeigt wird, versuche das Erlauben Sie der App auf dem nächsten Bildschirm den Zugriff auf den ausgewählten Speicher, indem Sie unten auf „Diesen Ordner verwenden“ klicken. + Please press \'Save\' at the bottom on the next screen to create the new folder Auswahl bestätigen Wird geladen … @@ -924,4 +925,4 @@ Vergiss nicht, wenn du eine bezahlte App innerhalb von 2 Stunden deinstalliert, wird dir der Betrag erstattet. Wenn du später eine Rückerstattung möchtest, kontaktiere uns einfach unter hello@simplemobiletools.com und du wirst sie bekommen. Das macht es einfach, die App einfach auszuprobieren :) Eine Serie einfacher Open-Source-Android-Apps mit anpassbaren Widgets ohne Werbung und unnötigen Berechtigungen. - \ No newline at end of file + diff --git a/commons/src/main/res/values-el/strings.xml b/commons/src/main/res/values-el/strings.xml index e4b901aa1..d4099660c 100644 --- a/commons/src/main/res/values-el/strings.xml +++ b/commons/src/main/res/values-el/strings.xml @@ -192,6 +192,7 @@ Επιλέξτε τον ριζικό φάκελο της κάρτας SD στην επόμενη οθόνη, για να επιτρέψετε πρόσβαση εγγραφής Εάν δεν βλέπετε την κάρτα SD, δοκιμάστε αυτό Επιτρέψτε στην εφαρμογή την πρόσβαση στον επιλεγμένο αποθηκευτικό χώρο στην επόμενη οθόνη πατώντας \'Χρήση αυτού του φακέλου\' στο κάτω μέρος. + Please press \'Save\' at the bottom on the next screen to create the new folder Επιβεβαίωση επιλογής Loading… diff --git a/commons/src/main/res/values-eo/strings.xml b/commons/src/main/res/values-eo/strings.xml index da067c147..8cfa9a4f6 100644 --- a/commons/src/main/res/values-eo/strings.xml +++ b/commons/src/main/res/values-eo/strings.xml @@ -183,6 +183,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirm selection Loading… diff --git a/commons/src/main/res/values-es/strings.xml b/commons/src/main/res/values-es/strings.xml index 9ed76051f..7cc6c9bb9 100644 --- a/commons/src/main/res/values-es/strings.xml +++ b/commons/src/main/res/values-es/strings.xml @@ -194,6 +194,7 @@ Por favor, elija la carpeta raíz de la tarjeta SD en la próxima pantalla para conceder el acceso de escritura Si no ve la tarjeta SD, prueba esto Por favor permita a la aplicacion acceder al almacenamiento seleccionado en la siguiente pantalla presionando \'Usar esta carpeta\' en la parte inferior. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmar la selección Loading… diff --git a/commons/src/main/res/values-et/strings.xml b/commons/src/main/res/values-et/strings.xml index fa70bc4b3..de9834576 100644 --- a/commons/src/main/res/values-et/strings.xml +++ b/commons/src/main/res/values-et/strings.xml @@ -190,6 +190,7 @@ Ligipääsu lubamiseks palun vali järgmises vaates SD-kaardi juurkaust Kui sa SD-kaarti ei näe, siis proovi sellist võimalust Valitud salvestusruumile ligipääsu saamiseks vali järgmise vaate allosas „Kasuta seda kausta“. + Please press \'Save\' at the bottom on the next screen to create the new folder Kinnita valik Laadin… diff --git a/commons/src/main/res/values-eu/strings.xml b/commons/src/main/res/values-eu/strings.xml index 82c857f1a..ad04ec169 100644 --- a/commons/src/main/res/values-eu/strings.xml +++ b/commons/src/main/res/values-eu/strings.xml @@ -193,6 +193,7 @@ Hautatu SD txartelaren karpeta nagusia hurrengo pantailan, idazteko baimena emateko SD txartela ez badakusazu, saiatu honekin Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Berretsi hautaketa Loading… diff --git a/commons/src/main/res/values-fa/strings.xml b/commons/src/main/res/values-fa/strings.xml index 63fedcba6..99613d077 100644 --- a/commons/src/main/res/values-fa/strings.xml +++ b/commons/src/main/res/values-fa/strings.xml @@ -195,6 +195,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirm selection Loading… diff --git a/commons/src/main/res/values-fi/strings.xml b/commons/src/main/res/values-fi/strings.xml index 325018124..2b34809b4 100644 --- a/commons/src/main/res/values-fi/strings.xml +++ b/commons/src/main/res/values-fi/strings.xml @@ -183,6 +183,7 @@ Valitse muistikortin juurihakemisto seuraavaksi antaaksesi kirjoitusoikeuden Jos et näe muistikorttia, kokeile tätä Anna sovellukselle käyttöoikeus tallennustilan käyttöön painamalla seuraavassa näkymässä \"Käytä tätä hakemistoa\"-painiketta. + Please press \'Save\' at the bottom on the next screen to create the new folder Vahvista valinta Loading… diff --git a/commons/src/main/res/values-fr/strings.xml b/commons/src/main/res/values-fr/strings.xml index dd16e24e1..c47c6bd38 100644 --- a/commons/src/main/res/values-fr/strings.xml +++ b/commons/src/main/res/values-fr/strings.xml @@ -183,6 +183,7 @@ Veuillez sélectionner le dossier racine de la carte SD sur le prochain écran, pour accorder le droit en écriture Si vous ne voyez pas la carte SD, essayez ceci Veuillez autoriser l\'application à accéder au stockage sélectionné sur l\'écran suivant en appuyant sur "Utiliser ce dossier" en bas. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmer la sélection Chargement… diff --git a/commons/src/main/res/values-gl/strings.xml b/commons/src/main/res/values-gl/strings.xml index 90ac4fe22..aae24789c 100644 --- a/commons/src/main/res/values-gl/strings.xml +++ b/commons/src/main/res/values-gl/strings.xml @@ -193,6 +193,7 @@ Por favor, escolle a carpeta raíz da tarxeta SD na próxima pantalla para conceder o acceso de escritura Se non ves a tarxeta SD, proba isto Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmar a selección Loading… diff --git a/commons/src/main/res/values-hi-rIN/strings.xml b/commons/src/main/res/values-hi-rIN/strings.xml index a3d1b1ecd..a4d945000 100644 --- a/commons/src/main/res/values-hi-rIN/strings.xml +++ b/commons/src/main/res/values-hi-rIN/strings.xml @@ -192,6 +192,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirm selection Loading… diff --git a/commons/src/main/res/values-hr/strings.xml b/commons/src/main/res/values-hr/strings.xml index 1cfb30b8a..1fddc867e 100644 --- a/commons/src/main/res/values-hr/strings.xml +++ b/commons/src/main/res/values-hr/strings.xml @@ -192,6 +192,7 @@ Molimo odaberite root mapu SD kartice na sljedećem prozoru, da bi ste omogućili zapisivanje Ukoliko ne vidite SD karticu, probajte ovo Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Potvrdi odabir Loading… diff --git a/commons/src/main/res/values-hu/strings.xml b/commons/src/main/res/values-hu/strings.xml index 8ea8ba7a0..333542ea6 100644 --- a/commons/src/main/res/values-hu/strings.xml +++ b/commons/src/main/res/values-hu/strings.xml @@ -190,6 +190,7 @@ Válassza ki az SD-kártya gyökérmappáját a következő képernyőn, hogy írási hozzáférést adjon Ha nem látja az SD-kártyát, próbálja meg ezt Engedélyezze a következő képernyőn, hogy az alkalmazás hozzáférjen a kiválasztott tárolóhoz, úgy hogy a „Mappa használata” gombra kattint lent. + Please press \'Save\' at the bottom on the next screen to create the new folder Kiválasztás megerősítése Loading… diff --git a/commons/src/main/res/values-id/strings.xml b/commons/src/main/res/values-id/strings.xml index 52bf15054..1c934496c 100644 --- a/commons/src/main/res/values-id/strings.xml +++ b/commons/src/main/res/values-id/strings.xml @@ -183,6 +183,7 @@ Silakan pilih folder root dari kartu SD pada layar berikutnya, untuk memberi akses penyimpanan Jika Anda tidak melihat kartu SD, cobalah ini Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Konfirmasi pilihan Loading… @@ -904,4 +905,4 @@ Jangan lupa, jika anda untuk mencopot aplikasi berbayar manapun dalam waktu 2 jam, uang anda akan otomatis dikembalikan. Jika anda ingin pengembalian dilakukan lain waktu, cukup hubungi hello@simplemobiletools.com dan anda akan mendapatkannya. Mempermudah anda untuk mencobanya terlebih dahulu. :) 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-it/strings.xml b/commons/src/main/res/values-it/strings.xml index bcd99bcb0..3137fbc04 100644 --- a/commons/src/main/res/values-it/strings.xml +++ b/commons/src/main/res/values-it/strings.xml @@ -183,6 +183,7 @@ Scegliere il percorso della scheda SD nella prossima schermata, per consentire i permessi di scrittura Se non si ha una scheda SD, provare questo Consenti all\'app di accedere allo storage selezionato nella schermata successiva premendo «Usa questa cartella» in basso. + Please press \'Save\' at the bottom on the next screen to create the new folder Conferma selezione Caricamento… @@ -928,4 +929,4 @@ Non dimenticarti che se disinstalli qualsiasi app a pagamento entro le due ore dall\'acquisto, verrai automaticamente rimborsato. Se vuoi essere rimborsato quando vuoi dopo le due ore, puoi contattarci a hello@simplemobiletools.com. In questo modo puoi facilmente provare l\'app :) Un gruppo di app Android semplici, open source, con widget personalizzabili, senza pubblicità ed autorizzazioni inutili. - \ No newline at end of file + diff --git a/commons/src/main/res/values-iw/strings.xml b/commons/src/main/res/values-iw/strings.xml index e06ef0e05..ddf6c620e 100644 --- a/commons/src/main/res/values-iw/strings.xml +++ b/commons/src/main/res/values-iw/strings.xml @@ -195,6 +195,7 @@ נא לבחור את תיקיית האב של כרטיס ה SD במסך הבא, כדי להעניק הרשאות גישה אם לא מופיע כרטיס ה SD, ניתן לנסות Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder אישור בחירה Loading… diff --git a/commons/src/main/res/values-ja/strings.xml b/commons/src/main/res/values-ja/strings.xml index b474b2c60..ffbc2b195 100644 --- a/commons/src/main/res/values-ja/strings.xml +++ b/commons/src/main/res/values-ja/strings.xml @@ -183,6 +183,7 @@ 次の画面でSDカードのルートフォルダを選択して、書き込みアクセス許可を付与してください SDカードの内容が表示されない場合は、こちらをお試しください Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder 選択を確認 Loading… @@ -901,4 +902,4 @@ お試ししやすいかと思います :) 広告や不要な権限がなく、カスタマイズ可能なウィジェットを備えたシンプルな複数のオープンソースAndroidアプリ。 - \ No newline at end of file + diff --git a/commons/src/main/res/values-ko-rKR/strings.xml b/commons/src/main/res/values-ko-rKR/strings.xml index 9252d9125..6e432d1b7 100644 --- a/commons/src/main/res/values-ko-rKR/strings.xml +++ b/commons/src/main/res/values-ko-rKR/strings.xml @@ -194,6 +194,7 @@ 쓰기 권한을 부여하려면 다음 화면에서 SD 카드의 루트 폴더를 선택하세요. SD 카드가 보이지 않으면 시도해보세요. Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder 선택 확인 Loading… diff --git a/commons/src/main/res/values-lt/strings.xml b/commons/src/main/res/values-lt/strings.xml index 068883526..c3245556f 100644 --- a/commons/src/main/res/values-lt/strings.xml +++ b/commons/src/main/res/values-lt/strings.xml @@ -190,6 +190,7 @@ Kitame ekrane pasirinkite šakninį SD kortelės aplanką, kad suteiktumėte rašymo prieigą Jei nematote SD kortelės, pabandykite štai ką Leiskite programėlei gauti prieigą prie pasirinktos saugyklos, kitame ekrane, apačioje paspausdami „Naudoti šį aplanką“. + Please press \'Save\' at the bottom on the next screen to create the new folder Patvirtinti žymėjimą Loading… diff --git a/commons/src/main/res/values-nb-rNO/strings.xml b/commons/src/main/res/values-nb-rNO/strings.xml index 4616545e5..912619c4b 100644 --- a/commons/src/main/res/values-nb-rNO/strings.xml +++ b/commons/src/main/res/values-nb-rNO/strings.xml @@ -183,6 +183,7 @@ Velg rotmappen til SD-kortet på den neste skjermen for å gi skrivetilgang Hvis du ikke ser SD-kortet, prøv dette Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Bekreft valg Loading… diff --git a/commons/src/main/res/values-nl/strings.xml b/commons/src/main/res/values-nl/strings.xml index d93b5cdbc..bc5f3ef0e 100644 --- a/commons/src/main/res/values-nl/strings.xml +++ b/commons/src/main/res/values-nl/strings.xml @@ -184,6 +184,7 @@ Op het volgende scherm schrijfrecht verlenen op de hoofdmap van de SD-kaart Probeer het volgende als de SD-kaart niet wordt getoond Verleen de app toegang tot de gekozen map door in het volgende scherm op \'Deze map gebruiken\' te klikken. + Please press \'Save\' at the bottom on the next screen to create the new folder Keuze bevestigen Laden… @@ -928,4 +929,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 511a2c92e..e6dfa6a76 100644 --- a/commons/src/main/res/values-pl/strings.xml +++ b/commons/src/main/res/values-pl/strings.xml @@ -183,6 +183,7 @@ Wybierz folder główny karty pamięci na następnym ekranie, aby przyznać dostęp Jeśli nie widzisz karty pamięci, spróbuj tego: Zezwól aplikacji na dostęp do wybranej pamięci na następnym ekranie, naciskając „Użyj tego folderu” na dole. + Please press \'Save\' at the bottom on the next screen to create the new folder Potwierdź wybór Ładowanie… @@ -956,4 +957,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 a6eb31cfa..e6eee1a71 100644 --- a/commons/src/main/res/values-pt-rBR/strings.xml +++ b/commons/src/main/res/values-pt-rBR/strings.xml @@ -183,6 +183,7 @@ Por favor escolha a pasta raiz do cartão SD no próximo passo para conceder acesso de escrita Se você não encontrar o cartão SD, tente isto Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmar seleção Loading… diff --git a/commons/src/main/res/values-pt/strings.xml b/commons/src/main/res/values-pt/strings.xml index b0463da07..d8380b964 100644 --- a/commons/src/main/res/values-pt/strings.xml +++ b/commons/src/main/res/values-pt/strings.xml @@ -183,6 +183,7 @@ Por favor escolha a pasta raíz do cartão SD no próximo ecrã para conceder acesso de escrita Se não conseguir ver o cartão SD, tente isto Por favor conceda o acesso ao armazenamento seleccionado no ecrã seguinte ao premir \'Usar esta pasta\' abaixo. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmar seleção Loading… diff --git a/commons/src/main/res/values-ro/strings.xml b/commons/src/main/res/values-ro/strings.xml index da9c2012b..c24c0f59a 100644 --- a/commons/src/main/res/values-ro/strings.xml +++ b/commons/src/main/res/values-ro/strings.xml @@ -195,6 +195,7 @@ Vă rugăm să alegeţi dosarul rădăcină a cardului SD în ecranul următor, pentru a acorda acces la scriere. Dacă nu vedeţi cardul sd încercaţi următoarele Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirmă selecţia Loading… diff --git a/commons/src/main/res/values-ru/strings.xml b/commons/src/main/res/values-ru/strings.xml index 073c28dfe..986c3bbce 100644 --- a/commons/src/main/res/values-ru/strings.xml +++ b/commons/src/main/res/values-ru/strings.xml @@ -189,6 +189,7 @@ Чтобы предоставить право на запись, выберите корневую папку SD-карты на следующем шаге Если SD-карта не видна, попробуйте это Разрешите приложению доступ к выбранному хранилищу на следующем экране, нажав \"Использовать эту папку\" в нижней части. + Please press \'Save\' at the bottom on the next screen to create the new folder Подтвердить выделение Загрузка… @@ -974,4 +975,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 475809a82..41874af43 100644 --- a/commons/src/main/res/values-sk/strings.xml +++ b/commons/src/main/res/values-sk/strings.xml @@ -195,6 +195,7 @@ Pre poskytnutie práva na zápis prosím zvoľte na nasledujúcej obrazovke základný priečǐnok SD karty Ak nevidíte SD kartu, skúste toto Prosím povoľte prístup ku zvolenému úložisku na nasledujúcej obrazovke stlačením spodného tlačidla \"Použiť tento priečinok\". + Please press \'Save\' at the bottom on the next screen to create the new folder Potvrdiť výber Načítavanie… diff --git a/commons/src/main/res/values-sl/strings.xml b/commons/src/main/res/values-sl/strings.xml index 44655af8d..b718fa462 100644 --- a/commons/src/main/res/values-sl/strings.xml +++ b/commons/src/main/res/values-sl/strings.xml @@ -195,6 +195,7 @@ Izberite korensko mapo kartice SD na naslednjem zaslonu, da odobrite dovoljenje za pisanje Če ne vidite kartice SD, poskusite to Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Potrdi izbor Loading… diff --git a/commons/src/main/res/values-sr/strings.xml b/commons/src/main/res/values-sr/strings.xml index f6ccf7905..46cba99be 100644 --- a/commons/src/main/res/values-sr/strings.xml +++ b/commons/src/main/res/values-sr/strings.xml @@ -195,6 +195,7 @@ Изаберите почетну фасциклу СД картице на следећем екрану, да дозволите записивање Ако не видите СД картицу, пробајте ово Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Потврдите одабир Loading… diff --git a/commons/src/main/res/values-sv/strings.xml b/commons/src/main/res/values-sv/strings.xml index aa8a7d808..867f7cb83 100644 --- a/commons/src/main/res/values-sv/strings.xml +++ b/commons/src/main/res/values-sv/strings.xml @@ -194,6 +194,7 @@ Välj rotmappen på ditt SD-kort på nästa skärm, för att bevilja skrivrättigheter Om du inte ser SD-kortet, prova detta Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Bekräfta val Loading… diff --git a/commons/src/main/res/values-ta/strings.xml b/commons/src/main/res/values-ta/strings.xml index b4f84ad15..b1e4da54d 100644 --- a/commons/src/main/res/values-ta/strings.xml +++ b/commons/src/main/res/values-ta/strings.xml @@ -184,6 +184,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder தேர்வை உறுதிசெய் Loading… diff --git a/commons/src/main/res/values-tr/strings.xml b/commons/src/main/res/values-tr/strings.xml index 9b7199179..5479c2ad3 100644 --- a/commons/src/main/res/values-tr/strings.xml +++ b/commons/src/main/res/values-tr/strings.xml @@ -183,6 +183,7 @@ Yazma erişimi vermek için lütfen bir sonraki ekranda SD kartın kök klasörünü seçin SD kartı görmüyorsanız, bunu deneyin Lütfen alttaki \'Bu klasörü kullan\' seçeneğine basarak uygulamanın seçilen depolama alanına erişmesine izin verin. + Please press \'Save\' at the bottom on the next screen to create the new folder Seçimi onayla Yükleniyor… @@ -929,4 +930,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 25c30b83e..489ef6382 100644 --- a/commons/src/main/res/values-uk/strings.xml +++ b/commons/src/main/res/values-uk/strings.xml @@ -183,6 +183,7 @@ Щоб надати доступ на запис, оберіть кореневу теку SD-карти на наступному екрані Якщо ви не бачите SD-карту, спробуйте це Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Підтвердіть вибір Loading… @@ -937,4 +938,4 @@ Пам\'ятайте: якщо ви видалите будь-який платний додаток протягом 2 годин, вам буде автоматично повернена сума покупки. Якщо ви захочете повернути гроші пізніше, сконтактуйте з нами за адресою hello@simplemobiletools.com, і ви їх отримаєте. Таким чином ви можете легко спробувати додаток :) 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-vi/strings.xml b/commons/src/main/res/values-vi/strings.xml index 4a9e2907c..4a1b18bb1 100644 --- a/commons/src/main/res/values-vi/strings.xml +++ b/commons/src/main/res/values-vi/strings.xml @@ -195,6 +195,7 @@ Vui lòng chọn thư mục trên cùng của thẻ SD trên màn hình tiếp theo, để cấp quyền truy cập ghi Nếu bạn không thấy thẻ SD, hãy thử điều này Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Xác nhận lựa chọn Loading… diff --git a/commons/src/main/res/values-zh-rCN/strings.xml b/commons/src/main/res/values-zh-rCN/strings.xml index cb34fc088..74c9545fc 100644 --- a/commons/src/main/res/values-zh-rCN/strings.xml +++ b/commons/src/main/res/values-zh-rCN/strings.xml @@ -183,6 +183,7 @@ 请选择 SD 卡根目录并授予写权限 如果您未找到 SD 卡目录,请尝试 请在下一个屏幕上按下底部的“使用此文件夹”,允许应用程序访问所选的存储空间。 + Please press \'Save\' at the bottom on the next screen to create the new folder 确认选择 加载中… @@ -880,4 +881,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 8b40bd3c6..61ccb8b83 100644 --- a/commons/src/main/res/values-zh-rTW/strings.xml +++ b/commons/src/main/res/values-zh-rTW/strings.xml @@ -195,6 +195,7 @@ 請在下個畫面選擇SD卡的根目錄,以授予存取權限 "如果看不到SD卡,試試這個" Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder 確認選擇 Loading… diff --git a/commons/src/main/res/values/strings.xml b/commons/src/main/res/values/strings.xml index d62fd17c6..9b55ccd33 100644 --- a/commons/src/main/res/values/strings.xml +++ b/commons/src/main/res/values/strings.xml @@ -195,6 +195,7 @@ Please choose the top folder of the SD card on the next screen, to grant write access If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. + Please press \'Save\' at the bottom on the next screen to create the new folder Confirm selection Loading… From 2eea4e41780e94c729e23be663b8c16291f08204 Mon Sep 17 00:00:00 2001 From: darthpaul Date: Wed, 16 Mar 2022 22:43:56 +0000 Subject: [PATCH 2/3] SDK 30 changes - PR change - text in WritePermissionDialog --- commons/src/main/res/values-ar/strings.xml | 2 +- commons/src/main/res/values-az/strings.xml | 2 +- commons/src/main/res/values-br/strings.xml | 2 +- commons/src/main/res/values-ca/strings.xml | 2 +- commons/src/main/res/values-cs/strings.xml | 2 +- commons/src/main/res/values-cy/strings.xml | 2 +- commons/src/main/res/values-da/strings.xml | 2 +- commons/src/main/res/values-de/strings.xml | 2 +- commons/src/main/res/values-el/strings.xml | 2 +- commons/src/main/res/values-eo/strings.xml | 2 +- commons/src/main/res/values-es/strings.xml | 2 +- commons/src/main/res/values-et/strings.xml | 2 +- commons/src/main/res/values-eu/strings.xml | 2 +- commons/src/main/res/values-fa/strings.xml | 2 +- commons/src/main/res/values-fi/strings.xml | 2 +- commons/src/main/res/values-fr/strings.xml | 2 +- commons/src/main/res/values-gl/strings.xml | 2 +- commons/src/main/res/values-hi-rIN/strings.xml | 2 +- commons/src/main/res/values-hr/strings.xml | 2 +- commons/src/main/res/values-hu/strings.xml | 2 +- commons/src/main/res/values-id/strings.xml | 2 +- commons/src/main/res/values-it/strings.xml | 2 +- commons/src/main/res/values-iw/strings.xml | 2 +- commons/src/main/res/values-ja/strings.xml | 2 +- commons/src/main/res/values-ko-rKR/strings.xml | 2 +- commons/src/main/res/values-lt/strings.xml | 2 +- commons/src/main/res/values-nb-rNO/strings.xml | 2 +- commons/src/main/res/values-nl/strings.xml | 2 +- commons/src/main/res/values-pl/strings.xml | 2 +- commons/src/main/res/values-pt-rBR/strings.xml | 2 +- commons/src/main/res/values-pt/strings.xml | 2 +- commons/src/main/res/values-ro/strings.xml | 2 +- commons/src/main/res/values-ru/strings.xml | 2 +- commons/src/main/res/values-sk/strings.xml | 2 +- commons/src/main/res/values-sl/strings.xml | 2 +- commons/src/main/res/values-sr/strings.xml | 2 +- commons/src/main/res/values-sv/strings.xml | 2 +- commons/src/main/res/values-ta/strings.xml | 2 +- commons/src/main/res/values-tr/strings.xml | 2 +- commons/src/main/res/values-uk/strings.xml | 2 +- commons/src/main/res/values-vi/strings.xml | 2 +- commons/src/main/res/values-zh-rCN/strings.xml | 2 +- commons/src/main/res/values-zh-rTW/strings.xml | 2 +- commons/src/main/res/values/strings.xml | 2 +- 44 files changed, 44 insertions(+), 44 deletions(-) diff --git a/commons/src/main/res/values-ar/strings.xml b/commons/src/main/res/values-ar/strings.xml index 4a18f7c5f..80da2519d 100644 --- a/commons/src/main/res/values-ar/strings.xml +++ b/commons/src/main/res/values-ar/strings.xml @@ -184,7 +184,7 @@ إذا كنت لا ترى بطاقة الذاكرة (SD) ، فجرب هذا Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. تأكيد التحديد Loading… diff --git a/commons/src/main/res/values-az/strings.xml b/commons/src/main/res/values-az/strings.xml index cb879e90f..133872f14 100644 --- a/commons/src/main/res/values-az/strings.xml +++ b/commons/src/main/res/values-az/strings.xml @@ -196,7 +196,7 @@ Əgər SD kart görünmürsə, bunu yoxlayın Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Seçimi təsdiqlə Loading… diff --git a/commons/src/main/res/values-br/strings.xml b/commons/src/main/res/values-br/strings.xml index 97e95d0a3..13861965a 100644 --- a/commons/src/main/res/values-br/strings.xml +++ b/commons/src/main/res/values-br/strings.xml @@ -196,7 +196,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirm selection Loading… diff --git a/commons/src/main/res/values-ca/strings.xml b/commons/src/main/res/values-ca/strings.xml index 5559a46af..f34bd0448 100644 --- a/commons/src/main/res/values-ca/strings.xml +++ b/commons/src/main/res/values-ca/strings.xml @@ -191,7 +191,7 @@ Si no veieu la targeta SD, proveu això Permeteu que l\'aplicació accedeixi a l\'emmagatzematge seleccionat prement «Utilitza aquesta carpeta» a la part inferior de la pantalla següent. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmeu la selecció S\'està carregant… diff --git a/commons/src/main/res/values-cs/strings.xml b/commons/src/main/res/values-cs/strings.xml index 7f44f59b3..69ee8cdcb 100644 --- a/commons/src/main/res/values-cs/strings.xml +++ b/commons/src/main/res/values-cs/strings.xml @@ -195,7 +195,7 @@ Pokud SD kartu nevidíte, vyzkoušejte následující Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Potvrdit výběr Loading… Wrong folder selected, please select path \'%s\' diff --git a/commons/src/main/res/values-cy/strings.xml b/commons/src/main/res/values-cy/strings.xml index 08b7b8c9e..3f23a4a7c 100644 --- a/commons/src/main/res/values-cy/strings.xml +++ b/commons/src/main/res/values-cy/strings.xml @@ -195,7 +195,7 @@ Os nad wyt yn gweld y cerdyn SD, rho gynnig ar hyn Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Cadarnhau dewis Loading… diff --git a/commons/src/main/res/values-da/strings.xml b/commons/src/main/res/values-da/strings.xml index cc9080dc8..e438a2466 100644 --- a/commons/src/main/res/values-da/strings.xml +++ b/commons/src/main/res/values-da/strings.xml @@ -184,7 +184,7 @@ Hvis ikke du kan se SD-kortet kan du prøve dette Tillad appen at få adgang til det valgte lager på det næste skærmbillede ved at trykke på \'Brug denne mappe\' nederst. Tillad adgang til \"%s\" på det næste skærmbillede ved at trykke på \"Brug denne mappe\" nederst på skærmen. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Bekræft valg Indlæser… Forkert mappe valgt. Vælg stien \'%s\' diff --git a/commons/src/main/res/values-de/strings.xml b/commons/src/main/res/values-de/strings.xml index 4dc51c2b5..f76cab0b5 100644 --- a/commons/src/main/res/values-de/strings.xml +++ b/commons/src/main/res/values-de/strings.xml @@ -184,7 +184,7 @@ Wenn die SD-Karte nicht angezeigt wird, versuche das Erlauben Sie der App auf dem nächsten Bildschirm den Zugriff auf den ausgewählten Speicher, indem Sie unten auf „Diesen Ordner verwenden“ klicken. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Auswahl bestätigen Wird geladen … diff --git a/commons/src/main/res/values-el/strings.xml b/commons/src/main/res/values-el/strings.xml index 3ecf28308..35181aad1 100644 --- a/commons/src/main/res/values-el/strings.xml +++ b/commons/src/main/res/values-el/strings.xml @@ -193,7 +193,7 @@ Εάν δεν βλέπετε την κάρτα SD, δοκιμάστε αυτό Επιτρέψτε στην εφαρμογή την πρόσβαση στον επιλεγμένο αποθηκευτικό χώρο στην επόμενη οθόνη πατώντας \'Χρήση αυτού του φακέλου\' στο κάτω μέρος. Επιτρέψτε την πρόσβαση σε \'%s\' στην επόμενη οθόνη πατώντας \'Χρήση αυτού του φακέλου\' στο κάτω μέρος. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Επιβεβαίωση επιλογής Φόρτωση… diff --git a/commons/src/main/res/values-eo/strings.xml b/commons/src/main/res/values-eo/strings.xml index c050de5ca..cfd7ea381 100644 --- a/commons/src/main/res/values-eo/strings.xml +++ b/commons/src/main/res/values-eo/strings.xml @@ -184,7 +184,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirm selection Loading… diff --git a/commons/src/main/res/values-es/strings.xml b/commons/src/main/res/values-es/strings.xml index 7406eebe7..07b990b8f 100644 --- a/commons/src/main/res/values-es/strings.xml +++ b/commons/src/main/res/values-es/strings.xml @@ -195,7 +195,7 @@ Si no ve la tarjeta SD, prueba esto Por favor permita a la aplicacion acceder al almacenamiento seleccionado en la siguiente pantalla presionando \'Usar esta carpeta\' en la parte inferior. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmar la selección Loading… diff --git a/commons/src/main/res/values-et/strings.xml b/commons/src/main/res/values-et/strings.xml index b1875cd56..04c712ee8 100644 --- a/commons/src/main/res/values-et/strings.xml +++ b/commons/src/main/res/values-et/strings.xml @@ -191,7 +191,7 @@ Kui sa SD-kaarti ei näe, siis proovi sellist võimalust Valitud salvestusruumile ligipääsu saamiseks vali järgmise vaate allosas „Kasuta seda kausta“. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Kinnita valik Laadin… diff --git a/commons/src/main/res/values-eu/strings.xml b/commons/src/main/res/values-eu/strings.xml index ee1ba4604..6f1757571 100644 --- a/commons/src/main/res/values-eu/strings.xml +++ b/commons/src/main/res/values-eu/strings.xml @@ -194,7 +194,7 @@ SD txartela ez badakusazu, saiatu honekin Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Berretsi hautaketa Loading… diff --git a/commons/src/main/res/values-fa/strings.xml b/commons/src/main/res/values-fa/strings.xml index 33232af20..1e210e1ef 100644 --- a/commons/src/main/res/values-fa/strings.xml +++ b/commons/src/main/res/values-fa/strings.xml @@ -196,7 +196,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirm selection Loading… diff --git a/commons/src/main/res/values-fi/strings.xml b/commons/src/main/res/values-fi/strings.xml index a5abb7ce1..ce08fb33c 100644 --- a/commons/src/main/res/values-fi/strings.xml +++ b/commons/src/main/res/values-fi/strings.xml @@ -184,7 +184,7 @@ Jos et näe muistikorttia, kokeile tätä Anna sovellukselle käyttöoikeus tallennustilan käyttöön painamalla seuraavassa näkymässä \"Käytä tätä hakemistoa\"-painiketta. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Vahvista valinta Loading… diff --git a/commons/src/main/res/values-fr/strings.xml b/commons/src/main/res/values-fr/strings.xml index 697f79d3b..8b7e5f219 100644 --- a/commons/src/main/res/values-fr/strings.xml +++ b/commons/src/main/res/values-fr/strings.xml @@ -184,7 +184,7 @@ Si vous ne voyez pas la carte SD, essayez ceci Veuillez autoriser l\'application à accéder au stockage sélectionné sur l\'écran suivant en appuyant sur "Utiliser ce dossier" en bas. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmer la sélection Chargement… diff --git a/commons/src/main/res/values-gl/strings.xml b/commons/src/main/res/values-gl/strings.xml index 0d2e1f7ca..2aaef3b09 100644 --- a/commons/src/main/res/values-gl/strings.xml +++ b/commons/src/main/res/values-gl/strings.xml @@ -194,7 +194,7 @@ Se non ves a tarxeta SD, proba isto Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmar a selección Loading… diff --git a/commons/src/main/res/values-hi-rIN/strings.xml b/commons/src/main/res/values-hi-rIN/strings.xml index a5a9268af..d1e9ab771 100644 --- a/commons/src/main/res/values-hi-rIN/strings.xml +++ b/commons/src/main/res/values-hi-rIN/strings.xml @@ -193,7 +193,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirm selection Loading… diff --git a/commons/src/main/res/values-hr/strings.xml b/commons/src/main/res/values-hr/strings.xml index db1b31fa6..d87a16360 100644 --- a/commons/src/main/res/values-hr/strings.xml +++ b/commons/src/main/res/values-hr/strings.xml @@ -193,7 +193,7 @@ Ukoliko ne vidite SD karticu, probajte ovo Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Potvrdi odabir Loading… diff --git a/commons/src/main/res/values-hu/strings.xml b/commons/src/main/res/values-hu/strings.xml index 966842025..f08a146ac 100644 --- a/commons/src/main/res/values-hu/strings.xml +++ b/commons/src/main/res/values-hu/strings.xml @@ -191,7 +191,7 @@ Ha nem látja az SD-kártyát, próbálja meg ezt Engedélyezze a következő képernyőn, hogy az alkalmazás hozzáférjen a kiválasztott tárolóhoz, úgy hogy a „Mappa használata” gombra kattint lent. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Kiválasztás megerősítése Loading… diff --git a/commons/src/main/res/values-id/strings.xml b/commons/src/main/res/values-id/strings.xml index f175a0bc0..16bfb4ec4 100644 --- a/commons/src/main/res/values-id/strings.xml +++ b/commons/src/main/res/values-id/strings.xml @@ -184,7 +184,7 @@ Jika Anda tidak melihat kartu SD, cobalah ini Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Konfirmasi pilihan Loading… diff --git a/commons/src/main/res/values-it/strings.xml b/commons/src/main/res/values-it/strings.xml index c3974406e..48647320e 100644 --- a/commons/src/main/res/values-it/strings.xml +++ b/commons/src/main/res/values-it/strings.xml @@ -184,7 +184,7 @@ Se non si ha una scheda SD, provare questo Consenti all\'app di accedere allo storage selezionato nella schermata successiva premendo «Usa questa cartella» in basso. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Conferma selezione Caricamento… diff --git a/commons/src/main/res/values-iw/strings.xml b/commons/src/main/res/values-iw/strings.xml index 973a13e34..3b839a040 100644 --- a/commons/src/main/res/values-iw/strings.xml +++ b/commons/src/main/res/values-iw/strings.xml @@ -196,7 +196,7 @@ אם לא מופיע כרטיס ה SD, ניתן לנסות Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. אישור בחירה Loading… diff --git a/commons/src/main/res/values-ja/strings.xml b/commons/src/main/res/values-ja/strings.xml index a59f3e24a..0d58a00a0 100644 --- a/commons/src/main/res/values-ja/strings.xml +++ b/commons/src/main/res/values-ja/strings.xml @@ -184,7 +184,7 @@ SDカードの内容が表示されない場合は、こちらをお試しください Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. 選択を確認 Loading… diff --git a/commons/src/main/res/values-ko-rKR/strings.xml b/commons/src/main/res/values-ko-rKR/strings.xml index 56cd573ff..c8d7b8fc1 100644 --- a/commons/src/main/res/values-ko-rKR/strings.xml +++ b/commons/src/main/res/values-ko-rKR/strings.xml @@ -195,7 +195,7 @@ SD 카드가 보이지 않으면 시도해보세요. Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. 선택 확인 Loading… diff --git a/commons/src/main/res/values-lt/strings.xml b/commons/src/main/res/values-lt/strings.xml index f1329971e..6d74835d6 100644 --- a/commons/src/main/res/values-lt/strings.xml +++ b/commons/src/main/res/values-lt/strings.xml @@ -191,7 +191,7 @@ Jei nematote SD kortelės, pabandykite štai ką Leiskite programėlei gauti prieigą prie pasirinktos saugyklos, kitame ekrane, apačioje paspausdami „Naudoti šį aplanką“. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Patvirtinti žymėjimą Loading… diff --git a/commons/src/main/res/values-nb-rNO/strings.xml b/commons/src/main/res/values-nb-rNO/strings.xml index 99abcfff5..5f33f48ad 100644 --- a/commons/src/main/res/values-nb-rNO/strings.xml +++ b/commons/src/main/res/values-nb-rNO/strings.xml @@ -184,7 +184,7 @@ Hvis du ikke ser SD-kortet, prøv dette Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Bekreft valg Loading… diff --git a/commons/src/main/res/values-nl/strings.xml b/commons/src/main/res/values-nl/strings.xml index e2968bf41..d4a25fc3e 100644 --- a/commons/src/main/res/values-nl/strings.xml +++ b/commons/src/main/res/values-nl/strings.xml @@ -185,7 +185,7 @@ Probeer het volgende als de SD-kaart niet wordt getoond Verleen de app toegang tot de gekozen map door in het volgende scherm op \'Deze map gebruiken\' te klikken. Geef toegang tot \'%s\' door onderaan in het volgende scherm op \'Deze map gebruiken\' te drukken. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Keuze bevestigen Laden… diff --git a/commons/src/main/res/values-pl/strings.xml b/commons/src/main/res/values-pl/strings.xml index 4e6eb3af6..1b8f754fe 100644 --- a/commons/src/main/res/values-pl/strings.xml +++ b/commons/src/main/res/values-pl/strings.xml @@ -184,7 +184,7 @@ Jeśli nie widzisz karty pamięci, spróbuj tego: Zezwól na dostęp do wybranej pamięci na następnym ekranie, naciskając „Użyj tego folderu” na dole. Zezwól na dostęp do „%s” na następnym ekranie, naciskając „Użyj tego folderu” na dole. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Potwierdź wybór Ładowanie… diff --git a/commons/src/main/res/values-pt-rBR/strings.xml b/commons/src/main/res/values-pt-rBR/strings.xml index 999b0c23b..fd1796f73 100644 --- a/commons/src/main/res/values-pt-rBR/strings.xml +++ b/commons/src/main/res/values-pt-rBR/strings.xml @@ -184,7 +184,7 @@ Se você não encontrar o cartão SD, tente isto Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmar seleção Loading… diff --git a/commons/src/main/res/values-pt/strings.xml b/commons/src/main/res/values-pt/strings.xml index b48db3398..6fcbed67b 100644 --- a/commons/src/main/res/values-pt/strings.xml +++ b/commons/src/main/res/values-pt/strings.xml @@ -184,7 +184,7 @@ Se não conseguir ver o cartão SD, tente isto Por favor conceda o acesso ao armazenamento seleccionado no ecrã seguinte ao premir \'Usar esta pasta\' abaixo. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmar seleção Loading… diff --git a/commons/src/main/res/values-ro/strings.xml b/commons/src/main/res/values-ro/strings.xml index 3178b1c63..fe54bcb18 100644 --- a/commons/src/main/res/values-ro/strings.xml +++ b/commons/src/main/res/values-ro/strings.xml @@ -196,7 +196,7 @@ Dacă nu vedeţi cardul sd încercaţi următoarele Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirmă selecţia Loading… diff --git a/commons/src/main/res/values-ru/strings.xml b/commons/src/main/res/values-ru/strings.xml index 5424f7ce5..55f2044b2 100644 --- a/commons/src/main/res/values-ru/strings.xml +++ b/commons/src/main/res/values-ru/strings.xml @@ -190,7 +190,7 @@ Если SD-карта не видна, попробуйте это Разрешите приложению доступ к выбранному хранилищу на следующем экране, нажав \"Использовать эту папку\" в нижней части. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Подтвердить выделение Загрузка… diff --git a/commons/src/main/res/values-sk/strings.xml b/commons/src/main/res/values-sk/strings.xml index deda3dcf3..74fdf92a5 100644 --- a/commons/src/main/res/values-sk/strings.xml +++ b/commons/src/main/res/values-sk/strings.xml @@ -196,7 +196,7 @@ Ak nevidíte SD kartu, skúste toto Prosím povoľte prístup ku zvolenému úložisku na nasledujúcej obrazovke stlačením spodného tlačidla \"Použiť tento priečinok\". Prosím povoľte prístup ku \'%s\' na nasledujúcej obrazovke stlačením spodného tlačidla \"Použiť tento priečinok\". - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Potvrdiť výber Načítavanie… diff --git a/commons/src/main/res/values-sl/strings.xml b/commons/src/main/res/values-sl/strings.xml index 2bac3847e..4ef54d31f 100644 --- a/commons/src/main/res/values-sl/strings.xml +++ b/commons/src/main/res/values-sl/strings.xml @@ -196,7 +196,7 @@ Če ne vidite kartice SD, poskusite to Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Potrdi izbor Loading… diff --git a/commons/src/main/res/values-sr/strings.xml b/commons/src/main/res/values-sr/strings.xml index 1b68bef04..0a9da8a92 100644 --- a/commons/src/main/res/values-sr/strings.xml +++ b/commons/src/main/res/values-sr/strings.xml @@ -196,7 +196,7 @@ Ако не видите СД картицу, пробајте ово Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Потврдите одабир Loading… diff --git a/commons/src/main/res/values-sv/strings.xml b/commons/src/main/res/values-sv/strings.xml index 2832e1b9b..fd607ec96 100644 --- a/commons/src/main/res/values-sv/strings.xml +++ b/commons/src/main/res/values-sv/strings.xml @@ -195,7 +195,7 @@ Om du inte ser SD-kortet, prova detta Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Bekräfta val Loading… diff --git a/commons/src/main/res/values-ta/strings.xml b/commons/src/main/res/values-ta/strings.xml index 6523f3c7a..e688d2385 100644 --- a/commons/src/main/res/values-ta/strings.xml +++ b/commons/src/main/res/values-ta/strings.xml @@ -185,7 +185,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. தேர்வை உறுதிசெய் Loading… diff --git a/commons/src/main/res/values-tr/strings.xml b/commons/src/main/res/values-tr/strings.xml index f036c4634..1ea2727d2 100644 --- a/commons/src/main/res/values-tr/strings.xml +++ b/commons/src/main/res/values-tr/strings.xml @@ -184,7 +184,7 @@ SD kartı görmüyorsanız, bunu deneyin Lütfen alttaki \'Bu klasörü kullan\' seçeneğine basarak uygulamanın seçilen depolama alanına erişmesine izin verin. Lütfen alttaki \'Bu klasörü kullan\' seçeneğine basarak bir sonraki ekranda \'%s\' erişimine izin verin. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Seçimi onayla Yükleniyor… diff --git a/commons/src/main/res/values-uk/strings.xml b/commons/src/main/res/values-uk/strings.xml index 80843967c..e8deb6dc1 100644 --- a/commons/src/main/res/values-uk/strings.xml +++ b/commons/src/main/res/values-uk/strings.xml @@ -184,7 +184,7 @@ Якщо ви не бачите SD-карту, спробуйте це Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Підтвердіть вибір Loading… diff --git a/commons/src/main/res/values-vi/strings.xml b/commons/src/main/res/values-vi/strings.xml index efea5f771..400ed37be 100644 --- a/commons/src/main/res/values-vi/strings.xml +++ b/commons/src/main/res/values-vi/strings.xml @@ -196,7 +196,7 @@ Nếu bạn không thấy thẻ SD, hãy thử điều này Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Xác nhận lựa chọn Loading… diff --git a/commons/src/main/res/values-zh-rCN/strings.xml b/commons/src/main/res/values-zh-rCN/strings.xml index dbaa6909c..521acca4b 100644 --- a/commons/src/main/res/values-zh-rCN/strings.xml +++ b/commons/src/main/res/values-zh-rCN/strings.xml @@ -184,7 +184,7 @@ 如果您未找到 SD 卡目录,请尝试 请在下一个屏幕上按下底部的“使用此文件夹”,允许应用程序访问所选的存储空间。 请在下个屏幕上允许访问 \'%s\',方法是按下底部的“使用此文件夹”。 - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. 确认选择 加载中… diff --git a/commons/src/main/res/values-zh-rTW/strings.xml b/commons/src/main/res/values-zh-rTW/strings.xml index 0bee39a06..c71f3e57c 100644 --- a/commons/src/main/res/values-zh-rTW/strings.xml +++ b/commons/src/main/res/values-zh-rTW/strings.xml @@ -196,7 +196,7 @@ "如果看不到SD卡,試試這個" Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. 確認選擇 Loading… diff --git a/commons/src/main/res/values/strings.xml b/commons/src/main/res/values/strings.xml index 58fcdcfcb..b2b43a052 100644 --- a/commons/src/main/res/values/strings.xml +++ b/commons/src/main/res/values/strings.xml @@ -196,7 +196,7 @@ If you don\'t see the SD card, try this Please allow the app accessing the selected storage on the next screen by pressing \'Use this folder\' at the bottom. Please allow accessing \'%s\' on the next screen by pressing \'Use this folder\' at the bottom. - Please press \'Save\' at the bottom on the next screen to create the new folder + Please press \'Save\' at the bottom of the next screen to create the new folder. Confirm selection Loading… From d3faeab95cdf05a6763af8144b4fb24597c6e5c6 Mon Sep 17 00:00:00 2001 From: Tibor Kaputa Date: Wed, 16 Mar 2022 23:49:02 +0100 Subject: [PATCH 3/3] updating slovak translation --- commons/src/main/res/values-sk/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons/src/main/res/values-sk/strings.xml b/commons/src/main/res/values-sk/strings.xml index 74fdf92a5..64cec796d 100644 --- a/commons/src/main/res/values-sk/strings.xml +++ b/commons/src/main/res/values-sk/strings.xml @@ -196,7 +196,7 @@ Ak nevidíte SD kartu, skúste toto Prosím povoľte prístup ku zvolenému úložisku na nasledujúcej obrazovke stlačením spodného tlačidla \"Použiť tento priečinok\". Prosím povoľte prístup ku \'%s\' na nasledujúcej obrazovke stlačením spodného tlačidla \"Použiť tento priečinok\". - Please press \'Save\' at the bottom of the next screen to create the new folder. + Pre vytvorenie nového priečinka prosím stlačte \'Uložiť\' na spodku nasledujúcej obrazovky. Potvrdiť výber Načítavanie…