commit
03896a4711
44 changed files with 294 additions and 60 deletions
|
@ -7,8 +7,8 @@ buildscript {
|
|||
propMinSdkVersion = 21
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '5.6.14'
|
||||
kotlin_version = '1.3.11'
|
||||
propVersionName = '5.7.5'
|
||||
kotlin_version = '1.3.20'
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -17,6 +17,7 @@ import androidx.core.util.Pair
|
|||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.asynctasks.CopyMoveTask
|
||||
import com.simplemobiletools.commons.dialogs.ConfirmationDialog
|
||||
import com.simplemobiletools.commons.dialogs.ExportSettingsDialog
|
||||
import com.simplemobiletools.commons.dialogs.FileConflictDialog
|
||||
import com.simplemobiletools.commons.dialogs.WritePermissionDialog
|
||||
import com.simplemobiletools.commons.extensions.*
|
||||
|
@ -404,4 +405,31 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
|||
ConfirmationDialog(this, "", R.string.app_on_sd_card, R.string.ok, 0) {}
|
||||
}
|
||||
}
|
||||
|
||||
fun exportSettings(configItems: LinkedHashMap<String, Any>, defaultFilename: String) {
|
||||
handlePermission(PERMISSION_WRITE_STORAGE) {
|
||||
if (it) {
|
||||
ExportSettingsDialog(this, defaultFilename) {
|
||||
val file = File(it)
|
||||
val fileDirItem = FileDirItem(file.absolutePath, file.name)
|
||||
getFileOutputStream(fileDirItem, true) {
|
||||
if (it == null) {
|
||||
toast(R.string.unknown_error_occurred)
|
||||
return@getFileOutputStream
|
||||
}
|
||||
|
||||
Thread {
|
||||
it.bufferedWriter().use { out ->
|
||||
for ((key, value) in configItems) {
|
||||
out.writeLn("$key=$value")
|
||||
}
|
||||
}
|
||||
|
||||
toast(R.string.settings_exported_successfully)
|
||||
}.start()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,13 +2,16 @@ package com.simplemobiletools.commons.activities
|
|||
|
||||
import android.os.Bundle
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.dialogs.AppSideloadedDialog
|
||||
import com.simplemobiletools.commons.extensions.baseConfig
|
||||
import com.simplemobiletools.commons.extensions.getSharedTheme
|
||||
import com.simplemobiletools.commons.extensions.isThankYouInstalled
|
||||
import com.simplemobiletools.commons.helpers.SIDELOADING_FALSE
|
||||
import com.simplemobiletools.commons.helpers.SIDELOADING_TRUE
|
||||
import com.simplemobiletools.commons.helpers.SIDELOADING_UNCHECKED
|
||||
|
||||
abstract class BaseSplashActivity : AppCompatActivity() {
|
||||
|
||||
abstract fun initActivity()
|
||||
|
||||
abstract fun getAppPackageName(): String
|
||||
|
@ -16,11 +19,15 @@ abstract class BaseSplashActivity : AppCompatActivity() {
|
|||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
|
||||
val packageName = getAppPackageName()
|
||||
if (isAppSideloaded(packageName)) {
|
||||
AppSideloadedDialog(this, packageName) {
|
||||
finish()
|
||||
if (baseConfig.appSideloadingStatus == SIDELOADING_UNCHECKED) {
|
||||
val isSideloaded = isAppSideloaded()
|
||||
baseConfig.appSideloadingStatus = if (isSideloaded) SIDELOADING_TRUE else SIDELOADING_FALSE
|
||||
if (isSideloaded) {
|
||||
showSideloadingDialog()
|
||||
return
|
||||
}
|
||||
} else if (baseConfig.appSideloadingStatus == SIDELOADING_TRUE) {
|
||||
showSideloadingDialog()
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -45,15 +52,19 @@ abstract class BaseSplashActivity : AppCompatActivity() {
|
|||
}
|
||||
}
|
||||
|
||||
private fun isAppSideloaded(packageName: String): Boolean {
|
||||
return if (packageName == "-1" || packageName.endsWith(".debug")) {
|
||||
private fun isAppSideloaded(): Boolean {
|
||||
return try {
|
||||
getDrawable(R.drawable.ic_camera)
|
||||
false
|
||||
} else {
|
||||
try {
|
||||
packageManager.getInstallerPackageName(packageName) == null
|
||||
} catch (e: Exception) {
|
||||
false
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
private fun showSideloadingDialog() {
|
||||
val packageName = getAppPackageName()
|
||||
AppSideloadedDialog(this, packageName) {
|
||||
finish()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,55 @@
|
|||
package com.simplemobiletools.commons.dialogs
|
||||
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||
import com.simplemobiletools.commons.extensions.*
|
||||
import kotlinx.android.synthetic.main.dialog_export_settings.view.*
|
||||
|
||||
class ExportSettingsDialog(val activity: BaseSimpleActivity, val defaultFilename: String, callback: (path: String) -> Unit) {
|
||||
init {
|
||||
var folder = activity.internalStoragePath
|
||||
val view = activity.layoutInflater.inflate(R.layout.dialog_export_settings, null).apply {
|
||||
export_settings_filename.setText(defaultFilename)
|
||||
export_settings_path.text = activity.humanizePath(folder)
|
||||
export_settings_path.setOnClickListener {
|
||||
FilePickerDialog(activity, folder, false, showFAB = true) {
|
||||
export_settings_path.text = activity.humanizePath(it)
|
||||
folder = it
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
AlertDialog.Builder(activity)
|
||||
.setPositiveButton(R.string.ok, null)
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.create().apply {
|
||||
activity.setupDialogStuff(view, this, R.string.export_settings) {
|
||||
getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
||||
val filename = view.export_settings_filename.value
|
||||
if (filename.isEmpty()) {
|
||||
activity.toast(R.string.filename_cannot_be_empty)
|
||||
return@setOnClickListener
|
||||
}
|
||||
|
||||
val newPath = "${folder.trimEnd('/')}/$filename"
|
||||
if (!newPath.getFilenameFromPath().isAValidFilename()) {
|
||||
activity.toast(R.string.filename_invalid_characters)
|
||||
return@setOnClickListener
|
||||
}
|
||||
|
||||
if (activity.getDoesFilePathExist(newPath)) {
|
||||
val title = String.format(activity.getString(R.string.file_already_exists_overwrite), newPath.getFilenameFromPath())
|
||||
ConfirmationDialog(activity, title) {
|
||||
callback(newPath)
|
||||
dismiss()
|
||||
}
|
||||
} else {
|
||||
callback(newPath)
|
||||
dismiss()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
package com.simplemobiletools.commons.extensions
|
||||
|
||||
// extensions used mostly at importing app settings for now
|
||||
fun Any.toBoolean() = toString() == "true"
|
||||
|
||||
fun Any.toInt() = Integer.parseInt(toString())
|
||||
|
||||
fun Any.toStringSet() = toString().split(",".toRegex()).toSet()
|
|
@ -274,4 +274,8 @@ open class BaseConfig(val context: Context) {
|
|||
var wasAppIconCustomizationWarningShown: Boolean
|
||||
get() = prefs.getBoolean(WAS_APP_ICON_CUSTOMIZATION_WARNING_SHOWN, false)
|
||||
set(wasAppIconCustomizationWarningShown) = prefs.edit().putBoolean(WAS_APP_ICON_CUSTOMIZATION_WARNING_SHOWN, wasAppIconCustomizationWarningShown).apply()
|
||||
|
||||
var appSideloadingStatus: Int
|
||||
get() = prefs.getInt(APP_SIDELOADING_STATUS, SIDELOADING_UNCHECKED)
|
||||
set(appSideloadingStatus) = prefs.edit().putInt(APP_SIDELOADING_STATUS, appSideloadingStatus).apply()
|
||||
}
|
||||
|
|
|
@ -97,6 +97,7 @@ const val WAS_APP_ON_SD_SHOWN = "was_app_on_sd_shown"
|
|||
const val WAS_BEFORE_ASKING_SHOWN = "was_before_asking_shown"
|
||||
const val WAS_INITIAL_UPGRADE_TO_PRO_SHOWN = "was_initial_upgrade_to_pro_shown"
|
||||
const val WAS_APP_ICON_CUSTOMIZATION_WARNING_SHOWN = "was_app_icon_customization_warning_shown"
|
||||
const val APP_SIDELOADING_STATUS = "app_sideloading_status"
|
||||
|
||||
// licenses
|
||||
internal const val LICENSE_KOTLIN = 1
|
||||
|
@ -190,6 +191,10 @@ const val EVERY_DAY_BIT = MONDAY_BIT or TUESDAY_BIT or WEDNESDAY_BIT or THURSDAY
|
|||
const val WEEK_DAYS_BIT = MONDAY_BIT or TUESDAY_BIT or WEDNESDAY_BIT or THURSDAY_BIT or FRIDAY_BIT
|
||||
const val WEEKENDS_BIT = SATURDAY_BIT or SUNDAY_BIT
|
||||
|
||||
const val SIDELOADING_UNCHECKED = 0
|
||||
const val SIDELOADING_TRUE = 1
|
||||
const val SIDELOADING_FALSE = 2
|
||||
|
||||
val photoExtensions: Array<String> get() = arrayOf(".jpg", ".png", ".jpeg", ".bmp", ".webp")
|
||||
val videoExtensions: Array<String> get() = arrayOf(".mp4", ".mkv", ".webm", ".avi", ".3gp", ".mov", ".m4v", ".3gpp")
|
||||
val audioExtensions: Array<String> get() = arrayOf(".mp3", ".wav", ".wma", ".ogg", ".m4a", ".opus", ".flac", ".aac")
|
||||
|
|
51
commons/src/main/res/layout/dialog_export_settings.xml
Normal file
51
commons/src/main/res/layout/dialog_export_settings.xml
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/export_settings_wrapper"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/export_settings_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="@dimen/activity_margin"
|
||||
android:paddingTop="@dimen/activity_margin"
|
||||
android:paddingRight="@dimen/activity_margin">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/export_settings_path_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/path"
|
||||
android:textSize="@dimen/smaller_text_size"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/export_settings_path"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/small_margin"
|
||||
android:paddingRight="@dimen/small_margin"
|
||||
android:paddingBottom="@dimen/activity_margin"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/export_settings_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/filename"
|
||||
android:textSize="@dimen/smaller_text_size"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyEditText
|
||||
android:id="@+id/export_settings_filename"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/small_margin"
|
||||
android:layout_marginBottom="@dimen/activity_margin"
|
||||
android:singleLine="true"
|
||||
android:textCursorDrawable="@null"
|
||||
android:textSize="@dimen/normal_text_size"/>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
|
@ -422,6 +422,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -447,6 +448,7 @@
|
|||
<string name="exporting_failed">فشلت عملية التصدير</string>
|
||||
<string name="importing_some_entries_failed">فشل استيراد بعض المدخلات</string>
|
||||
<string name="exporting_some_entries_failed">فشل تصدير بعض المدخلات</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">لم يتم العثور على مدخلات للتصدير</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saxlama</string>
|
||||
<string name="startup">Başlanğıc</string>
|
||||
<string name="text">Mətn</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Bu faylı geri qaytar</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Çıxarış uğursuzdur</string>
|
||||
<string name="importing_some_entries_failed">Bəzi girişləri daxil etmək olmur</string>
|
||||
<string name="exporting_some_entries_failed">Bəzi girişləri çıxarmaq olmur</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Çıxarış üçün heçbir giriş tapılmadı</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<string name="transparent">Transparent</string>
|
||||
<string name="transparent_color">Color transparent</string>
|
||||
<string name="select_a_different_color">Selecciona un color diferent</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download">Descarregar</string>
|
||||
|
||||
<!-- Favorites -->
|
||||
<string name="favorites">Preferits</string>
|
||||
|
@ -179,8 +179,8 @@
|
|||
<string name="undo_changes_confirmation">¿Segur que vols desfer els canvis?</string>
|
||||
<string name="save_before_closing">Tens canvis sense aplicar. Desar abans de sortir?</string>
|
||||
<string name="apply_to_all_apps">Aplicar els colors a totes les aplicacions Simple Apps</string>
|
||||
<string name="app_icon_color_warning">WARNING: Some launchers do not handle app icon customization properly. In case the icon will disappear, try launching the app via Google Play or some widget, if available.
|
||||
Once launched, just set back the default orange icon #F57C00. You might have to reinstall the app in the worst case.</string>
|
||||
<string name="app_icon_color_warning">ADVERTIMENT: alguns llançadors no gestionen la personalització de la icona d\'aplicació correctament. En cas que la icona desaparegui, proveu de llançar l\'aplicació mitjançant Google Play o algun widget, si està disponible.
|
||||
Un cop llançat, simplement configureu la icona de color taronja per defecte #F57C00. És possible que hàgiu de tornar a instal·lar l\'aplicació en el pitjor dels casos.</string>
|
||||
<string name="share_colors_success">Colors actualitzats satisfactoriament. S’ha afegit un nou tema anomenat \'Shared\'. Fes -lo servidr per actualitzar els colors de les aplicacions en el futur.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -389,7 +389,7 @@
|
|||
<string name="password_protect_hidden_items">Contrasenya per protegir els mitjans amagats</string>
|
||||
<string name="password_protect_whole_app">Contrasenya per protegir tota l’aplicació</string>
|
||||
<string name="password_protect_file_deletion">Protegir amb contrasenya l\'eliminació i el moviment dels fitxers</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file operations</string>
|
||||
<string name="keep_last_modified">Manteniu el valor antic modificat per última vegada a les operacions de fitxer</string>
|
||||
<string name="show_info_bubble">Mostra una bombolla d\'informació en elements de desplaçament mitjançant arrossegament de la barra de desplaçament</string>
|
||||
<string name="prevent_phone_from_sleeping">No deixar dormir el telèfon amb la aplicació a primer pla</string>
|
||||
<string name="skip_delete_confirmation">Ignora sempre el diàleg de confirmació d\'eliminació</string>
|
||||
|
@ -404,10 +404,10 @@
|
|||
<string name="recycle_bin_cleaning_interval">Interval de neteja de paperera de reciclatge</string>
|
||||
<string name="empty_recycle_bin">Buida la paperera de reciclatge</string>
|
||||
<string name="force_portrait_mode">Força el mode de retrat</string>
|
||||
<string name="export_settings">Export settings</string>
|
||||
<string name="import_settings">Import settings</string>
|
||||
<string name="settings_exported_successfully">Settings exported successfully</string>
|
||||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="export_settings">Exportar ajustaments</string>
|
||||
<string name="import_settings">Importar ajustaments</string>
|
||||
<string name="settings_exported_successfully">Ajustaments exportats correctament</string>
|
||||
<string name="settings_imported_successfully">Ajustaments importats correctament</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilitat</string>
|
||||
|
@ -418,6 +418,7 @@
|
|||
<string name="saving_label">Desant</string>
|
||||
<string name="startup">Inici</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrant</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restaura aquest fitxer</string>
|
||||
|
@ -443,6 +444,7 @@
|
|||
<string name="exporting_failed">Exportació fallida</string>
|
||||
<string name="importing_some_entries_failed">L\'impotació d\'algunes entrades ha fallat</string>
|
||||
<string name="exporting_some_entries_failed">L\'exportació d\'algunes entrades ha fallat</string>
|
||||
<string name="no_entries_for_importing">No s\'han trobat entrades per importar</string>
|
||||
<string name="no_entries_for_exporting">No s\'han trobat entrades per exportar</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
@ -553,7 +555,7 @@
|
|||
|
||||
<string name="sideloaded_app">
|
||||
<![CDATA[
|
||||
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.
|
||||
Sembla que la versió de l\'aplicació està danyada. Baixeu la versió original <a href="%s">aquí</a>.
|
||||
]]>
|
||||
</string>
|
||||
|
||||
|
@ -572,9 +574,9 @@
|
|||
<string name="faq_4_text_commons">Sí, mentre arrossegueu un widget a la vostra pantalla d\'inici, apareixerà una pantalla de configuració de widgets. Veureu quadrats de colors a l\'extrem inferior esquerre, només cal prémer-los per seleccionar un color nou. També podeu utilitzar el control lliscant per ajustar l\'alfa.</string>
|
||||
<string name="faq_5_title_commons">Puc recuperar d\'alguna manera els fitxers eliminats?</string>
|
||||
<string name="faq_5_text_commons">Si estan realment eliminats no pots fer-ho. Tanmateix, pots habilitar l\'ús d\'una paperera de reciclatge en comptes de suprimir definitivament a la configuració de l\'aplicació. Això només mourà els fitxers en lloc d\'eliminar-los.</string>
|
||||
<string name="faq_6_title_commons">The app launcher icon disappeared. What can I do?</string>
|
||||
<string name="faq_6_text_commons">It is caused by your launcher not supporting icon customization properly. Try launching the app via Google Play or some widget, if available.
|
||||
Once launched, just set back the default orange icon #F57C00. You might have to reinstall the app in the worst case.</string>
|
||||
<string name="faq_6_title_commons">Ha desaparegut la icona del menú d\'aplicacions. Què puc fer?</string>
|
||||
<string name="faq_6_text_commons">El teu llançador no és compatible amb la personalització d\'icones correctament. Intenteu iniciar l\'aplicació mitjançant Google Play o algun widget, si està disponible.
|
||||
Un cop llançat, simplement configureu la icona de taronja per defecte # F57C00. És possible que hàgiu de tornar a instal·lar l\'aplicació en el pitjor dels casos.</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Aquesta aplicació fa servir les següents biblioteques de tercers que ens faciliten la feina. Gràcies.</string>
|
||||
|
|
|
@ -432,6 +432,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -457,6 +458,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Eksport mislykkedes</string>
|
||||
<string name="importing_some_entries_failed">Import mislykkedes delvist</string>
|
||||
<string name="exporting_some_entries_failed">Eksport mislykkedes delvist</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Der er ikke fundet indhold til eksport</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Speichern</string>
|
||||
<string name="startup">Beim Starten</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Diese Datei wiederherstellen</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exportieren fehlgeschlagen</string>
|
||||
<string name="importing_some_entries_failed">Importieren einiger Einträge fehlgeschlagen</string>
|
||||
<string name="exporting_some_entries_failed">Exportieren einiger Einträge fehlgeschlagen</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Keine Einträge zum Exportieren gefunden</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<string name="transparent">Διαφάνεια</string>
|
||||
<string name="transparent_color">Χρώμα διαφάνειας</string>
|
||||
<string name="select_a_different_color">Επιλέξτε διαφορετικό χρώμα</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download">Λήψη</string>
|
||||
|
||||
<!-- Favorites -->
|
||||
<string name="favorites">Αγαπημένα</string>
|
||||
|
@ -401,10 +401,10 @@
|
|||
<string name="recycle_bin_cleaning_interval">Περίοδος καθαρισμού Κάδου ανακύκλωσης</string>
|
||||
<string name="empty_recycle_bin">Άδειασμα του Κάδου Ανακύκλωσης</string>
|
||||
<string name="force_portrait_mode">Εξαναγκασμός σε Πορτρέτο</string>
|
||||
<string name="export_settings">Export settings</string>
|
||||
<string name="import_settings">Import settings</string>
|
||||
<string name="settings_exported_successfully">Settings exported successfully</string>
|
||||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="export_settings">Εξαγωγή ρυθμίσεων</string>
|
||||
<string name="import_settings">Εισαγωγή ρυθμίσεων</string>
|
||||
<string name="settings_exported_successfully">Επιτυχής εξαγωγή ρυθμίσεων</string>
|
||||
<string name="settings_imported_successfully">Επιτυχής εισαγωγή ρυθμίσεων</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Προβολή</string>
|
||||
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Εξοικονόμηση</string>
|
||||
<string name="startup">Εκκίνηση</string>
|
||||
<string name="text">Κείμενο</string>
|
||||
<string name="migrating">Μετεγκατάσταση</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Επαναφορά αυτού του αρχείου</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Η Εξαγωγή απέτυχε</string>
|
||||
<string name="importing_some_entries_failed">Η Εισαγωγή μερικών καταχωρήσεων απέτυχε</string>
|
||||
<string name="exporting_some_entries_failed">Η Εξαγωγή μερικών καταχωρήσεων απέτυχε</string>
|
||||
<string name="no_entries_for_importing">Δεν βρέθηκαν καταχωρήσεις για Εισαγωγή</string>
|
||||
<string name="no_entries_for_exporting">Δεν βρέθηκαν καταχωρήσεις για Εξαγωγή</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
@ -550,7 +552,7 @@
|
|||
|
||||
<string name="sideloaded_app">
|
||||
<![CDATA[
|
||||
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.
|
||||
Φαίνεται ότι η έκδοση της εφαρμογής σας είναι κατεστραμμένη. Κατεβάστε την αρχική έκδοση από <a href="%s">εδώ</a>.
|
||||
]]>
|
||||
</string>
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<string name="transparent">Transparente</string>
|
||||
<string name="transparent_color">Color transparente</string>
|
||||
<string name="select_a_different_color">Seleccionar un color diferente</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download">Descarga</string>
|
||||
|
||||
<!-- Favorites -->
|
||||
<string name="favorites">Favoritos</string>
|
||||
|
@ -179,12 +179,12 @@
|
|||
<string name="undo_changes_confirmation">¿Seguro que quiere deshacer los cambios?</string>
|
||||
<string name="save_before_closing">Tiene cambios sin aplicar. ¿Guardar antes de salir?</string>
|
||||
<string name="apply_to_all_apps">Aplicar colores a todas las aplicaciones Simple Apps</string>
|
||||
<string name="app_icon_color_warning">WARNING: Some launchers do not handle app icon customization properly. In case the icon will disappear, try launching the app via Google Play or some widget, if available.
|
||||
Once launched, just set back the default orange icon #F57C00. You might have to reinstall the app in the worst case.</string>
|
||||
<string name="app_icon_color_warning">ADVERTENCIA: Algunos lanzadores no manejan correctamente la personalización del icono de la aplicación. En caso de que el icono desaparezca, intente iniciar la aplicación a través de Google Play o algún widget, si está disponible.
|
||||
Una vez iniciado, simplemente vuelva a establecer el ícono naranja predeterminado #F57C00. Es posible que tengas que volver a instalar la aplicación en el peor de los casos.</string>
|
||||
<string name="share_colors_success">Colores actualizados correctamente. Se ha añadido un nuevo tema llamado \'Shared\', Por favor utilicelo para actualizar los colores de todas las aplicaciones en el futuro.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Por favor comrpa <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> para desbloquear esta función y ayudar al desarrollo. Gracias!
|
||||
Por favor compra <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> para desbloquear esta función y ayudar al desarrollo. Gracias!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
|
@ -386,7 +386,7 @@
|
|||
<string name="password_protect_hidden_items">Contraseña para proteger los medios ocultos</string>
|
||||
<string name="password_protect_whole_app">Contraseña para proteger toda la aplicación</string>
|
||||
<string name="password_protect_file_deletion">Protegeger con contraseña eliminar y mover archivos</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file operations</string>
|
||||
<string name="keep_last_modified">Mantener el último valor modificado por última vez en las operaciones de archivo</string>
|
||||
<string name="show_info_bubble">Mostrar una burbuja de información al desplazar elementos arrastrando la barra de desplazamiento</string>
|
||||
<string name="prevent_phone_from_sleeping">No dejar dormir el teléfono con la aplicación en primer plano</string>
|
||||
<string name="skip_delete_confirmation">Omitir siempre el diálogo de confirmación de eliminación</string>
|
||||
|
@ -401,10 +401,10 @@
|
|||
<string name="recycle_bin_cleaning_interval">Intervalo de vaciado de la papelera de reciclaje</string>
|
||||
<string name="empty_recycle_bin">Vaciar papelera de reciclaje</string>
|
||||
<string name="force_portrait_mode">Forzar el modo retrato</string>
|
||||
<string name="export_settings">Export settings</string>
|
||||
<string name="import_settings">Import settings</string>
|
||||
<string name="settings_exported_successfully">Settings exported successfully</string>
|
||||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="export_settings">Exportar ajustes</string>
|
||||
<string name="import_settings">Importar ajustes</string>
|
||||
<string name="settings_exported_successfully">Ajustes exportados correctamente</string>
|
||||
<string name="settings_imported_successfully">Ajustes importados correctamente</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilidad</string>
|
||||
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Guardando</string>
|
||||
<string name="startup">Puesta en marcha</string>
|
||||
<string name="text">Texto</string>
|
||||
<string name="migrating">Migrando</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restaurar el fichero</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exportación fallida</string>
|
||||
<string name="importing_some_entries_failed">La importación de algunas entradas ha fallado</string>
|
||||
<string name="exporting_some_entries_failed">La exportación de algunas entradas ha fallado</string>
|
||||
<string name="no_entries_for_importing">No se han encontrado entradas para importar</string>
|
||||
<string name="no_entries_for_exporting">No se han encontrado entradas para exportar</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
@ -550,7 +552,7 @@
|
|||
|
||||
<string name="sideloaded_app">
|
||||
<![CDATA[
|
||||
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.
|
||||
Parece que la versión de tu aplicación está dañada. Por favor descargue la versión original <a href="%s">aquí</a>.
|
||||
]]>
|
||||
</string>
|
||||
|
||||
|
@ -569,9 +571,9 @@
|
|||
<string name="faq_4_text_commons">Sí, al arrastrar un widget en la pantalla de inicio aparece una pantalla de configuración de widgets. Verá cuadrados de colores en la esquina inferior izquierda, solo presione para elegir un nuevo color. Puede usar el control deslizante para ajustar el alfa también.</string>
|
||||
<string name="faq_5_title_commons">¿Puedo de alguna manera restaurar archivos borrados?</string>
|
||||
<string name="faq_5_text_commons">Si realmente fueron eliminados, no puedes. Sin embargo, puedes habilitar el uso de una papelera de reciclaje en lugar de eliminar en la configuración de la aplicación. Eso solo moverá los archivos en lugar de eliminarlos.</string>
|
||||
<string name="faq_6_title_commons">The app launcher icon disappeared. What can I do?</string>
|
||||
<string name="faq_6_text_commons">It is caused by your launcher not supporting icon customization properly. Try launching the app via Google Play or some widget, if available.
|
||||
Once launched, just set back the default orange icon #F57C00. You might have to reinstall the app in the worst case.</string>
|
||||
<string name="faq_6_title_commons">El icono del iniciador de aplicaciones desapareció. ¿Que puedo hacer?</string>
|
||||
<string name="faq_6_text_commons">Esto se debe a que el iniciador no admite correctamente la personalización de iconos. Intenta lanzar la aplicación a través de Google Play o algún widget, si está disponible.
|
||||
Una vez iniciado, simplemente vuelva a establecer el ícono naranja predeterminado #F57C00. Es posible que tenga que volver a instalar la aplicación en el peor de los casos.</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicación usa las siguientes bibliotecas de terceros que hacen mi vida más fácil. Gracias.</string>
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Vienti epäonnistui</string>
|
||||
<string name="importing_some_entries_failed">Joidenkin kohteiden tuonti epäonnistui</string>
|
||||
<string name="exporting_some_entries_failed">Joidenkin kohteiden vienti epäonnistui</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Vientikohteita ei löydetty</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -417,6 +417,7 @@
|
|||
<string name="saving_label">Enregistrement en cours…</string>
|
||||
<string name="startup">Démarrage en cours…</string>
|
||||
<string name="text">Texte</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Récupérer ce fichier</string>
|
||||
|
@ -442,6 +443,7 @@
|
|||
<string name="exporting_failed">Échec de l\'exportation</string>
|
||||
<string name="importing_some_entries_failed">Échec de l\'importation de certains éléments</string>
|
||||
<string name="exporting_some_entries_failed">Échec de l\'exportation de certains éléments</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Aucun élément pouvant être exporté n\'a été trouvé</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exportación fallida</string>
|
||||
<string name="importing_some_entries_failed">La importación de algunas entradas ha fallado</string>
|
||||
<string name="exporting_some_entries_failed">La exportación de algunas entradas ha fallado</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No se han encontrado entradas para exportar</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -435,6 +435,7 @@
|
|||
<string name="saving_label">Spremanje</string>
|
||||
<string name="startup">Pokretanje</string>
|
||||
<string name="text">Tekst</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Vrati ovu datoteku</string>
|
||||
|
@ -460,6 +461,7 @@
|
|||
<string name="exporting_failed">Izvoz nije uspio</string>
|
||||
<string name="importing_some_entries_failed">Uvoz nekih unosa nije uspio</string>
|
||||
<string name="exporting_some_entries_failed">Izvoz nekih unosa nije uspio</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Nije pronađen nijedan unos za izvoz</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -414,6 +414,7 @@
|
|||
<string name="saving_label">Mentés</string>
|
||||
<string name="startup">Indítás</string>
|
||||
<string name="text">Szöveg</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Fájl visszaállítása</string>
|
||||
|
@ -439,6 +440,7 @@
|
|||
<string name="exporting_failed">Sikertelen exportálás</string>
|
||||
<string name="importing_some_entries_failed">Egyes elemek importálása nem sikerült</string>
|
||||
<string name="exporting_some_entries_failed">Egyes elemek exportálása nem sikerült</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Az exportáláshoz nem találhatóak bejegyzések</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Menyimpan</string>
|
||||
<string name="startup">Saat memulai</string>
|
||||
<string name="text">Teks</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Pulihkan file ini</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Gagal mengekspor</string>
|
||||
<string name="importing_some_entries_failed">Gagal mengimpor beberapa entri</string>
|
||||
<string name="exporting_some_entries_failed">Gagal mengekspor beberapa entri</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Tidak ditemukan entri untuk diekspor</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -401,10 +401,10 @@
|
|||
<string name="recycle_bin_cleaning_interval">Intervallo svuotamento cestino</string>
|
||||
<string name="empty_recycle_bin">Svuota il cestino</string>
|
||||
<string name="force_portrait_mode">Forza la modalità ritratto</string>
|
||||
<string name="export_settings">Export settings</string>
|
||||
<string name="import_settings">Import settings</string>
|
||||
<string name="settings_exported_successfully">Settings exported successfully</string>
|
||||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="export_settings">Esporta impostazioni</string>
|
||||
<string name="import_settings">Imposta impostazioni</string>
|
||||
<string name="settings_exported_successfully">Impostazioni esportate correttamente</string>
|
||||
<string name="settings_imported_successfully">Impostazioni importate correttamente</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilità</string>
|
||||
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Salvataggio</string>
|
||||
<string name="startup">Avvio</string>
|
||||
<string name="text">Testo</string>
|
||||
<string name="migrating">Migrazione</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Ripristina questo file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Esportazione fallita</string>
|
||||
<string name="importing_some_entries_failed">Importazione di alcuni elementi fallita</string>
|
||||
<string name="exporting_some_entries_failed">Esportazione di alcuni elementi fallita</string>
|
||||
<string name="no_entries_for_importing">Nessun elemento trovato da importare</string>
|
||||
<string name="no_entries_for_exporting">Nessun elemento trovato da esportare</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
@ -550,7 +552,7 @@
|
|||
|
||||
<string name="sideloaded_app">
|
||||
<![CDATA[
|
||||
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.
|
||||
Sembra che la propria versione sia corrotta. Scaricare la versione originale <a href="%s">qui</a>.
|
||||
]]>
|
||||
</string>
|
||||
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">保存中</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">このファイルを復元</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">エクスポートに失敗しました</string>
|
||||
<string name="importing_some_entries_failed">一部のエントリのインポートに失敗しました</string>
|
||||
<string name="exporting_some_entries_failed">一部のエントリのエクスポートに失敗しました</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">エクスポートするエントリが見つかりませんでした</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">내보내기 실패</string>
|
||||
<string name="importing_some_entries_failed">일부항목 가져오기에 실패함</string>
|
||||
<string name="exporting_some_entries_failed">일부항목 내보내기에 실패함</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">내보낼 수 있는 항목을 찾을 수 없음</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -432,6 +432,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -457,6 +458,7 @@
|
|||
<string name="exporting_failed">Eksportavimas nepavyko</string>
|
||||
<string name="importing_some_entries_failed">Kai kurių įrašų importuoti nepavyko</string>
|
||||
<string name="exporting_some_entries_failed">Kai kurių įrašų eksportuoti nepavyko</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Nerasta įrašų eksportavimui</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Gjenopprett denne filen</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Eksportering feilet</string>
|
||||
<string name="importing_some_entries_failed">Importering av noen oppføringer feilet</string>
|
||||
<string name="exporting_some_entries_failed">Eksportering av noen oppføringer feilet</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Ingen oppføringer for eksportering er funnet</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Opslaan</string>
|
||||
<string name="startup">Opstarten</string>
|
||||
<string name="text">Tekst</string>
|
||||
<string name="migrating">Migreren</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Bestand herstellen</string>
|
||||
|
@ -440,7 +441,8 @@
|
|||
<string name="exporting_failed">Exporteren mislukt</string>
|
||||
<string name="importing_some_entries_failed">Sommige items konden niet worden geïmporteerd</string>
|
||||
<string name="exporting_some_entries_failed">Sommige items konden niet worden geëxporteerd</string>
|
||||
<string name="no_entries_for_exporting">Er zijn geen items gevonden om te exporteren</string>
|
||||
<string name="no_entries_for_importing">Er zijn geen te importeren items gevonden</string>
|
||||
<string name="no_entries_for_exporting">Er zijn geen te exporteren items gevonden</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
<string name="usb">USB</string>
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -434,6 +434,7 @@
|
|||
<string name="saving_label">Zachowywanie</string>
|
||||
<string name="startup">Uruchamianie</string>
|
||||
<string name="text">Tekst</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Przywróć ten plik</string>
|
||||
|
@ -460,6 +461,7 @@
|
|||
<string name="exporting_failed">Eksportowanie nie powiodło się</string>
|
||||
<string name="importing_some_entries_failed">Importowanie niektórych wpisów nie powiodło się</string>
|
||||
<string name="exporting_some_entries_failed">Eksportowanie niektórych wpisów nie powiodło się</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Nie znalazłem żadnych wpisów do wyeksportowania</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Salvando</string>
|
||||
<string name="startup">Inicialização</string>
|
||||
<string name="text">Texto</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Falha na exportação</string>
|
||||
<string name="importing_some_entries_failed">Houve falha em alguns ítens da importação</string>
|
||||
<string name="exporting_some_entries_failed">Houve falha em alguns ítens da exportação</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Não foram encontramos ítens para exportar</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<string name="transparent">Transparente</string>
|
||||
<string name="transparent_color">Cor transparente</string>
|
||||
<string name="select_a_different_color">Selecione uma cor diferente</string>
|
||||
<string name="download">Download</string>
|
||||
<string name="download">Descarregar</string>
|
||||
|
||||
<!-- Favorites -->
|
||||
<string name="favorites">Favoritos</string>
|
||||
|
@ -179,8 +179,8 @@
|
|||
<string name="undo_changes_confirmation">Tem a certeza de que deseja desfazer as alterações?</string>
|
||||
<string name="save_before_closing">Existem alterações não guardadas. Deseja guardar antes de sair?</string>
|
||||
<string name="apply_to_all_apps">Aplicar cores a todas as aplicações Simple</string>
|
||||
<string name="app_icon_color_warning">WARNING: Some launchers do not handle app icon customization properly. In case the icon will disappear, try launching the app via Google Play or some widget, if available.
|
||||
Once launched, just set back the default orange icon #F57C00. You might have to reinstall the app in the worst case.</string>
|
||||
<string name="app_icon_color_warning">AVISO: alguns launchers não gerem bem a personalização dos ícones. Se o ícone desaparecer, tente iniciar a aplicação através da Google Play ou do widget.
|
||||
Depois de iniciar a aplicação, reverta para a cor original (#F57C00). No pior cenário, poderá ser necessário reinstalar a aplicação.</string>
|
||||
<string name="share_colors_success">Cores atualizadas com sucesso. Foi criado o novo tema \'Partilhado\', que pode utilizar para atualizar as cores de todas as aplicações Simple.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -401,13 +401,13 @@
|
|||
<string name="recycle_bin_cleaning_interval">Intervalo de tempo para limpar a reciclagem</string>
|
||||
<string name="empty_recycle_bin">Limpar reciclagem</string>
|
||||
<string name="force_portrait_mode">Impor modo vertical</string>
|
||||
<string name="export_settings">Export settings</string>
|
||||
<string name="import_settings">Import settings</string>
|
||||
<string name="settings_exported_successfully">Settings exported successfully</string>
|
||||
<string name="settings_imported_successfully">Settings imported successfully</string>
|
||||
<string name="export_settings">Exportar definições</string>
|
||||
<string name="import_settings">Importar definições</string>
|
||||
<string name="settings_exported_successfully">Definições exportadas com sucesso</string>
|
||||
<string name="settings_imported_successfully">Definições importadas com sucesso</string>
|
||||
|
||||
<!-- Setting sections -->
|
||||
<string name="visibility">Visibilidade</string>
|
||||
<string name="visibility">Exibição</string>
|
||||
<string name="security">Segurança</string>
|
||||
<string name="scrolling">Deslocação</string>
|
||||
<string name="file_operations">Operações de ficheiros</string>
|
||||
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Guardar</string>
|
||||
<string name="startup">Arranque</string>
|
||||
<string name="text">Texto</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restaurar este ficheiro</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Falha ao exportar</string>
|
||||
<string name="importing_some_entries_failed">Falha ao importar alguns itens</string>
|
||||
<string name="exporting_some_entries_failed">Falha ao exportar alguns itens</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Não existem itens para exportação</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -436,6 +436,7 @@
|
|||
<string name="saving_label">Сохранение</string>
|
||||
<string name="startup">Запуск</string>
|
||||
<string name="text">Текст</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Восстановить этот файл</string>
|
||||
|
@ -462,6 +463,7 @@
|
|||
<string name="exporting_failed">Экспортирование завершилось неудачей</string>
|
||||
<string name="importing_some_entries_failed">Импортирование некоторых элементов завершилось неудачей</string>
|
||||
<string name="exporting_some_entries_failed">Экспортирование некоторых элементов завершилось неудачей</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Отсутствуют элементы для экспортирования</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -436,6 +436,7 @@
|
|||
<string name="saving_label">Ukladanie</string>
|
||||
<string name="startup">Po spustení</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrovanie</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Obnoviť tento súbor</string>
|
||||
|
@ -462,6 +463,7 @@
|
|||
<string name="exporting_failed">Exportovanie zlyhalo</string>
|
||||
<string name="importing_some_entries_failed">Importovanie niektorých položiek zlyhalo</string>
|
||||
<string name="exporting_some_entries_failed">Exportovanie niektorých položiek zlyhalo</string>
|
||||
<string name="no_entries_for_importing">Nenašli sa žiadne položky pre import</string>
|
||||
<string name="no_entries_for_exporting">Nenašli sa žiadne položky pre export</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -456,6 +456,7 @@
|
|||
<string name="saving_label">Shranjevanje</string>
|
||||
<string name="startup">Zagon</string>
|
||||
<string name="text">Besedilo</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Obnovi to datoteko</string>
|
||||
|
@ -483,6 +484,7 @@
|
|||
<string name="exporting_failed">Izvažanje neuspešno</string>
|
||||
<string name="importing_some_entries_failed">Uvažanje nekaterih vnosov ni uspelo</string>
|
||||
<string name="exporting_some_entries_failed">Izvažanje nekaterih vnosov ni uspelo</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Za izvoz ni bilo najdenih nobenih vnosov</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Sparande</string>
|
||||
<string name="startup">Start</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Återställ filen</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporten misslyckades</string>
|
||||
<string name="importing_some_entries_failed">Importen av vissa poster misslyckades</string>
|
||||
<string name="exporting_some_entries_failed">Exporten av vissa poster misslyckades</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Inga poster hittades för export</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Kaydetme</string>
|
||||
<string name="startup">Başlangıç</string>
|
||||
<string name="text">Metin</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Bu dosyayı geri yükle</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Dışa aktarılamadı</string>
|
||||
<string name="importing_some_entries_failed">Bazı öğeler içe aktarılamadı</string>
|
||||
<string name="exporting_some_entries_failed">Bazı öğeler dışa aktarılamadı</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">Dışa aktarılacak öğe bulunamadı</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">正在保存</string>
|
||||
<string name="startup">启动</string>
|
||||
<string name="text">文本</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">恢复此文件</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">导出失败</string>
|
||||
<string name="importing_some_entries_failed">部分项目导入失败</string>
|
||||
<string name="exporting_some_entries_failed">部分项目导出失败</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">未找到要导出的项目</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">儲存中</string>
|
||||
<string name="startup">啟動</string>
|
||||
<string name="text">文字</string>
|
||||
<string name="migrating">搬移</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">還原這個檔案</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">匯出失敗</string>
|
||||
<string name="importing_some_entries_failed">部分項目匯入失敗</string>
|
||||
<string name="exporting_some_entries_failed">部分項目匯出失敗</string>
|
||||
<string name="no_entries_for_importing">未發現供匯入的項目</string>
|
||||
<string name="no_entries_for_exporting">未發現供匯出的項目</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
|
@ -415,6 +415,7 @@
|
|||
<string name="saving_label">Saving</string>
|
||||
<string name="startup">Startup</string>
|
||||
<string name="text">Text</string>
|
||||
<string name="migrating">Migrating</string>
|
||||
|
||||
<!-- Recycle Bin -->
|
||||
<string name="restore_this_file">Restore this file</string>
|
||||
|
@ -440,6 +441,7 @@
|
|||
<string name="exporting_failed">Exporting failed</string>
|
||||
<string name="importing_some_entries_failed">Importing some entries failed</string>
|
||||
<string name="exporting_some_entries_failed">Exporting some entries failed</string>
|
||||
<string name="no_entries_for_importing">No entries for importing have been found</string>
|
||||
<string name="no_entries_for_exporting">No entries for exporting have been found</string>
|
||||
|
||||
<!-- OTG devices -->
|
||||
|
|
Loading…
Reference in a new issue