|
@ -7,7 +7,7 @@ buildscript {
|
|||
propMinSdkVersion = 21
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '5.5.18'
|
||||
propVersionName = '5.6.2'
|
||||
kotlin_version = '1.3.11'
|
||||
}
|
||||
|
||||
|
|
|
@ -131,22 +131,33 @@ class CustomizationActivity : BaseSimpleActivity() {
|
|||
curSelectedThemeId = getCurrentThemeId()
|
||||
customization_theme.text = getThemeText()
|
||||
customization_theme_holder.setOnClickListener {
|
||||
val items = arrayListOf<RadioItem>()
|
||||
for ((key, value) in predefinedThemes) {
|
||||
items.add(RadioItem(key, getString(value.nameId)))
|
||||
if (baseConfig.wasAppIconCustomizationWarningShown) {
|
||||
themePickerClicked()
|
||||
} else {
|
||||
ConfirmationDialog(this, "", R.string.app_icon_color_warning, R.string.ok, 0) {
|
||||
baseConfig.wasAppIconCustomizationWarningShown = true
|
||||
themePickerClicked()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun themePickerClicked() {
|
||||
val items = arrayListOf<RadioItem>()
|
||||
for ((key, value) in predefinedThemes) {
|
||||
items.add(RadioItem(key, getString(value.nameId)))
|
||||
}
|
||||
|
||||
RadioGroupDialog(this@CustomizationActivity, items, curSelectedThemeId) {
|
||||
if (it == THEME_SHARED && !isThankYouInstalled()) {
|
||||
PurchaseThankYouDialog(this)
|
||||
return@RadioGroupDialog
|
||||
}
|
||||
|
||||
RadioGroupDialog(this@CustomizationActivity, items, curSelectedThemeId) {
|
||||
if (it == THEME_SHARED && !isThankYouInstalled()) {
|
||||
PurchaseThankYouDialog(this)
|
||||
return@RadioGroupDialog
|
||||
}
|
||||
|
||||
updateColorTheme(it as Int, true)
|
||||
if (it != THEME_CUSTOM && it != THEME_SHARED && !baseConfig.wasCustomThemeSwitchDescriptionShown) {
|
||||
baseConfig.wasCustomThemeSwitchDescriptionShown = true
|
||||
toast(R.string.changing_color_description)
|
||||
}
|
||||
updateColorTheme(it as Int, true)
|
||||
if (it != THEME_CUSTOM && it != THEME_SHARED && !baseConfig.wasCustomThemeSwitchDescriptionShown) {
|
||||
baseConfig.wasCustomThemeSwitchDescriptionShown = true
|
||||
toast(R.string.changing_color_description)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -298,8 +309,17 @@ class CustomizationActivity : BaseSimpleActivity() {
|
|||
customization_text_color_holder.setOnClickListener { pickTextColor() }
|
||||
customization_background_color_holder.setOnClickListener { pickBackgroundColor() }
|
||||
customization_primary_color_holder.setOnClickListener { pickPrimaryColor() }
|
||||
customization_app_icon_color_holder.setOnClickListener { pickAppIconColor() }
|
||||
apply_to_all_holder.setOnClickListener { applyToAll() }
|
||||
customization_app_icon_color_holder.setOnClickListener {
|
||||
if (baseConfig.wasAppIconCustomizationWarningShown) {
|
||||
pickAppIconColor()
|
||||
} else {
|
||||
ConfirmationDialog(this, "", R.string.app_icon_color_warning, R.string.ok, 0) {
|
||||
baseConfig.wasAppIconCustomizationWarningShown = true
|
||||
pickAppIconColor()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun hasColorChanged(old: Int, new: Int) = Math.abs(old - new) > 1
|
||||
|
|
|
@ -7,6 +7,8 @@ import android.hardware.usb.UsbManager
|
|||
import android.media.MediaScannerConnection
|
||||
import android.net.Uri
|
||||
import android.os.Environment
|
||||
import android.os.Handler
|
||||
import android.os.Looper
|
||||
import android.provider.DocumentsContract
|
||||
import android.provider.MediaStore
|
||||
import android.text.TextUtils
|
||||
|
@ -391,7 +393,15 @@ fun Context.rescanDeletedPath(path: String, callback: (() -> Unit)? = null) {
|
|||
return
|
||||
}
|
||||
|
||||
MediaScannerConnection.scanFile(applicationContext, arrayOf(path), null) { s, uri ->
|
||||
// scanFile doesnt trigger in some cases, refresh items manually after some period
|
||||
val SCAN_FILE_MAX_DURATION = 1000L
|
||||
val scanFileHandler = Handler(Looper.getMainLooper())
|
||||
scanFileHandler.postDelayed({
|
||||
callback?.invoke()
|
||||
}, SCAN_FILE_MAX_DURATION)
|
||||
|
||||
MediaScannerConnection.scanFile(applicationContext, arrayOf(path), null) { path, uri ->
|
||||
scanFileHandler.removeCallbacksAndMessages(null)
|
||||
try {
|
||||
applicationContext.contentResolver.delete(uri, null, null)
|
||||
} catch (e: Exception) {
|
||||
|
|
|
@ -270,4 +270,8 @@ open class BaseConfig(val context: Context) {
|
|||
var wasInitialUpgradeToProShown: Boolean
|
||||
get() = prefs.getBoolean(WAS_INITIAL_UPGRADE_TO_PRO_SHOWN, false)
|
||||
set(wasInitialUpgradeToProShown) = prefs.edit().putBoolean(WAS_INITIAL_UPGRADE_TO_PRO_SHOWN, wasInitialUpgradeToProShown).apply()
|
||||
|
||||
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()
|
||||
}
|
||||
|
|
|
@ -96,6 +96,7 @@ const val WAS_ORANGE_ICON_CHECKED = "was_orange_icon_checked"
|
|||
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"
|
||||
|
||||
// licenses
|
||||
internal const val LICENSE_KOTLIN = 1
|
||||
|
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 597 B After Width: | Height: | Size: 597 B |
Before Width: | Height: | Size: 896 B After Width: | Height: | Size: 896 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Dəyişiklikləri geri almaq istədiyinizə əminsiniz?</string>
|
||||
<string name="save_before_closing">Yadda saxlamadığınız dəyişikliklər var. Çıxmazdan əvvəl saxlanılsın?</string>
|
||||
<string name="apply_to_all_apps">Rəngləri bütün Simple Apps tətbiqlərinə şamil et</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="share_colors_success">Rənglər uğurla yeniləndi. \'Paylanmış\' adlı yeni tema əlavə edildi, xahiş olunur gələcəkdə bütün tətbiqlərin yeniləmələri üçün bundan istifadə edin.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Bu tətbiq həyatımı asanlaşdırmaq üçün aşağıdakı üçüncü partiya tətbiq kitabxanalarından istifadə edir. Təşəkkürlər.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -177,6 +177,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="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[
|
||||
|
@ -558,6 +560,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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Aquesta aplicació fa servir les següents biblioteques de tercers que ens faciliten la feina. Gràcies.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Opravdu chcete vrátit změny zpět?</string>
|
||||
<string name="save_before_closing">Máte neuložené změny. Uložit před zavřením?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -572,6 +574,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Tato aplikace využívá následující knihovny třetích stran pro zjednodušení mého žívota. Děkuji.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Er du sikker på at du vil fortryde ændringerne?</string>
|
||||
<string name="save_before_closing">Du har ændringer der ikke er gemt. Vil du gemme dem?</string>
|
||||
<string name="apply_to_all_apps">Anvend farverne på alle 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="share_colors_success">Farverne er ændret. Et nyt udseende kaldet \"Tilpasset\" er tilføjet, brug det ved opdatering af alle app-farver fremover.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Jep. Når du føjer en widget til din skærm kommer muligheden for at konfigurere den frem. I nederste venstre hjørne finder du farvede kvadrater, klik på dem og vælg en ny farve. Du kan justere alfa med skyderen.</string>
|
||||
<string name="faq_5_title_commons">Kan jeg gendanne slettede filer?</string>
|
||||
<string name="faq_5_text_commons">Nej, ikke hvis de virkelig er slettet. Men du kan vælge at bruge en papirkurv i stedet for at slette noget direkte. Papirkurven aktiveres i indstillingerne.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Denne app bruger følgende 3.-parts biblioteker der gør at mit liv bliver lidt enklere. Tak.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Bist du sicher, dass du die Änderungen verwerfen willst?</string>
|
||||
<string name="save_before_closing">Du hast ungespeicherte Änderungen. Speichern vorm Beenden?</string>
|
||||
<string name="apply_to_all_apps">Farben bei allen schlichten Apps anwenden</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="share_colors_success">Farben erfolgreich aktualisiert. Ein neues Thema \'Shared\' wurde hinzugefügt, bitte verwende dieses um für alle Apps die Farben zu ändern.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Ja, wenn du ein Widget auf den Home Screen ziehst, erscheint ein Konfigurationsmenü. In der linken unteren Ecke sind farbige Kästchen, drücke auf sie und wähle eine neue Farbe. Ausserdem kannst du den Regler nutzen, um den Alphaparameter (Transparenz) einzustellen.</string>
|
||||
<string name="faq_5_title_commons">Kann ich irgendwie gelöschte Dateien wiederherstellen?</string>
|
||||
<string name="faq_5_text_commons">Wenn diese endgültig gelöscht wurden, nein. Aber Du kannst in den App-Eintellungen den Papierkorb aktivieren, statt des direkten Löschens. Das verschiebt zu löschende Dateien nur in den Papierkorb, und löscht diese nicht endgültig.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Diese App nutzt die folgenden Drittanbieterbibliotheken, die mein Leben einfacher machen. Danke!</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Είστε βέβαιοι ότι θέλετε να αναιρέσετε τις αλλαγές σας?</string>
|
||||
<string name="save_before_closing">Έχετε αλλαγές που δεν έχουν αποθηκευτεί. Αποθήκευση πριν από την έξοδο?</string>
|
||||
<string name="apply_to_all_apps">Εφαρμογή χρωμάτων σε όλες τις 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="share_colors_success">Τα χρώματα ενημερώθηκαν με επιτυχία. Ένα νέο θέμα που ονομάζεται \"Κοινόχρηστο\" έχει προστεθεί, παρακαλούμε να χρησιμοποιήστε το για την ενημέρωση των χρωμάτων όλων των εφαρμ. στο μέλλον.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Ναι, καθώς σύρετε ένα γραφικό στοιχείο στην αρχική οθόνη σας, εμφανίζεται μια οθόνη διαμόρφωσης widget. Θα δείτε έγχρωμα τετράγωνα στην κάτω αριστερή γωνία, απλά πατήστε τα για να επιλέξετε ένα νέο χρώμα. Μπορείτε να χρησιμοποιήσετε το ρυθμιστικό για να ρυθμίσετε το alpha επίσης.</string>
|
||||
<string name="faq_5_title_commons">Μπορώ να επαναφέρω με κάποιο τρόπο τα διαγραμμένα αρχεία;</string>
|
||||
<string name="faq_5_text_commons">Εάν έχουν πραγματικά διαγραφεί, δεν μπορείτε. Ωστόσο, μπορείτε να ενεργοποιήσετε τη χρήση του Κάδου Ανακύκλωσης αντί της διαγραφής στις ρυθμίσεις της εφαρμογής. Αυτό θα μετακινήσει απλώς τα αρχεία σε αυτόν αντί να τα διαγράψει.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Αυτή η εφαρμογή χρησιμοποιεί τις ακόλουθες βιβλιοθήκες τρίτων για να διευκολύνει τη ζωή μου. Ευχαριστώ.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<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="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[
|
||||
|
@ -555,6 +557,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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicación usa las siguientes bibliotecas de terceros que hacen mi vida más fácil. Gracias.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Haluatko varmasti perua muutokset?</string>
|
||||
<string name="save_before_closing">Sinulla on tallentamattomia muutoksia. Tallennetaanko ennen sulkemista?</string>
|
||||
<string name="apply_to_all_apps">Käytä värejä kaikissa Simple App -sovelluksissa</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="share_colors_success">Värit päivitetty. Uusi teema nimeltä \'Jaettu\' käytä sitä jatkossa muokataksesi värejä kaikissa sovelluksissa.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Kyllä. Kun luot widgetin aloitusnäytölle aukeaa widgetin määritysikkuna. Paina värillisiä neliöitä valitaksesi uudet värit. Vierityspalkista voit myös säätää läpinäkyvyyttä.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Tämä sovellus käyttää kolmannen osapuolen lisenssejä tehdäkseni elämästäni helpompaa. Kiitos.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Voulez-vous vraiment annuler vos changements ?</string>
|
||||
<string name="save_before_closing">Vous avez des changements non enregistrés. Enregistrer avant de quitter ?</string>
|
||||
<string name="apply_to_all_apps">Appliquer à l\'ensemble de la suite d\'applications Simples</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="share_colors_success">Couleurs actualisées. Un nouveau thème nommé \"Partagé\" a été ajouté. Veuillez utiliser ce thème pour actualiser les couleurs de toutes les applications à partir de maintenant.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -556,6 +558,9 @@
|
|||
<string name="faq_4_text_commons">Oui, quand vous glissez le widget sur l\'écran d\'accueil un dialogue de configuration apparaît. Vous verrez des carrés en bas à gauche, en appuyant dessus vous pouvez choisir une nouvelle couleur. Vous pouvez aussi utiliser le curseur pour régler la transparence.</string>
|
||||
<string name="faq_5_title_commons">Puis-je restaurer les fichiers supprimés ?</string>
|
||||
<string name="faq_5_text_commons">S\'ils ont déjà été supprimés, vous ne pouvez pas. Toutefois, vous pouvez activer l\'utilisation de la corbeille à la place de la suppression dans les paramètres de l\'application. Les fichiers seront alors placés dans la corbeille plutôt que supprimés.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Cette application utilise les bibliothèques tierces suivantes pour me simplifier la vie. Merci.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<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="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[
|
||||
|
@ -555,6 +557,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">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicación usa las siguientes bibliotecas de terceros que hacen mi vida más fácil. Gracias.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">मेरा जीवन आसान करने के लिए यह एप्प तीसरे पक्ष की लाइब्रेरी का इस्तेमाल करती हैं। धन्यवाद।</string>
|
||||
|
|
|
@ -180,6 +180,8 @@
|
|||
<string name="undo_changes_confirmation">Jeste li sigurni da želite poništiti Vaše promjene?</string>
|
||||
<string name="save_before_closing">Imate ne spremljene promjene. Želite li spremiti prije izlaska?</string>
|
||||
<string name="apply_to_all_apps">Primjeni boje na sve Simple Aplikacije</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="share_colors_success">Uspješno ažurirane boje. Nova tema pod nazivom \'Shared\' je dodana, molimo koristite ju za ažuriranje svih boja u aplikaciji u budućnosti.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -575,6 +577,9 @@
|
|||
<string name="faq_4_text_commons">Da, kada povlačite widget na početnom zaslonu, pojavit će se zaslon za konfiguraciju widgeta. U donjem lijevom kutu vidjet ćete obojene kvadrate, samo ih pritisnite da biste odabrali novu boju. Možete koristiti i klizač za podešavanje alphe.</string>
|
||||
<string name="faq_5_title_commons">Mogu li nekako vratiti izbrisane datoteke?</string>
|
||||
<string name="faq_5_text_commons">Ako su stvarno izbrisane, ne možete. Međutim, možete omogućiti upotrebu koša za smeće umjesto da ih izbrišete, u postavkama aplikacije. To će samo premjestiti datoteke u nju umjesto da ih izbriše.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Ova aplikacija koristi biblioteke trećih strana kako bi olakšala moj život. Hvala Vam.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Biztos visszavonja a változtatást?</string>
|
||||
<string name="save_before_closing">Nem mentette a változtatásokat. Menti a kilépés előtt?</string>
|
||||
<string name="apply_to_all_apps">Színek alkalmazása az összes Simple Apps-ra</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="share_colors_success">A színek sikeresen frissültek. Hozzáadott egy új témát, amelynek neve \'Megosztott\'. Kérjük, a jövőben ezt használja az összes alkalmazás színeinek frissítéséhez.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Igen, amikor egy widgetet futtat a kezdőképernyőn, megjelenik egy widget konfigurációs képernyő. A bal alsó sarokban színes négyzetek láthatók, csak nyomja meg és új színt választhat. Használhatja a csúszkát az alfa beállításához is.</string>
|
||||
<string name="faq_5_title_commons">Vissza tudom állítani a törölt fájlokat?</string>
|
||||
<string name="faq_5_text_commons">Ha valóban töröltek, akkor nem. Azonban engedélyezheti a Lomtár használatát az alkalmazás beállításaiban a törlés helyett. Ekkor a törlés helyett csak áthelyezi oda a fájlokat.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Ez az alkalmazás a következő harmadik fél könyvtárait használja az életem megkönnyítésére. Köszönöm.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Anda yakin ingin membuang perubahan?</string>
|
||||
<string name="save_before_closing">Perubahan Anda belum disimpan. Simpan sebelum keluar?</string>
|
||||
<string name="apply_to_all_apps">Terapkan warna ke semua 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="share_colors_success">Warna berhasil diperbarui. Tema baru bernama \'Dibagikan\' telah ditambahkan, gunakan untuk memperbarui semua warna aplikasi kedepannya.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Ya, setelah Anda menyeret widget di layar beranda, layar konfigurasi widget akan muncul. Anda akan melihat kotak warna di pojok bawah kiri, tinggal sentuh untuk memilih warna baru. Anda bisa menggunakan penggeser untuk mengatur transparansi juga.</string>
|
||||
<string name="faq_5_title_commons">Bisakah saya mengembalikan file yang terhapus?</string>
|
||||
<string name="faq_5_text_commons">Jika benar-benar sudah terhapus, tidak bisa. Namun, Anda bisa menggunakan fitur Sampah di setelan aplikasi. Fitur tersebut hanya akan memindahkannya ke situ alih-alih menghapusnya permanen.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Aplikasi ini menggunakan library pihak ketiga berikut untuk mempermudah pekerjaan. Terima kasih.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Sicuro di annullare le modifiche?</string>
|
||||
<string name="save_before_closing">Ci sono modifiche non salvate. Salvare prima di uscire?</string>
|
||||
<string name="apply_to_all_apps">Applica i colori a tutte le app Simple</string>
|
||||
<string name="app_icon_color_warning">ATTENZIONE: alcuni lanciatori non gestiscono correttamente le personalizzazioni delle icone delle applicazioni. Se l\'icona scompare, provare ad avviare l\'applicazione dal Google Play Store oppure dal widget, se disponibile.
|
||||
Una volta avviata, impostare l\'icona predefinita col colore arancione #F57C00. Potrebbe essere necessario reinstallare l\'applicazione se proprio non funziona.</string>
|
||||
<string name="share_colors_success">Colori aggiornati correttamente. È stato aggiunto un nuovo tema chiamato \'Condiviso\', usa quello per aggiornare tutti i colori dell\'app in futuro.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -556,6 +558,9 @@ forse la soluzione è già lì.</string>
|
|||
<string name="faq_4_text_commons">Sì, quando trascini un widget nella tua schermata appare una finestra di configurazione. Vedrai dei quadrati colorati nell\'angolo in basso a sinistra, toccali per scegliere un colore. Puoi muovere l\'indicatore per regolare l\'alpha.</string>
|
||||
<string name="faq_5_title_commons">Posso recuperare in qualche modo i file eliminati?</string>
|
||||
<string name="faq_5_text_commons">Se sono stati veramente eliminati, non puoi. Tuttavia, puoi attivare nelle impostazioni l\'uso del cestino invece di eliminare. I file verranno solo spostati lì invece di essere eliminati.</string>
|
||||
<string name="faq_6_title_commons">L\'icona dell\'app è scomparsa nel lanciatore. Cosa posso fare?</string>
|
||||
<string name="faq_6_text_commons">Il proprio lanciatore non gestisce correttamente le personalizzazioni delle icone delle applicazioni. Provare ad avviare l\'applicazione dal Google Play Store oppure dal widget, se disponibile.
|
||||
Una volta avviata, impostare l\'icona predefinita col colore arancione #F57C00. Potrebbe essere necessario reinstallare l\'applicazione se proprio non funziona.</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Questa app usa le seguenti librerie di terze parti per semplificarmi la vita. Grazie.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">変更を元に戻してもよろしいですか?</string>
|
||||
<string name="save_before_closing">保存していない変更があります。保存しますか?</string>
|
||||
<string name="apply_to_all_apps">すべての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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">このアプリは、私の暮らしにゆとりを持たせるために、次のサードパーティのライブラリーを使用しています。ありがとうございます。</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">변경된 사항을 되돌리겠습니까?</string>
|
||||
<string name="save_before_closing">변경사항을 저장하지 않았습니다. 종료전에 저장 하시겠습니까?</string>
|
||||
<string name="apply_to_all_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="share_colors_success">색상이 성공적으로 변경되었습니다. \'공유\'라는 새로운 테마가 추가되었습니다. 앞으로 모든 앱 색상을 변경할때 사용하세요.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -558,6 +560,9 @@
|
|||
<string name="faq_4_text_commons">예, 홈 화면에서 위젯을 드래그하면 위젯 구성 화면이 나타납니다. 왼쪽 하단 모서리에 색깔이있는 사각형이 보일 것입니다. 그것을 눌러 새로운 색을 선택하십시오. 슬라이더를 사용하여 알파를 조정할 수도 있습니다.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Ar esate tikri, jog norite panaikinti pakeitimus?</string>
|
||||
<string name="save_before_closing">Turite neišsaugotų pakeitimų. Išsaugoti prieš išeinant?</string>
|
||||
<string name="apply_to_all_apps">Pritaikyti spalvas visoms paprastoms programėlėms</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="share_colors_success">Spalvos atnaujintos sėkmingai. Nauja tema pavdinimu \'Bendra\' buvo įtraukta, prašome naudoti tai ateityje visų programėlių spalvų atnaujinimui.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -570,6 +572,9 @@
|
|||
<string name="faq_4_text_commons">Taip, kai vilksite valdiklį savo pagrindiniame ekrane, pasirodys valdiklio konfigūracijos ekranas. Apatiniame kairiajame kampe pamatysite spalvotą kvadratą, tiesiog paspauskite, kad pasirinktumėte naują spalvą. Galite naudoti slankiklį, kad galėtumėte koreguoti pagrindinę spalvą</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Ši programa naudoja trečiųjų šalių licensijas ir padaro mano gyvenimą geresnį. Ačiū.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Er du sikker på at du vil angre dine endringer?</string>
|
||||
<string name="save_before_closing">Du har endringer som ikke er lagret. Lagre før du avslutter?</string>
|
||||
<string name="apply_to_all_apps">Bruk fargene i alle 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="share_colors_success">Fargene er vellykket oppdatert. Et nytt tema kalt \'Delt\' er lagt til, bruk det for å oppdatere alle appenes farger i fremtiden.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Wijzigingen ongedaan maken?</string>
|
||||
<string name="save_before_closing">Onopgeslagen wijzigingen. Nu opslaan?</string>
|
||||
<string name="apply_to_all_apps">Kleuren toepassen op al onze apps</string>
|
||||
<string name="app_icon_color_warning">WAARSCHUWING: Sommige launchers kunnen niet goed omgaan met aangepaste app-iconen. Als het icoon verdwijnt, probeer de app dan te starten via de Play Store of een widget.
|
||||
Zodra de app gestart is kan het icoon middels de standaardkleur #F57C00 worden hersteld. In het ergste geval dient de app opnieuw te worden geïnstalleerd.</string>
|
||||
<string name="share_colors_success">Kleuren gewijzigd. Gebruik het nieuwe thema \'Gedeeld\' om de kleuren voor al onze apps aan te passen.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Bij het plaatsen van een widget op het startscherm zal er een instellingenvenster verschijnen. Onderaan staan gekleurde vlakken, waarmee nieuwe kleuren kunnen worden gekozen. De schuif is voor de transparantie.</string>
|
||||
<string name="faq_5_title_commons">Kan ik verwijderde bestanden herstellen?</string>
|
||||
<string name="faq_5_text_commons">Bestanden worden direct na bevestiging verwijderd, tenzij de prullenbak wordt gebruikt. De prullenbak kan bij de instellingen worden ingeschakeld.</string>
|
||||
<string name="faq_6_title_commons">Het icoon voor de app is verdwenen uit mijn launcher. Wat moet ik doen?</string>
|
||||
<string name="faq_6_text_commons">Sommige launchers kunnen niet goed omgaan met aangepaste app-iconen. Als het icoon verdwijnt, probeer de app dan te starten via de Play Store of een widget.
|
||||
Zodra de app gestart is kan het icoon middels de standaardkleur #F57C00 worden hersteld. In het ergste geval dient de app opnieuw te worden geïnstalleerd.</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Deze app maakt gebruik van de volgende libraries om het mij wat gemakkelijker te maken. Dank hiervoor.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|
|
@ -178,6 +178,8 @@
|
|||
<string name="undo_changes_confirmation">Czy na pewno chcesz cofnąć zmiany?</string>
|
||||
<string name="save_before_closing">Zapisać zmiany?</string>
|
||||
<string name="apply_to_all_apps">Zastosuj kolory do wszystkich Prostych Aplikacji</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="share_colors_success">Kolory zostały zmienione. Utworzony został nowy, \'wspólny\' motyw - użyj go, aby zaktualizować kolorystykę wszystkich Prostych Aplikacji.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -573,6 +575,9 @@
|
|||
<string name="faq_4_text_commons">Tak. Po przeciągnięciu widżetu na pulpit pojawia się okno jego konfiguracji. Zobaczysz na nim kolorowe kwadraty, za pomocą których możesz wybrać nowe kolory. Suwakiem możesz też ustawić poziom przezroczystości.</string>
|
||||
<string name="faq_5_title_commons">Czy mogę jakoś odzyskać usunięte pliki?</string>
|
||||
<string name="faq_5_text_commons">Jeśli zostały faktycznie usunięte, no to nie bardzo (ratunkiem mogą - acz nie muszą - okazać się zewnętrzne aplikacje odzyskujące pliki). Jednakże, możesz włączyć funkcję kosza w ustawieniach niniejszej aplikacji, aby mieć pewność co do ich ewentualnego odzyskania.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Aplikacja korzysta z następujących bibliotek innych firm:</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Tem certeza que deseja desfazer as alterações?</string>
|
||||
<string name="save_before_closing">Existem alterações não salvas. Salvar antes de sair?</string>
|
||||
<string name="apply_to_all_apps">Aplicar cores a todos os Apps 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="share_colors_success">Cores atualizadas com sucesso. Um novo tema chamado \'Compartilhado\' foi adicionado, use-o para atualizar as cores de todos os apps no futuro.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Sim, enquanto você arrasta um widget em sua tela inicial, uma tela de configuração do widget aparece. Você verá quadrados coloridos no canto inferior esquerdo, basta pressioná-los para escolher uma nova cor. Você pode usar o controle deslizante para ajustar o alfa também.</string>
|
||||
<string name="faq_5_title_commons">Posso restaurar de alguma forma os arquivos apagados?</string>
|
||||
<string name="faq_5_text_commons">Se eles foram realmente excluídos, você não pode. No entanto, você pode ativar o uso de uma Lixeira em vez de excluí-la nas configurações do aplicativo. Isso apenas moverá os arquivos, em vez de excluí-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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Este aplicativo usa as seguintes bibliotecas de terceiros para facilitar a minha vida. Obrigado.</string>
|
||||
|
|
|
@ -177,6 +177,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="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[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Esta aplicação usa as seguintes bibliotecas de terceiros para facilitar a minha vida. Obrigado.</string>
|
||||
|
|
|
@ -180,6 +180,8 @@
|
|||
<string name="undo_changes_confirmation">Действительно отменить изменения?</string>
|
||||
<string name="save_before_closing">У вас есть несохранённые изменения. Сохранить перед выходом?</string>
|
||||
<string name="apply_to_all_apps">Применить цвета ко всем приложениям 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="share_colors_success">Цвета обновлены. Добавлена новая тема с названием \"Общая\", в дальнейшем используйте её для обновления цветов всех приложений.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -577,6 +579,9 @@
|
|||
<string name="faq_4_text_commons">Да, при перетаскивании виджета на главный экран появляется панель его настройки. На ней вы увидите цветные квадраты в левом нижнем углу, просто нажмите их, чтобы выбрать новый цвет. Также можно использовать ползунок для настройки прозрачности.</string>
|
||||
<string name="faq_5_title_commons">Могу я как-то восстановить удалённые файлы?</string>
|
||||
<string name="faq_5_text_commons">Если они были действительно удалены, то не можете. Однако можно включить использование корзины вместо удаления в настройках приложения. Тогда файлы будут просто перемещаться в неё, а не удаляться.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Это приложение использует следующие библиотеки сторонних разработчиков, чтобы облегчить мой труд. Спасибо.</string>
|
||||
|
|
|
@ -180,6 +180,8 @@
|
|||
<string name="undo_changes_confirmation">Ste si istý, že chcete vrátiť zmeny?</string>
|
||||
<string name="save_before_closing">Máte neuložené zmeny. Chcete ich uložiť pred ukončením?</string>
|
||||
<string name="apply_to_all_apps">Použiť farby na všetky Jednoduché Aplikácie</string>
|
||||
<string name="app_icon_color_warning">UPOZORNENIE: Niektoré spúšťače zariadení nepodporujú úpravu ikoniek. V prípade, že ikonka apky zmizne, ju skúste spustiť cez Google Play, alebo nejaký widget, ak je dostupný.
|
||||
Ak je apka spustená, skúste nastaviť pôvodnú oranžovú farbu ikonky #F57C00. V najhoršom prípade budete musieť apku preinštalovať.</string>
|
||||
<string name="share_colors_success">Farby boli úspešne aktualizované. Bola pridaná nová \'Zdieľaná\' téma, prosím použite ju pri ďalšej úprave farieb.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -577,6 +579,9 @@
|
|||
<string name="faq_4_text_commons">Áno, po potiahnutí widgetu na plochu sa zobrazí konfiguračná obrazovka. Kliknutím na farebné štvorčeky v ľavom dolnom rohu viete zvoliť nové. Potiahnutím posuvníka viete upraviť aj priehľadnosť.</string>
|
||||
<string name="faq_5_title_commons">Viem nejakým spôsobom obnoviť vymazané súbory?</string>
|
||||
<string name="faq_5_text_commons">Ak dané súbory boli skutočne vymazané, tak nie. V nastaveniach aplikácie ale viete nastaviť používanie odpadkového koša miesto vymazávania súborov.</string>
|
||||
<string name="faq_6_title_commons">Spúšťacia ikonka apky zmizla. Čo mám spraviť?</string>
|
||||
<string name="faq_6_text_commons">Bude to spôsobené tým, že váš spúšťač zariadenia nepodporuje úpravu ikoniek. Skúste apku spustiť cez Google Play, alebo nejaký widget, ak je dostupný.
|
||||
Ak je apka spustená, skúste nastaviť pôvodnú oranžovú farbu ikonky #F57C00. V najhoršom prípade budete musieť apku preinštalovať.</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Táto aplikácia používa na uľahčenie práce nasledovné knižnice tretích strán. Ďakujeme.</string>
|
||||
|
|
|
@ -182,6 +182,8 @@
|
|||
<string name="undo_changes_confirmation">Res želite razveljaviti spremembe?</string>
|
||||
<string name="save_before_closing">Imate neshranjene spremembe. Jih želite shraniti pred izhodom?</string>
|
||||
<string name="apply_to_all_apps">Uveljavite barve za vse aplikacije iz serije 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="share_colors_success">Barve so bile uspešno posodobljene. Nova tema \'Deljeno\' je bila dodana. V prihodnje za spreminjanje barv uporabljajte to.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -597,6 +599,9 @@
|
|||
<string name="faq_4_text_commons">Seveda. Ko pripomoček dodate na domači zaslon, sem vam prikaže zaslon z nastavitvami. S klikom na barvne kvadratke, lahko izberete novo barvo. Z drsnikom lahko nastavljate tudi prosojnost.</string>
|
||||
<string name="faq_5_title_commons">Lahko kako obnovim izbrisane datoteke?</string>
|
||||
<string name="faq_5_text_commons">Če so bile res izbrisane, jih ne morete. Lahko pa v nastavitvah omogočite Koš. Tako bodo datoteke premaknjene v Koš, od koder jih lahko obnovite, ne pa popolnoma izbrisane.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Da si olajšamo delo, aplikacija uporablja naslednje programske knjižnice. Hvala.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Är du säker på att du vill ångra dina ändringar?</string>
|
||||
<string name="save_before_closing">Du har ändringar som inte är sparade. Spara innan du lämnar?</string>
|
||||
<string name="apply_to_all_apps">Använd färgerna i alla Simple-appar</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="share_colors_success">Färgerna har uppdaterats. Ett nytt Tema som heter \'Delat\' har lagts till, använd det för att uppdatera alla apparnas färger i framtiden.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Denna app använder följande tredjepartsbibliotek för att göra mitt liv enklare. Tack.</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Değişikliklerinizi geri almak istediğinizden emin misiniz?</string>
|
||||
<string name="save_before_closing">Kaydedilmemiş değişiklikleriniz var. Çıkmadan önce kaydedilsin mi?</string>
|
||||
<string name="apply_to_all_apps">Tüm Basit Uygulamalara renk uygula</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="share_colors_success">"Renkler başarıyla güncellendi. 'Paylaşılan' adlı yeni bir Tema eklendi, lütfen gelecekte tüm uygulama renklerini güncellemek için kullanınız."</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -554,6 +556,9 @@
|
|||
<string name="faq_4_text_commons">Evet, ana ekranınızda bir widget\'ı sürüklediğinizde, bir widget yapılandırma ekranı görünür. Sol alt köşede renkli kareler göreceksiniz, sadece yeni bir renk seçmek için onlara basın. Alfa\'yı da ayarlamak için kaydırıcıyı kullanabilirsiniz.</string>
|
||||
<string name="faq_5_title_commons">Bir şekilde silinen dosyaları geri yükleyebilir miyim?</string>
|
||||
<string name="faq_5_text_commons">Gerçekten silinmişlerse, yapamazsınız. Bununla birlikte, gelecekte dosyaları kaybetmemek için uygulama ayarlarındaki Silmek yerine Geri Dönüşüm Kutusuna taşı seçeneğini etkinleştirebilirsiniz. Bu, dosyaları silmek yerine sadece taşır.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">Bu uygulama hayatımı kolaylaştırmak için aşağıdaki üçüncü taraf kitaplıklarını kullanır. Teşekkürler.</string>
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
<string name="primary_color">主体色</string>
|
||||
<string name="foreground_color">前景色</string>
|
||||
<string name="app_icon_color">应用图标颜色</string>
|
||||
<string name="bottom_navigation_bar_color">Bottom navigation bar color</string>
|
||||
<string name="bottom_navigation_bar_color">底部导航栏颜色</string>
|
||||
<string name="restore_defaults">恢复默认</string>
|
||||
<string name="change_color">修改颜色</string>
|
||||
<string name="theme">主题</string>
|
||||
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">是否撤销您的更改?</string>
|
||||
<string name="save_before_closing">您尚未保存更改,是否保存?</string>
|
||||
<string name="apply_to_all_apps">应用到所有简约系列应用</string>
|
||||
<string name="app_icon_color_warning">警告:某些桌面应用无法正确处理自定义应用图标。如果图标消失,请尝试通过 Google Play 或某个小部件启动应用(如果有的话)。
|
||||
在成功启动之后,请将图标颜色设置为默认的橙色#F57C00。在最坏的情况下,您可能必须重新安装本应用。</string>
|
||||
<string name="share_colors_success">颜色更改成功。已添加名为“共享”的新主题,以后你可以使用它来更改所有应用的颜色。</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -553,6 +555,9 @@
|
|||
<string name="faq_4_text_commons">是可以的,当你在主屏幕上拖动小部件时,会出现小部件配置界面。你会在左下角看到彩色的方块,只需按下它们即可选择新的颜色。你还可以通过滑块来调整 Alpha 值。</string>
|
||||
<string name="faq_5_title_commons">我可以恢复已删除的文件吗?</string>
|
||||
<string name="faq_5_text_commons">如果你真的把它们删除了,那么你无法恢复。不过,您可以启用回收站,这样只会移动文件而不是直接删除。</string>
|
||||
<string name="faq_6_title_commons">应用图标消失了。我该怎么办?</string>
|
||||
<string name="faq_6_text_commons">这是因为某些桌面应用无法正确处理自定义应用图标。如果图标消失,请尝试通过 Google Play 或某个小部件启动应用(如果有的话)。
|
||||
在成功启动之后,请将图标颜色设置为默认的橙色#F57C00。在最坏的情况下,您可能必须重新安装本应用。</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">此应用使用了以下三方库。谢谢。</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">確定要恢復變更嗎?</string>
|
||||
<string name="save_before_closing">尚未儲存變更。離開前是否儲存?</string>
|
||||
<string name="apply_to_all_apps">將顏色套用於[簡易]系列全部應用程式</string>
|
||||
<string name="app_icon_color_warning">警告:部分啟動器無法正確地處理應用程式圖標自訂化。要是圖標消失了,如果可以,試著透過Google Play或某些小工具來啟動應用程式。
|
||||
一旦啟動了,只要設回預設的橘色圖標 #F57C00 即可。最糟的情況,你可能必須重新安裝應用程式。</string>
|
||||
<string name="share_colors_success">顏色更新成功。新增了一個名為 \'Shared\' 的新主題,以後請使用那個來更新全部應用程式顏色。</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">可啊,當你在主畫面拖動小工具時,會出現小工具設置畫面。你會在左下角看到顏色方塊,點下去再挑個新顏色就好了。你也能用拉條來調整透明度。</string>
|
||||
<string name="faq_5_title_commons">我有辦法恢復被刪除的檔案嗎?</string>
|
||||
<string name="faq_5_text_commons">如果它們確實被刪除了,那沒辦法。然而,你可以在程式設定中啟用回收桶來取代刪除。那只會移動檔案而不是刪除它們。</string>
|
||||
<string name="faq_6_title_commons">應用程式啟動器上的圖標消失了。我該怎麼辦?</string>
|
||||
<string name="faq_6_text_commons">這是由於你的啟動器無法正確地支援圖標自訂。如果可以,試著透過Google Play或某些小工具來啟動應用程式。
|
||||
一旦啟動,只要設回預設的橘色圖標 #F57C00 即可。最糟的情況,你可能必須重新安裝應用程式。</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">這程式使用了下列的第三方函式庫來讓我工作簡化。感謝。</string>
|
||||
|
|
|
@ -177,6 +177,8 @@
|
|||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all 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="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
|
@ -555,6 +557,9 @@
|
|||
<string name="faq_4_text_commons">Yep, as you drag a widget on your home screen a widget config screen appears. You will see colored squares at the bottom left corner, just press them to pick a new color. You can use the slider for adjusting the alpha too.</string>
|
||||
<string name="faq_5_title_commons">Can I somehow restore deleted files?</string>
|
||||
<string name="faq_5_text_commons">If they were really deleted, you cannot. However, you can enable using a Recycle Bin instead of deleting in the app settings. That will just move the files in it instead of deleting them.</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>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
|
|