mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2025-01-18 14:28:00 +01:00
change "Set as wallpaper" to "Set as"
This commit is contained in:
parent
11ad99a202
commit
6ed5a00315
23 changed files with 52 additions and 35 deletions
|
@ -129,7 +129,7 @@ open class PhotoVideoActivity : SimpleActivity(), ViewPagerFragment.FragmentList
|
||||||
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
override fun onCreateOptionsMenu(menu: Menu): Boolean {
|
||||||
menuInflater.inflate(R.menu.photo_video_menu, menu)
|
menuInflater.inflate(R.menu.photo_video_menu, menu)
|
||||||
|
|
||||||
menu.findItem(R.id.menu_set_as_wallpaper).isVisible = mMedium?.isImage() == true
|
menu.findItem(R.id.menu_set_as).isVisible = mMedium?.isImage() == true
|
||||||
menu.findItem(R.id.menu_edit).isVisible = mMedium?.isImage() == true
|
menu.findItem(R.id.menu_edit).isVisible = mMedium?.isImage() == true
|
||||||
|
|
||||||
return true
|
return true
|
||||||
|
@ -140,7 +140,7 @@ open class PhotoVideoActivity : SimpleActivity(), ViewPagerFragment.FragmentList
|
||||||
return true
|
return true
|
||||||
|
|
||||||
when (item.itemId) {
|
when (item.itemId) {
|
||||||
R.id.menu_set_as_wallpaper -> trySetAsWallpaper(File(mMedium!!.path))
|
R.id.menu_set_as -> trySetAs(File(mMedium!!.path))
|
||||||
R.id.menu_open_with -> openWith(File(mMedium!!.path))
|
R.id.menu_open_with -> openWith(File(mMedium!!.path))
|
||||||
R.id.menu_share -> shareUri(mMedium!!, mUri)
|
R.id.menu_share -> shareUri(mMedium!!, mUri)
|
||||||
R.id.menu_edit -> openEditor(File(mMedium!!.path))
|
R.id.menu_edit -> openEditor(File(mMedium!!.path))
|
||||||
|
|
|
@ -176,7 +176,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
return true
|
return true
|
||||||
|
|
||||||
menu.apply {
|
menu.apply {
|
||||||
findItem(R.id.menu_set_as_wallpaper).isVisible = getCurrentMedium()!!.isImage() == true
|
findItem(R.id.menu_set_as).isVisible = getCurrentMedium()!!.isImage() == true
|
||||||
findItem(R.id.menu_edit).isVisible = getCurrentMedium()!!.isImage() == true
|
findItem(R.id.menu_edit).isVisible = getCurrentMedium()!!.isImage() == true
|
||||||
findItem(R.id.menu_rotate).isVisible = getCurrentMedium()!!.isImage() == true
|
findItem(R.id.menu_rotate).isVisible = getCurrentMedium()!!.isImage() == true
|
||||||
findItem(R.id.menu_save_as).isVisible = mRotationDegrees != 0f
|
findItem(R.id.menu_save_as).isVisible = mRotationDegrees != 0f
|
||||||
|
@ -199,7 +199,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
return true
|
return true
|
||||||
|
|
||||||
when (item.itemId) {
|
when (item.itemId) {
|
||||||
R.id.menu_set_as_wallpaper -> trySetAsWallpaper(getCurrentFile())
|
R.id.menu_set_as -> trySetAs(getCurrentFile())
|
||||||
R.id.menu_copy_to -> copyMoveTo(true)
|
R.id.menu_copy_to -> copyMoveTo(true)
|
||||||
R.id.menu_move_to -> copyMoveTo(false)
|
R.id.menu_move_to -> copyMoveTo(false)
|
||||||
R.id.menu_open_with -> openWith(getCurrentFile())
|
R.id.menu_open_with -> openWith(getCurrentFile())
|
||||||
|
@ -378,7 +378,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
mPos = -1
|
mPos = -1
|
||||||
reloadViewPager()
|
reloadViewPager()
|
||||||
}
|
}
|
||||||
} else if (requestCode == REQUEST_SET_WALLPAPER) {
|
} else if (requestCode == REQUEST_SET_AS) {
|
||||||
if (resultCode == Activity.RESULT_OK) {
|
if (resultCode == Activity.RESULT_OK) {
|
||||||
toast(R.string.wallpaper_set_successfully)
|
toast(R.string.wallpaper_set_successfully)
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ import com.simplemobiletools.gallery.R
|
||||||
import com.simplemobiletools.gallery.activities.SimpleActivity
|
import com.simplemobiletools.gallery.activities.SimpleActivity
|
||||||
import com.simplemobiletools.gallery.helpers.NOMEDIA
|
import com.simplemobiletools.gallery.helpers.NOMEDIA
|
||||||
import com.simplemobiletools.gallery.helpers.REQUEST_EDIT_IMAGE
|
import com.simplemobiletools.gallery.helpers.REQUEST_EDIT_IMAGE
|
||||||
import com.simplemobiletools.gallery.helpers.REQUEST_SET_WALLPAPER
|
import com.simplemobiletools.gallery.helpers.REQUEST_SET_AS
|
||||||
import com.simplemobiletools.gallery.models.Directory
|
import com.simplemobiletools.gallery.models.Directory
|
||||||
import com.simplemobiletools.gallery.models.Medium
|
import com.simplemobiletools.gallery.models.Medium
|
||||||
import com.simplemobiletools.gallery.views.MySquareImageView
|
import com.simplemobiletools.gallery.views.MySquareImageView
|
||||||
|
@ -71,32 +71,32 @@ fun Activity.shareMedia(media: List<Medium>) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity.trySetAsWallpaper(file: File) {
|
fun Activity.trySetAs(file: File) {
|
||||||
try {
|
try {
|
||||||
var uri = Uri.fromFile(file)
|
var uri = Uri.fromFile(file)
|
||||||
if (!setAsWallpaper(uri, file)) {
|
if (!setAs(uri, file)) {
|
||||||
uri = getFileContentUri(file)
|
uri = getFileContentUri(file)
|
||||||
setAsWallpaper(uri, file, false)
|
setAs(uri, file, false)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
toast(R.string.unknown_error_occurred)
|
toast(R.string.unknown_error_occurred)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity.setAsWallpaper(uri: Uri, file: File, showToast: Boolean = true): Boolean {
|
fun Activity.setAs(uri: Uri, file: File, showToast: Boolean = true): Boolean {
|
||||||
var success = false
|
var success = false
|
||||||
Intent().apply {
|
Intent().apply {
|
||||||
action = Intent.ACTION_ATTACH_DATA
|
action = Intent.ACTION_ATTACH_DATA
|
||||||
setDataAndType(uri, file.getMimeType("image/*"))
|
setDataAndType(uri, file.getMimeType("image/*"))
|
||||||
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
||||||
val chooser = Intent.createChooser(this, getString(R.string.set_as_wallpaper_with))
|
val chooser = Intent.createChooser(this, getString(R.string.set_as))
|
||||||
|
|
||||||
if (resolveActivity(packageManager) != null) {
|
if (resolveActivity(packageManager) != null) {
|
||||||
startActivityForResult(chooser, REQUEST_SET_WALLPAPER)
|
startActivityForResult(chooser, REQUEST_SET_AS)
|
||||||
success = true
|
success = true
|
||||||
} else {
|
} else {
|
||||||
if (showToast) {
|
if (showToast) {
|
||||||
toast(R.string.no_wallpaper_setter_found)
|
toast(R.string.no_capable_app_found)
|
||||||
}
|
}
|
||||||
success = false
|
success = false
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ val DIRECTORIES = "directories2"
|
||||||
val IS_VIEW_INTENT = "is_view_intent"
|
val IS_VIEW_INTENT = "is_view_intent"
|
||||||
|
|
||||||
val REQUEST_EDIT_IMAGE = 1
|
val REQUEST_EDIT_IMAGE = 1
|
||||||
val REQUEST_SET_WALLPAPER = 2
|
val REQUEST_SET_AS = 2
|
||||||
|
|
||||||
// show media
|
// show media
|
||||||
val IMAGES_AND_VIDEOS = 0
|
val IMAGES_AND_VIDEOS = 0
|
||||||
|
|
|
@ -43,8 +43,8 @@
|
||||||
android:title="@string/move_to"
|
android:title="@string/move_to"
|
||||||
app:showAsAction="never"/>
|
app:showAsAction="never"/>
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_set_as_wallpaper"
|
android:id="@+id/menu_set_as"
|
||||||
android:title="@string/set_as_wallpaper"
|
android:title="@string/set_as"
|
||||||
app:showAsAction="never"/>
|
app:showAsAction="never"/>
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_open_with"
|
android:id="@+id/menu_open_with"
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
android:title="@string/edit"
|
android:title="@string/edit"
|
||||||
app:showAsAction="ifRoom"/>
|
app:showAsAction="ifRoom"/>
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_set_as_wallpaper"
|
android:id="@+id/menu_set_as"
|
||||||
android:title="@string/set_as_wallpaper"
|
android:title="@string/set_as"
|
||||||
app:showAsAction="never"/>
|
app:showAsAction="never"/>
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_open_with"
|
android:id="@+id/menu_open_with"
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Nastavit jako</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Tato funkce skryje složku, včetně podsložek, přidáním souboru \'.nomedia\'. Zobrazíte je zvolením možnosti \'Zobrazit skryté složky\' v nastavení. Pokračovat?</string>
|
<string name="hide_folder_description">Tato funkce skryje složku, včetně podsložek, přidáním souboru \'.nomedia\'. Zobrazíte je zvolením možnosti \'Zobrazit skryté složky\' v nastavení. Pokračovat?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Nastavit jako tapetu</string>
|
<string name="set_as_wallpaper">Nastavit jako tapetu</string>
|
||||||
<string name="set_as_wallpaper_failed">Nastavení tapety selhalo</string>
|
<string name="set_as_wallpaper_failed">Nastavení tapety selhalo</string>
|
||||||
<string name="set_as_wallpaper_with">Nastavit jako tapetu pomocí:</string>
|
<string name="set_as_wallpaper_with">Nastavit jako tapetu pomocí:</string>
|
||||||
<string name="no_wallpaper_setter_found">Nebyla nalezena žádná vhodná aplikace</string>
|
<string name="no_capable_app_found">Nebyla nalezena žádná vhodná aplikace</string>
|
||||||
<string name="setting_wallpaper">Nastavuje se tapeta…</string>
|
<string name="setting_wallpaper">Nastavuje se tapeta…</string>
|
||||||
<string name="wallpaper_set_successfully">Tapeta byla úspěšně změněna</string>
|
<string name="wallpaper_set_successfully">Tapeta byla úspěšně změněna</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Diese Funktion versteckt ausgewählte Ordner (auch für andere Apps), indem dort im Dateisystem eine \'.nomedia\'-Datei abgelegt wird. Dadurch werden auch deren Unterordner versteckt. Solche Ordner werden nur gezeigt, wenn die Einstellung \'Versteckte Ordner zeigen\' aktiv ist (auch andere Apps bieten üblicherweise eine solche Option). Fortfahren?</string>
|
<string name="hide_folder_description">Diese Funktion versteckt ausgewählte Ordner (auch für andere Apps), indem dort im Dateisystem eine \'.nomedia\'-Datei abgelegt wird. Dadurch werden auch deren Unterordner versteckt. Solche Ordner werden nur gezeigt, wenn die Einstellung \'Versteckte Ordner zeigen\' aktiv ist (auch andere Apps bieten üblicherweise eine solche Option). Fortfahren?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Als Hintergrund festlegen</string>
|
<string name="set_as_wallpaper">Als Hintergrund festlegen</string>
|
||||||
<string name="set_as_wallpaper_failed">Hintergrundbild festlegen fehlgeschlagen</string>
|
<string name="set_as_wallpaper_failed">Hintergrundbild festlegen fehlgeschlagen</string>
|
||||||
<string name="set_as_wallpaper_with">Als Hintergrund festlegen mit:</string>
|
<string name="set_as_wallpaper_with">Als Hintergrund festlegen mit:</string>
|
||||||
<string name="no_wallpaper_setter_found">Keine Hintergrundbild-App gefunden</string>
|
<string name="no_capable_app_found">Keine Hintergrundbild-App gefunden</string>
|
||||||
<string name="setting_wallpaper">Hintergrund festlegen…</string>
|
<string name="setting_wallpaper">Hintergrund festlegen…</string>
|
||||||
<string name="wallpaper_set_successfully">Hintergrundbild erfolgreich festgelegt</string>
|
<string name="wallpaper_set_successfully">Hintergrundbild erfolgreich festgelegt</string>
|
||||||
<string name="portrait_aspect_ratio">Hochformat</string>
|
<string name="portrait_aspect_ratio">Hochformat</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Esta función oculta la carpeta agregando un archivo \'.nomedia\' en ella, y ocultará también las subcarpetas. Puede mostrarlas cambiando la opción \'Mostrar carpetas ocultas\' en los Ajustes. ¿Continuar?</string>
|
<string name="hide_folder_description">Esta función oculta la carpeta agregando un archivo \'.nomedia\' en ella, y ocultará también las subcarpetas. Puede mostrarlas cambiando la opción \'Mostrar carpetas ocultas\' en los Ajustes. ¿Continuar?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Establecer como fondo de pantalla</string>
|
<string name="set_as_wallpaper">Establecer como fondo de pantalla</string>
|
||||||
<string name="set_as_wallpaper_failed">Error al establecer fondo de pantalla</string>
|
<string name="set_as_wallpaper_failed">Error al establecer fondo de pantalla</string>
|
||||||
<string name="set_as_wallpaper_with">Establecer como fondo de pantalla con:</string>
|
<string name="set_as_wallpaper_with">Establecer como fondo de pantalla con:</string>
|
||||||
<string name="no_wallpaper_setter_found">No se encontró aplicación para ello</string>
|
<string name="no_capable_app_found">No se encontró aplicación para ello</string>
|
||||||
<string name="setting_wallpaper">Estableciendo fondo de pantalla…</string>
|
<string name="setting_wallpaper">Estableciendo fondo de pantalla…</string>
|
||||||
<string name="wallpaper_set_successfully">Fondo de pantalla establecido correctamente</string>
|
<string name="wallpaper_set_successfully">Fondo de pantalla establecido correctamente</string>
|
||||||
<string name="portrait_aspect_ratio">Relación de aspecto tipo retrato</string>
|
<string name="portrait_aspect_ratio">Relación de aspecto tipo retrato</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Cette option masque le dossier en ajoutant un fichier \'.nomedia\' à l\'intérieur, cela masquera aussi tous les sous-dossiers. Vous pouvez les voir en modifiant l\'option \'Afficher les dossiers cachés\' dans les Paramètres. Continuer ?</string>
|
<string name="hide_folder_description">Cette option masque le dossier en ajoutant un fichier \'.nomedia\' à l\'intérieur, cela masquera aussi tous les sous-dossiers. Vous pouvez les voir en modifiant l\'option \'Afficher les dossiers cachés\' dans les Paramètres. Continuer ?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Définir comme fond d\'écran</string>
|
<string name="set_as_wallpaper">Définir comme fond d\'écran</string>
|
||||||
<string name="set_as_wallpaper_failed">Échec de la définition en tant que fond d\'écran.</string>
|
<string name="set_as_wallpaper_failed">Échec de la définition en tant que fond d\'écran.</string>
|
||||||
<string name="set_as_wallpaper_with">Définir comme fond d\'écran avec :</string>
|
<string name="set_as_wallpaper_with">Définir comme fond d\'écran avec :</string>
|
||||||
<string name="no_wallpaper_setter_found">Aucune application trouvée pour continuer cette action</string>
|
<string name="no_capable_app_found">Aucune application trouvée pour continuer cette action</string>
|
||||||
<string name="setting_wallpaper">Paramètre de fond d\'écran…</string>
|
<string name="setting_wallpaper">Paramètre de fond d\'écran…</string>
|
||||||
<string name="wallpaper_set_successfully">Fond d\'écran défini avec succès.</string>
|
<string name="wallpaper_set_successfully">Fond d\'écran défini avec succès.</string>
|
||||||
<string name="portrait_aspect_ratio">Ratio aspect Portrait</string>
|
<string name="portrait_aspect_ratio">Ratio aspect Portrait</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Set as Wallpaper</string>
|
<string name="set_as_wallpaper">Set as Wallpaper</string>
|
||||||
<string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string>
|
<string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string>
|
||||||
<string name="set_as_wallpaper_with">Set as wallpaper with:</string>
|
<string name="set_as_wallpaper_with">Set as wallpaper with:</string>
|
||||||
<string name="no_wallpaper_setter_found">No app capable of it has been found</string>
|
<string name="no_capable_app_found">No app capable of it has been found</string>
|
||||||
<string name="setting_wallpaper">Setting wallpaper…</string>
|
<string name="setting_wallpaper">Setting wallpaper…</string>
|
||||||
<string name="wallpaper_set_successfully">Wallpaper set successfully</string>
|
<string name="wallpaper_set_successfully">Wallpaper set successfully</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Questa funzione nasconde la cartella aggiungendo un file \'.nomedia\' all\'interno, nasconderà anche tutte le sottocartelle. Puoi vederle attivando l\'opzione \'Mostra cartelle nascoste\' nelle impostazioni. Continuare?</string>
|
<string name="hide_folder_description">Questa funzione nasconde la cartella aggiungendo un file \'.nomedia\' all\'interno, nasconderà anche tutte le sottocartelle. Puoi vederle attivando l\'opzione \'Mostra cartelle nascoste\' nelle impostazioni. Continuare?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Imposta come sfondo</string>
|
<string name="set_as_wallpaper">Imposta come sfondo</string>
|
||||||
<string name="set_as_wallpaper_failed">Impostazione sfondo non riuscita</string>
|
<string name="set_as_wallpaper_failed">Impostazione sfondo non riuscita</string>
|
||||||
<string name="set_as_wallpaper_with">Imposta come sfondo con:</string>
|
<string name="set_as_wallpaper_with">Imposta come sfondo con:</string>
|
||||||
<string name="no_wallpaper_setter_found">Non sono disponibili app compatibili</string>
|
<string name="no_capable_app_found">Non sono disponibili app compatibili</string>
|
||||||
<string name="setting_wallpaper">Impostazione sfondo…</string>
|
<string name="setting_wallpaper">Impostazione sfondo…</string>
|
||||||
<string name="wallpaper_set_successfully">Sfondo impostato correttamente</string>
|
<string name="wallpaper_set_successfully">Sfondo impostato correttamente</string>
|
||||||
<string name="portrait_aspect_ratio">Proporzioni ritratto</string>
|
<string name="portrait_aspect_ratio">Proporzioni ritratto</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">壁紙として設定</string>
|
<string name="set_as_wallpaper">壁紙として設定</string>
|
||||||
<string name="set_as_wallpaper_failed">壁紙としての設定に失敗しました</string>
|
<string name="set_as_wallpaper_failed">壁紙としての設定に失敗しました</string>
|
||||||
<string name="set_as_wallpaper_with">壁紙として設定:</string>
|
<string name="set_as_wallpaper_with">壁紙として設定:</string>
|
||||||
<string name="no_wallpaper_setter_found">対応できるアプリが見つかりません</string>
|
<string name="no_capable_app_found">対応できるアプリが見つかりません</string>
|
||||||
<string name="setting_wallpaper">壁紙の設定…</string>
|
<string name="setting_wallpaper">壁紙の設定…</string>
|
||||||
<string name="wallpaper_set_successfully">壁紙を正常に設定しました</string>
|
<string name="wallpaper_set_successfully">壁紙を正常に設定しました</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Ta funkcja ukrywa folder dodając \'. \' Nomedia plik do niego, można tak ukryć wszystkie podfoldery. Można je zobaczyć poprzez przełączanie \'Pokaż ukryte foldery \' opcję w ustawieniach. Kontyntynuj?</string>
|
<string name="hide_folder_description">Ta funkcja ukrywa folder dodając \'. \' Nomedia plik do niego, można tak ukryć wszystkie podfoldery. Można je zobaczyć poprzez przełączanie \'Pokaż ukryte foldery \' opcję w ustawieniach. Kontyntynuj?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Ustaw jako tapeta</string>
|
<string name="set_as_wallpaper">Ustaw jako tapeta</string>
|
||||||
<string name="set_as_wallpaper_failed">Ustawienie tapety nie powiodło się</string>
|
<string name="set_as_wallpaper_failed">Ustawienie tapety nie powiodło się</string>
|
||||||
<string name="set_as_wallpaper_with">Ustaw jako tapetę w:</string>
|
<string name="set_as_wallpaper_with">Ustaw jako tapetę w:</string>
|
||||||
<string name="no_wallpaper_setter_found">Brak odpowiednich ustawień</string>
|
<string name="no_capable_app_found">Brak odpowiednich ustawień</string>
|
||||||
<string name="setting_wallpaper">Ustawianie tapety…</string>
|
<string name="setting_wallpaper">Ustawianie tapety…</string>
|
||||||
<string name="wallpaper_set_successfully">Tapeta ustawiona</string>
|
<string name="wallpaper_set_successfully">Tapeta ustawiona</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Trocar imagem de capa</string>
|
<string name="change_cover_image">Trocar imagem de capa</string>
|
||||||
<string name="select_photo">Selecionar foto</string>
|
<string name="select_photo">Selecionar foto</string>
|
||||||
<string name="use_default">Usar padrão</string>
|
<string name="use_default">Usar padrão</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Esta opção oculta uma pasta com a adição de um arquivo \'.nomedia\' dentro dela, e irá ocultar todas as subpastas que estejam dentro da mesma. Você poderá rever essas pastas com a opção \'Mostrar pastas ocultas\'. Continuar?</string>
|
<string name="hide_folder_description">Esta opção oculta uma pasta com a adição de um arquivo \'.nomedia\' dentro dela, e irá ocultar todas as subpastas que estejam dentro da mesma. Você poderá rever essas pastas com a opção \'Mostrar pastas ocultas\'. Continuar?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Definir como papel de parede</string>
|
<string name="set_as_wallpaper">Definir como papel de parede</string>
|
||||||
<string name="set_as_wallpaper_failed">Falha ao definir como papel de parede</string>
|
<string name="set_as_wallpaper_failed">Falha ao definir como papel de parede</string>
|
||||||
<string name="set_as_wallpaper_with">Definir papel de parede com:</string>
|
<string name="set_as_wallpaper_with">Definir papel de parede com:</string>
|
||||||
<string name="no_wallpaper_setter_found">Aplicativo não encontrado</string>
|
<string name="no_capable_app_found">Aplicativo não encontrado</string>
|
||||||
<string name="setting_wallpaper">Definindo como papel de parede;</string>
|
<string name="setting_wallpaper">Definindo como papel de parede;</string>
|
||||||
<string name="wallpaper_set_successfully">Papel de parede com sucesso</string>
|
<string name="wallpaper_set_successfully">Papel de parede com sucesso</string>
|
||||||
<string name="portrait_aspect_ratio">Retrato</string>
|
<string name="portrait_aspect_ratio">Retrato</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Alterar imagem da capa</string>
|
<string name="change_cover_image">Alterar imagem da capa</string>
|
||||||
<string name="select_photo">Selecionar foto</string>
|
<string name="select_photo">Selecionar foto</string>
|
||||||
<string name="use_default">Predefinição</string>
|
<string name="use_default">Predefinição</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Esta opção oculta uma pasta com a adição de um ficheiro \'.nomedia\' na pasta, e irá ocultar todas as subpastas existentes. Pode ver as pastas com a opção \'Mostrar pastas ocultas\'. Continuar?</string>
|
<string name="hide_folder_description">Esta opção oculta uma pasta com a adição de um ficheiro \'.nomedia\' na pasta, e irá ocultar todas as subpastas existentes. Pode ver as pastas com a opção \'Mostrar pastas ocultas\'. Continuar?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Definir como fundo do ecrã</string>
|
<string name="set_as_wallpaper">Definir como fundo do ecrã</string>
|
||||||
<string name="set_as_wallpaper_failed">Falha ao definir como fundo de ecrã</string>
|
<string name="set_as_wallpaper_failed">Falha ao definir como fundo de ecrã</string>
|
||||||
<string name="set_as_wallpaper_with">Definir como fundo com:</string>
|
<string name="set_as_wallpaper_with">Definir como fundo com:</string>
|
||||||
<string name="no_wallpaper_setter_found">Aplicação não encontrada</string>
|
<string name="no_capable_app_found">Aplicação não encontrada</string>
|
||||||
<string name="setting_wallpaper">A definir como fundo de ecrã…</string>
|
<string name="setting_wallpaper">A definir como fundo de ecrã…</string>
|
||||||
<string name="wallpaper_set_successfully">Fundo definido com sucesso</string>
|
<string name="wallpaper_set_successfully">Fundo definido com sucesso</string>
|
||||||
<string name="portrait_aspect_ratio">Proporção na vertical</string>
|
<string name="portrait_aspect_ratio">Proporção na vertical</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Эта опция скрывает папку, добавляя в неё файл \'.nomedia\'; будут скрыты все подпапки. Можно показывать их, переключая \'Показать скрытые папки\' в настройках. Продолжить?</string>
|
<string name="hide_folder_description">Эта опция скрывает папку, добавляя в неё файл \'.nomedia\'; будут скрыты все подпапки. Можно показывать их, переключая \'Показать скрытые папки\' в настройках. Продолжить?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Установить в качестве обоев</string>
|
<string name="set_as_wallpaper">Установить в качестве обоев</string>
|
||||||
<string name="set_as_wallpaper_failed">Установить не удалось</string>
|
<string name="set_as_wallpaper_failed">Установить не удалось</string>
|
||||||
<string name="set_as_wallpaper_with">Установить в качестве обоев в:</string>
|
<string name="set_as_wallpaper_with">Установить в качестве обоев в:</string>
|
||||||
<string name="no_wallpaper_setter_found">Приложение не найдено</string>
|
<string name="no_capable_app_found">Приложение не найдено</string>
|
||||||
<string name="setting_wallpaper">Установка обоев…</string>
|
<string name="setting_wallpaper">Установка обоев…</string>
|
||||||
<string name="wallpaper_set_successfully">Обои успешно установлены</string>
|
<string name="wallpaper_set_successfully">Обои успешно установлены</string>
|
||||||
<string name="portrait_aspect_ratio">Формат изображения</string>
|
<string name="portrait_aspect_ratio">Формат изображения</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Zmeniť obal albumu</string>
|
<string name="change_cover_image">Zmeniť obal albumu</string>
|
||||||
<string name="select_photo">Zvoliť foto</string>
|
<string name="select_photo">Zvoliť foto</string>
|
||||||
<string name="use_default">Použiť predvolený</string>
|
<string name="use_default">Použiť predvolený</string>
|
||||||
|
<string name="set_as">Nastaviť ako</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Táto funkcia skryje priečinok pridaním súboru \'.nomedia\', skryté budú aj podpriečinky. Môžete ich vidieť zvolením možnosti \'Zobraziť skryté priečinky\' v nastaveniach. Pokračovať?</string>
|
<string name="hide_folder_description">Táto funkcia skryje priečinok pridaním súboru \'.nomedia\', skryté budú aj podpriečinky. Môžete ich vidieť zvolením možnosti \'Zobraziť skryté priečinky\' v nastaveniach. Pokračovať?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Nastaviť ako tapetu</string>
|
<string name="set_as_wallpaper">Nastaviť ako tapetu</string>
|
||||||
<string name="set_as_wallpaper_failed">Nastavovanie ako tapeta zlyhalo</string>
|
<string name="set_as_wallpaper_failed">Nastavovanie ako tapeta zlyhalo</string>
|
||||||
<string name="set_as_wallpaper_with">Nastaviť ako tapetu s:</string>
|
<string name="set_as_wallpaper_with">Nastaviť ako tapetu s:</string>
|
||||||
<string name="no_wallpaper_setter_found">Nenašla sa žiadna vhodná aplikácia No app capable of it has been found</string>
|
<string name="no_capable_app_found">Nenašla sa žiadna vhodná aplikácia</string>
|
||||||
<string name="setting_wallpaper">Nastavuje sa tapeta…</string>
|
<string name="setting_wallpaper">Nastavuje sa tapeta…</string>
|
||||||
<string name="wallpaper_set_successfully">Tapeta bola úspešne zmenená</string>
|
<string name="wallpaper_set_successfully">Tapeta bola úspešne zmenená</string>
|
||||||
<string name="portrait_aspect_ratio">Orientácia nastojato</string>
|
<string name="portrait_aspect_ratio">Orientácia nastojato</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Ange som bakgrundsbild</string>
|
<string name="set_as_wallpaper">Ange som bakgrundsbild</string>
|
||||||
<string name="set_as_wallpaper_failed">Det gick inte att byta bakgrundsbild</string>
|
<string name="set_as_wallpaper_failed">Det gick inte att byta bakgrundsbild</string>
|
||||||
<string name="set_as_wallpaper_with">Ange som bakgrundsbild med:</string>
|
<string name="set_as_wallpaper_with">Ange som bakgrundsbild med:</string>
|
||||||
<string name="no_wallpaper_setter_found">Hittade ingen app som klarar av detta</string>
|
<string name="no_capable_app_found">Hittade ingen app som klarar av detta</string>
|
||||||
<string name="setting_wallpaper">Inställningar för bakgrundsbild…</string>
|
<string name="setting_wallpaper">Inställningar för bakgrundsbild…</string>
|
||||||
<string name="wallpaper_set_successfully">Bakgrundsbilden är ändrad</string>
|
<string name="wallpaper_set_successfully">Bakgrundsbilden är ändrad</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">Bu işlev, klasöre\'.medya yok\'dosyası ekleyerek gizler; tüm alt klasörleri de gizler. Bunları Ayarlar\'da\'Gizli klasörleri göster\'seçeneğine basarak görebilirsiniz. Devam et?</string>
|
<string name="hide_folder_description">Bu işlev, klasöre\'.medya yok\'dosyası ekleyerek gizler; tüm alt klasörleri de gizler. Bunları Ayarlar\'da\'Gizli klasörleri göster\'seçeneğine basarak görebilirsiniz. Devam et?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Duvar kağıdı olarak ayarla</string>
|
<string name="set_as_wallpaper">Duvar kağıdı olarak ayarla</string>
|
||||||
<string name="set_as_wallpaper_failed">Duvar Kağıdı Olarak Ayarlanılamıyor</string>
|
<string name="set_as_wallpaper_failed">Duvar Kağıdı Olarak Ayarlanılamıyor</string>
|
||||||
<string name="set_as_wallpaper_with">İle duvar kağıdı olarak ayarla:</string>
|
<string name="set_as_wallpaper_with">İle duvar kağıdı olarak ayarla:</string>
|
||||||
<string name="no_wallpaper_setter_found">Mümkün olan herhangi bir uygulama bulunamadı</string>
|
<string name="no_capable_app_found">Mümkün olan herhangi bir uygulama bulunamadı</string>
|
||||||
<string name="setting_wallpaper">Duvar kağıdını ayarlama…</string>
|
<string name="setting_wallpaper">Duvar kağıdını ayarlama…</string>
|
||||||
<string name="wallpaper_set_successfully">Duvar kağıdı başarıyla ayarlandı</string>
|
<string name="wallpaper_set_successfully">Duvar kağıdı başarıyla ayarlandı</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">更改封面图片</string>
|
<string name="change_cover_image">更改封面图片</string>
|
||||||
<string name="select_photo">选择图片</string>
|
<string name="select_photo">选择图片</string>
|
||||||
<string name="use_default">使用默认</string>
|
<string name="use_default">使用默认</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">通过添加文件 \'.nomedia\' 到文件夹,可以防止文件夹及其子文件夹下的所有媒体被扫描。您可以通过设置中的 \'显示隐藏文件夹\' 选项改变设置,是否继续?</string>
|
<string name="hide_folder_description">通过添加文件 \'.nomedia\' 到文件夹,可以防止文件夹及其子文件夹下的所有媒体被扫描。您可以通过设置中的 \'显示隐藏文件夹\' 选项改变设置,是否继续?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">设为壁纸</string>
|
<string name="set_as_wallpaper">设为壁纸</string>
|
||||||
<string name="set_as_wallpaper_failed">壁纸设置失败</string>
|
<string name="set_as_wallpaper_failed">壁纸设置失败</string>
|
||||||
<string name="set_as_wallpaper_with">设为壁纸...</string>
|
<string name="set_as_wallpaper_with">设为壁纸...</string>
|
||||||
<string name="no_wallpaper_setter_found">未找到可用应用</string>
|
<string name="no_capable_app_found">未找到可用应用</string>
|
||||||
<string name="setting_wallpaper">正在设置壁纸…</string>
|
<string name="setting_wallpaper">正在设置壁纸…</string>
|
||||||
<string name="wallpaper_set_successfully">壁纸设置成功</string>
|
<string name="wallpaper_set_successfully">壁纸设置成功</string>
|
||||||
<string name="portrait_aspect_ratio">纵向长宽比</string>
|
<string name="portrait_aspect_ratio">纵向长宽比</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">設定為桌布</string>
|
<string name="set_as_wallpaper">設定為桌布</string>
|
||||||
<string name="set_as_wallpaper_failed">桌布設定失敗</string>
|
<string name="set_as_wallpaper_failed">桌布設定失敗</string>
|
||||||
<string name="set_as_wallpaper_with">用其他應用軟體設定桌布……</string>
|
<string name="set_as_wallpaper_with">用其他應用軟體設定桌布……</string>
|
||||||
<string name="no_wallpaper_setter_found">沒有可用的應用軟體</string>
|
<string name="no_capable_app_found">沒有可用的應用軟體</string>
|
||||||
<string name="setting_wallpaper">正在應用軟體桌布…</string>
|
<string name="setting_wallpaper">正在應用軟體桌布…</string>
|
||||||
<string name="wallpaper_set_successfully">成功應用軟體桌布</string>
|
<string name="wallpaper_set_successfully">成功應用軟體桌布</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<string name="change_cover_image">Change cover image</string>
|
<string name="change_cover_image">Change cover image</string>
|
||||||
<string name="select_photo">Select photo</string>
|
<string name="select_photo">Select photo</string>
|
||||||
<string name="use_default">Use default</string>
|
<string name="use_default">Use default</string>
|
||||||
|
<string name="set_as">Set as</string>
|
||||||
|
|
||||||
<!-- Hide / Exclude -->
|
<!-- Hide / Exclude -->
|
||||||
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
<string name="hide_folder_description">This function hides the folder by adding a \'.nomedia\' file into it, it will hide all subfolders too. You can see them by toggling the \'Show hidden folders\' option in Settings. Continue?</string>
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
<string name="set_as_wallpaper">Set as Wallpaper</string>
|
<string name="set_as_wallpaper">Set as Wallpaper</string>
|
||||||
<string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string>
|
<string name="set_as_wallpaper_failed">Setting as Wallpaper failed</string>
|
||||||
<string name="set_as_wallpaper_with">Set as wallpaper with:</string>
|
<string name="set_as_wallpaper_with">Set as wallpaper with:</string>
|
||||||
<string name="no_wallpaper_setter_found">No app capable of it has been found</string>
|
<string name="no_capable_app_found">No app capable of it has been found</string>
|
||||||
<string name="setting_wallpaper">Setting wallpaper…</string>
|
<string name="setting_wallpaper">Setting wallpaper…</string>
|
||||||
<string name="wallpaper_set_successfully">Wallpaper set successfully</string>
|
<string name="wallpaper_set_successfully">Wallpaper set successfully</string>
|
||||||
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
<string name="portrait_aspect_ratio">Portrait aspect ratio</string>
|
||||||
|
|
Loading…
Reference in a new issue