diff --git a/build.gradle b/build.gradle index 0353970fc..506c37e02 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { propMinSdkVersion = 21 propTargetSdkVersion = propCompileSdkVersion propVersionCode = 1 - propVersionName = '5.28.3' + propVersionName = '5.28.23' kotlin_version = '1.3.72' } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/adapters/ManageBlockedNumbersAdapter.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/adapters/ManageBlockedNumbersAdapter.kt index 147bfbdf0..efd4838af 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/adapters/ManageBlockedNumbersAdapter.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/adapters/ManageBlockedNumbersAdapter.kt @@ -18,13 +18,13 @@ class ManageBlockedNumbersAdapter(activity: BaseSimpleActivity, var blockedNumbe setupDragListener(true) } - override fun getActionMenuId() = R.menu.cab_remove_only + override fun getActionMenuId() = R.menu.cab_delete_only override fun prepareActionMode(menu: Menu) {} override fun actionItemPressed(id: Int) { when (id) { - R.id.cab_remove -> removeSelection() + R.id.cab_delete -> deleteSelection() } } @@ -64,16 +64,16 @@ class ManageBlockedNumbersAdapter(activity: BaseSimpleActivity, var blockedNumbe } } - private fun removeSelection() { - val removeBlockedNumbers = ArrayList(selectedKeys.size) + private fun deleteSelection() { + val deleteBlockedNumbers = ArrayList(selectedKeys.size) val positions = getSelectedItemPositions() getSelectedItems().forEach { - removeBlockedNumbers.add(it) + deleteBlockedNumbers.add(it) activity.deleteBlockedNumber(it.number) } - blockedNumbers.removeAll(removeBlockedNumbers) + blockedNumbers.removeAll(deleteBlockedNumbers) removeSelectedItems(positions) if (blockedNumbers.isEmpty()) { listener?.refreshItems() diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/NewAppsIconsDialog.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/NewAppsIconsDialog.kt index c5154a0b4..04270c4a5 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/NewAppsIconsDialog.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/NewAppsIconsDialog.kt @@ -17,9 +17,9 @@ class NewAppsIconsDialog(val activity: Activity) { val voiceRecorderUrl = "https://play.google.com/store/apps/details?id=com.simplemobiletools.voicerecorder" val text = String.format(activity.getString(R.string.new_app), - dialerUrl, "Simple Dialer", - smsMessengerUrl, "Simple SMS Messenger", - voiceRecorderUrl, "Simple Voice Recorder" + dialerUrl, activity.getString(R.string.simple_dialer), + smsMessengerUrl, activity.getString(R.string.simple_sms_messenger), + voiceRecorderUrl, activity.getString(R.string.simple_voice_recorder) ) new_apps_text.text = Html.fromHtml(text) diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt index c018698fb..36e89be7c 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Activity.kt @@ -210,7 +210,7 @@ fun Activity.sharePathIntent(path: String, applicationId: String) { } } -fun Activity.sharePathsIntent(paths: ArrayList, applicationId: String) { +fun Activity.sharePathsIntent(paths: List, applicationId: String) { ensureBackgroundThread { if (paths.size == 1) { sharePathIntent(paths.first(), applicationId) @@ -456,13 +456,13 @@ fun BaseSimpleActivity.checkWhatsNew(releases: List, currVersion: Int) baseConfig.lastVersion = currVersion } -fun BaseSimpleActivity.deleteFolders(folders: ArrayList, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) { +fun BaseSimpleActivity.deleteFolders(folders: List, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) { ensureBackgroundThread { deleteFoldersBg(folders, deleteMediaOnly, callback) } } -fun BaseSimpleActivity.deleteFoldersBg(folders: ArrayList, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) { +fun BaseSimpleActivity.deleteFoldersBg(folders: List, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) { var wasSuccess = false var needPermissionForPath = "" for (folder in folders) { @@ -523,13 +523,13 @@ fun BaseSimpleActivity.deleteFolderBg(fileDirItem: FileDirItem, deleteMediaOnly: } } -fun BaseSimpleActivity.deleteFiles(files: ArrayList, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) { +fun BaseSimpleActivity.deleteFiles(files: List, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) { ensureBackgroundThread { deleteFilesBg(files, allowDeleteFolder, callback) } } -fun BaseSimpleActivity.deleteFilesBg(files: ArrayList, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) { +fun BaseSimpleActivity.deleteFilesBg(files: List, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) { if (files.isEmpty()) { runOnUiThread { callback?.invoke(true) @@ -615,15 +615,15 @@ fun Activity.scanPathRecursively(path: String, callback: (() -> Unit)? = null) { applicationContext.scanPathRecursively(path, callback) } -fun Activity.scanFilesRecursively(files: ArrayList, callback: (() -> Unit)? = null) { +fun Activity.scanFilesRecursively(files: List, callback: (() -> Unit)? = null) { applicationContext.scanFilesRecursively(files, callback) } -fun Activity.scanPathsRecursively(paths: ArrayList, callback: (() -> Unit)? = null) { +fun Activity.scanPathsRecursively(paths: List, callback: (() -> Unit)? = null) { applicationContext.scanPathsRecursively(paths, callback) } -fun Activity.rescanPaths(paths: ArrayList, callback: (() -> Unit)? = null) { +fun Activity.rescanPaths(paths: List, callback: (() -> Unit)? = null) { applicationContext.rescanPaths(paths, callback) } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context-storage.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context-storage.kt index 3b3cc7af8..32f552abb 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context-storage.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context-storage.kt @@ -243,7 +243,7 @@ fun Context.scanPathRecursively(path: String, callback: (() -> Unit)? = null) { scanPathsRecursively(arrayListOf(path), callback) } -fun Context.scanFilesRecursively(files: ArrayList, callback: (() -> Unit)? = null) { +fun Context.scanFilesRecursively(files: List, callback: (() -> Unit)? = null) { val allPaths = ArrayList() for (file in files) { allPaths.addAll(getPaths(file)) @@ -251,7 +251,7 @@ fun Context.scanFilesRecursively(files: ArrayList, callback: (() -> Unit)? rescanPaths(allPaths, callback) } -fun Context.scanPathsRecursively(paths: ArrayList, callback: (() -> Unit)? = null) { +fun Context.scanPathsRecursively(paths: List, callback: (() -> Unit)? = null) { val allPaths = ArrayList() for (path in paths) { allPaths.addAll(getPaths(File(path))) @@ -260,7 +260,7 @@ fun Context.scanPathsRecursively(paths: ArrayList, callback: (() -> Unit } // avoid calling this multiple times in row, it can delete whole folder contents -fun Context.rescanPaths(paths: ArrayList, callback: (() -> Unit)? = null) { +fun Context.rescanPaths(paths: List, callback: (() -> Unit)? = null) { if (paths.isEmpty()) { callback?.invoke() return diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context.kt index 992795d99..9f86ce316 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/extensions/Context.kt @@ -427,6 +427,8 @@ fun Context.getSharedThemeSync(cursorLoader: CursorLoader): SharedTheme? { fun Context.getMyContentProviderCursorLoader() = CursorLoader(this, MyContentProvider.MY_CONTENT_URI, null, null, null, null) +fun Context.getMyContactsContentProviderCursorLoader() = CursorLoader(this, MyContactsContentProvider.CONTACTS_CONTENT_URI, null, null, null, null) + fun Context.getDialogTheme() = if (baseConfig.backgroundColor.getContrastColor() == Color.WHITE) R.style.MyDialogTheme_Dark else R.style.MyDialogTheme fun Context.getCurrentFormattedDateTime(): String { @@ -969,3 +971,12 @@ fun Context.deleteBlockedNumber(number: String) { val selectionArgs = arrayOf(number) contentResolver.delete(BlockedNumbers.CONTENT_URI, selection, selectionArgs) } + +fun Context.isNumberBlocked(number: String, blockedNumbers: ArrayList = getBlockedNumbers()): Boolean { + if (!isNougatPlus()) { + return false + } + + val numberToCompare = number.trimToComparableNumber() + return blockedNumbers.map { it.numberToCompare }.contains(numberToCompare) || blockedNumbers.map { it.number }.contains(numberToCompare) +} diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/BaseConfig.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/BaseConfig.kt index 7dbe0bdc9..9964d61d5 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/BaseConfig.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/BaseConfig.kt @@ -157,16 +157,16 @@ open class BaseConfig(val context: Context) { // folder locking fun addFolderProtection(path: String, hash: String, type: Int) { prefs.edit() - .putString("$PROTECTED_FOLDER_HASH$path", hash) - .putInt("$PROTECTED_FOLDER_TYPE$path", type) - .apply() + .putString("$PROTECTED_FOLDER_HASH$path", hash) + .putInt("$PROTECTED_FOLDER_TYPE$path", type) + .apply() } fun removeFolderProtection(path: String) { prefs.edit() - .remove("$PROTECTED_FOLDER_HASH$path") - .remove("$PROTECTED_FOLDER_TYPE$path") - .apply() + .remove("$PROTECTED_FOLDER_HASH$path") + .remove("$PROTECTED_FOLDER_TYPE$path") + .apply() } fun isFolderProtected(path: String) = getFolderProtectionType(path) != PROTECTION_NONE @@ -408,4 +408,8 @@ open class BaseConfig(val context: Context) { var wasMessengerRecorderShown: Boolean get() = prefs.getBoolean(WAS_MESSENGER_RECORDER_SHOWN, false) set(wasMessengerRecorderShown) = prefs.edit().putBoolean(WAS_MESSENGER_RECORDER_SHOWN, wasMessengerRecorderShown).apply() + + var defaultTab: Int + get() = prefs.getInt(DEFAULT_TAB, TAB_LAST_USED) + set(defaultTab) = prefs.edit().putInt(DEFAULT_TAB, defaultTab).apply() } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt index c0574eb8a..66079c1d7 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt @@ -133,6 +133,7 @@ const val LAST_EXPORTED_SETTINGS_FOLDER = "last_exported_settings_folder" const val LAST_EXPORTED_SETTINGS_FILE = "last_exported_settings_file" const val FONT_SIZE = "font_size" const val WAS_MESSENGER_RECORDER_SHOWN = "was_messenger_recorder_shown" +const val DEFAULT_TAB = "default_tab" // licenses internal const val LICENSE_KOTLIN = 1 @@ -252,6 +253,13 @@ const val SIDELOADING_UNCHECKED = 0 const val SIDELOADING_TRUE = 1 const val SIDELOADING_FALSE = 2 +// default tabs +const val TAB_LAST_USED = 0 +const val TAB_CONTACTS = 1 +const val TAB_FAVORITES = 2 +const val TAB_CALL_HISTORY = 4 +const val TAB_GROUPS = 8 + val photoExtensions: Array get() = arrayOf(".jpg", ".png", ".jpeg", ".bmp", ".webp", ".heic", ".heif") val videoExtensions: Array get() = arrayOf(".mp4", ".mkv", ".webm", ".avi", ".3gp", ".mov", ".m4v", ".3gpp") val audioExtensions: Array get() = arrayOf(".mp3", ".wav", ".wma", ".ogg", ".m4a", ".opus", ".flac", ".aac") diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/MyContactsContentProvider.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/MyContactsContentProvider.kt new file mode 100644 index 000000000..b83969f23 --- /dev/null +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/MyContactsContentProvider.kt @@ -0,0 +1,48 @@ +package com.simplemobiletools.commons.helpers + +import android.content.Context +import android.database.Cursor +import android.net.Uri +import com.simplemobiletools.commons.extensions.getIntValue +import com.simplemobiletools.commons.extensions.getStringValue +import com.simplemobiletools.commons.models.SimpleContact + +// used for sharing privately stored contacts in Simple Contacts with Simple Dialer and Simple SMS Messenger +class MyContactsContentProvider { + companion object { + private const val AUTHORITY = "com.simplemobiletools.commons.contactsprovider" + val CONTACTS_CONTENT_URI = Uri.parse("content://$AUTHORITY/contacts") + + const val COL_RAW_ID = "raw_id" + const val COL_CONTACT_ID = "contact_id" + const val COL_NAME = "name" + const val COL_PHOTO_URI = "photo_uri" + const val COL_PHONE_NUMBER = "phone_number" + + fun getSimpleContacts(context: Context, cursor: Cursor?): ArrayList { + val contacts = ArrayList() + val packageName = context.packageName.removeSuffix(".debug") + if (packageName != "com.simplemobiletools.dialer" && packageName != "com.simplemobiletools.smsmessenger") { + return contacts + } + + try { + cursor?.use { + if (cursor.moveToFirst()) { + do { + val rawId = cursor.getIntValue(COL_RAW_ID) + val contactId = cursor.getIntValue(COL_CONTACT_ID) + val name = cursor.getStringValue(COL_NAME) + val photoUri = cursor.getStringValue(COL_PHOTO_URI) + val phoneNumber = cursor.getStringValue(COL_PHONE_NUMBER) + val contact = SimpleContact(rawId, contactId, name, photoUri, phoneNumber) + contacts.add(contact) + } while (cursor.moveToNext()) + } + } + } catch (ignored: Exception) { + } + return contacts + } + } +} diff --git a/commons/src/main/res/drawable/ic_dialpad_vector.xml b/commons/src/main/res/drawable/ic_dialpad_vector.xml new file mode 100644 index 000000000..bc0a1cd42 --- /dev/null +++ b/commons/src/main/res/drawable/ic_dialpad_vector.xml @@ -0,0 +1,9 @@ + + + diff --git a/commons/src/main/res/layout/dialog_new_apps_icons.xml b/commons/src/main/res/layout/dialog_new_apps_icons.xml index 13112df22..e2efcae10 100644 --- a/commons/src/main/res/layout/dialog_new_apps_icons.xml +++ b/commons/src/main/res/layout/dialog_new_apps_icons.xml @@ -21,7 +21,8 @@ android:layout_below="@+id/new_apps_text" android:layout_marginStart="@dimen/activity_margin" android:layout_marginTop="@dimen/activity_margin" - android:src="@drawable/ic_dialer" /> + android:background="?attr/selectableItemBackgroundBorderless" + android:src="@mipmap/ic_dialer" /> + android:background="?attr/selectableItemBackgroundBorderless" + android:src="@mipmap/ic_sms_messenger" /> + android:background="?attr/selectableItemBackgroundBorderless" + android:src="@mipmap/ic_voice_recorder" /> diff --git a/commons/src/main/res/mipmap-hdpi/ic_app_launcher.png b/commons/src/main/res/mipmap-hdpi/ic_app_launcher.png new file mode 100644 index 000000000..e9ce6aea6 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_app_launcher.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_calculator.png b/commons/src/main/res/mipmap-hdpi/ic_calculator.png new file mode 100644 index 000000000..4c951ca46 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_calculator.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_calendar.png b/commons/src/main/res/mipmap-hdpi/ic_calendar.png new file mode 100644 index 000000000..221cdf24d Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_calendar.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_camera.png b/commons/src/main/res/mipmap-hdpi/ic_camera.png new file mode 100644 index 000000000..63732e1c9 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_camera.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_clock.png b/commons/src/main/res/mipmap-hdpi/ic_clock.png new file mode 100644 index 000000000..f3d10971f Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_clock.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_contacts.png b/commons/src/main/res/mipmap-hdpi/ic_contacts.png new file mode 100644 index 000000000..e87988f8f Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_contacts.png differ diff --git a/commons/src/main/res/drawable-hdpi/ic_dialer.png b/commons/src/main/res/mipmap-hdpi/ic_dialer.png similarity index 100% rename from commons/src/main/res/drawable-hdpi/ic_dialer.png rename to commons/src/main/res/mipmap-hdpi/ic_dialer.png diff --git a/commons/src/main/res/mipmap-hdpi/ic_draw.png b/commons/src/main/res/mipmap-hdpi/ic_draw.png new file mode 100644 index 000000000..ff4e45401 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_draw.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_file_manager.png b/commons/src/main/res/mipmap-hdpi/ic_file_manager.png new file mode 100644 index 000000000..156306445 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_file_manager.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_flashlight.png b/commons/src/main/res/mipmap-hdpi/ic_flashlight.png new file mode 100644 index 000000000..690396aa5 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_flashlight.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_gallery.png b/commons/src/main/res/mipmap-hdpi/ic_gallery.png new file mode 100644 index 000000000..88e7928d9 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_gallery.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_music_player.png b/commons/src/main/res/mipmap-hdpi/ic_music_player.png new file mode 100644 index 000000000..7ec8bca67 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_music_player.png differ diff --git a/commons/src/main/res/mipmap-hdpi/ic_notes.png b/commons/src/main/res/mipmap-hdpi/ic_notes.png new file mode 100644 index 000000000..b1d720145 Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_notes.png differ diff --git a/commons/src/main/res/drawable-hdpi/ic_sms_messenger.png b/commons/src/main/res/mipmap-hdpi/ic_sms_messenger.png similarity index 100% rename from commons/src/main/res/drawable-hdpi/ic_sms_messenger.png rename to commons/src/main/res/mipmap-hdpi/ic_sms_messenger.png diff --git a/commons/src/main/res/mipmap-hdpi/ic_thank_you.png b/commons/src/main/res/mipmap-hdpi/ic_thank_you.png new file mode 100644 index 000000000..ba91d016e Binary files /dev/null and b/commons/src/main/res/mipmap-hdpi/ic_thank_you.png differ diff --git a/commons/src/main/res/drawable-hdpi/ic_voice_recorder.png b/commons/src/main/res/mipmap-hdpi/ic_voice_recorder.png similarity index 100% rename from commons/src/main/res/drawable-hdpi/ic_voice_recorder.png rename to commons/src/main/res/mipmap-hdpi/ic_voice_recorder.png diff --git a/commons/src/main/res/mipmap-xhdpi/ic_app_launcher.png b/commons/src/main/res/mipmap-xhdpi/ic_app_launcher.png new file mode 100644 index 000000000..6548663ee Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_app_launcher.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_calculator.png b/commons/src/main/res/mipmap-xhdpi/ic_calculator.png new file mode 100644 index 000000000..8e9ab20d8 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_calculator.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_calendar.png b/commons/src/main/res/mipmap-xhdpi/ic_calendar.png new file mode 100644 index 000000000..7b92a5cfd Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_calendar.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_camera.png b/commons/src/main/res/mipmap-xhdpi/ic_camera.png new file mode 100644 index 000000000..d26657fc1 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_camera.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_clock.png b/commons/src/main/res/mipmap-xhdpi/ic_clock.png new file mode 100644 index 000000000..6e55f1d90 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_clock.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_contacts.png b/commons/src/main/res/mipmap-xhdpi/ic_contacts.png new file mode 100644 index 000000000..d769d163a Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_contacts.png differ diff --git a/commons/src/main/res/drawable-xhdpi/ic_dialer.png b/commons/src/main/res/mipmap-xhdpi/ic_dialer.png similarity index 100% rename from commons/src/main/res/drawable-xhdpi/ic_dialer.png rename to commons/src/main/res/mipmap-xhdpi/ic_dialer.png diff --git a/commons/src/main/res/mipmap-xhdpi/ic_draw.png b/commons/src/main/res/mipmap-xhdpi/ic_draw.png new file mode 100644 index 000000000..910ee1e04 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_draw.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_file_manager.png b/commons/src/main/res/mipmap-xhdpi/ic_file_manager.png new file mode 100644 index 000000000..0af01b3ff Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_file_manager.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_flashlight.png b/commons/src/main/res/mipmap-xhdpi/ic_flashlight.png new file mode 100644 index 000000000..c535a5d7a Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_flashlight.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_gallery.png b/commons/src/main/res/mipmap-xhdpi/ic_gallery.png new file mode 100644 index 000000000..f645b6dae Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_gallery.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_music_player.png b/commons/src/main/res/mipmap-xhdpi/ic_music_player.png new file mode 100644 index 000000000..97cf63471 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_music_player.png differ diff --git a/commons/src/main/res/mipmap-xhdpi/ic_notes.png b/commons/src/main/res/mipmap-xhdpi/ic_notes.png new file mode 100644 index 000000000..033d7f556 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_notes.png differ diff --git a/commons/src/main/res/drawable-xhdpi/ic_sms_messenger.png b/commons/src/main/res/mipmap-xhdpi/ic_sms_messenger.png similarity index 100% rename from commons/src/main/res/drawable-xhdpi/ic_sms_messenger.png rename to commons/src/main/res/mipmap-xhdpi/ic_sms_messenger.png diff --git a/commons/src/main/res/mipmap-xhdpi/ic_thank_you.png b/commons/src/main/res/mipmap-xhdpi/ic_thank_you.png new file mode 100644 index 000000000..f6f223ff7 Binary files /dev/null and b/commons/src/main/res/mipmap-xhdpi/ic_thank_you.png differ diff --git a/commons/src/main/res/drawable-xhdpi/ic_voice_recorder.png b/commons/src/main/res/mipmap-xhdpi/ic_voice_recorder.png similarity index 100% rename from commons/src/main/res/drawable-xhdpi/ic_voice_recorder.png rename to commons/src/main/res/mipmap-xhdpi/ic_voice_recorder.png diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_app_launcher.png b/commons/src/main/res/mipmap-xxhdpi/ic_app_launcher.png new file mode 100644 index 000000000..a06b3b5df Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_app_launcher.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_calculator.png b/commons/src/main/res/mipmap-xxhdpi/ic_calculator.png new file mode 100644 index 000000000..280670e47 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_calculator.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_calendar.png b/commons/src/main/res/mipmap-xxhdpi/ic_calendar.png new file mode 100644 index 000000000..4bf6edada Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_calendar.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_camera.png b/commons/src/main/res/mipmap-xxhdpi/ic_camera.png new file mode 100644 index 000000000..855d766a8 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_camera.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_clock.png b/commons/src/main/res/mipmap-xxhdpi/ic_clock.png new file mode 100644 index 000000000..b41bdd8dd Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_clock.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_contacts.png b/commons/src/main/res/mipmap-xxhdpi/ic_contacts.png new file mode 100644 index 000000000..5e8ba6fe2 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_contacts.png differ diff --git a/commons/src/main/res/drawable-xxhdpi/ic_dialer.png b/commons/src/main/res/mipmap-xxhdpi/ic_dialer.png similarity index 100% rename from commons/src/main/res/drawable-xxhdpi/ic_dialer.png rename to commons/src/main/res/mipmap-xxhdpi/ic_dialer.png diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_draw.png b/commons/src/main/res/mipmap-xxhdpi/ic_draw.png new file mode 100644 index 000000000..f223ef0b3 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_draw.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_file_manager.png b/commons/src/main/res/mipmap-xxhdpi/ic_file_manager.png new file mode 100644 index 000000000..e6942e909 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_file_manager.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_flashlight.png b/commons/src/main/res/mipmap-xxhdpi/ic_flashlight.png new file mode 100644 index 000000000..320ccb1ec Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_flashlight.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_gallery.png b/commons/src/main/res/mipmap-xxhdpi/ic_gallery.png new file mode 100644 index 000000000..3151de093 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_gallery.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_music_player.png b/commons/src/main/res/mipmap-xxhdpi/ic_music_player.png new file mode 100644 index 000000000..39ff7e32f Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_music_player.png differ diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_notes.png b/commons/src/main/res/mipmap-xxhdpi/ic_notes.png new file mode 100644 index 000000000..771a4ade5 Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_notes.png differ diff --git a/commons/src/main/res/drawable-xxhdpi/ic_sms_messenger.png b/commons/src/main/res/mipmap-xxhdpi/ic_sms_messenger.png similarity index 100% rename from commons/src/main/res/drawable-xxhdpi/ic_sms_messenger.png rename to commons/src/main/res/mipmap-xxhdpi/ic_sms_messenger.png diff --git a/commons/src/main/res/mipmap-xxhdpi/ic_thank_you.png b/commons/src/main/res/mipmap-xxhdpi/ic_thank_you.png new file mode 100644 index 000000000..e326c59de Binary files /dev/null and b/commons/src/main/res/mipmap-xxhdpi/ic_thank_you.png differ diff --git a/commons/src/main/res/drawable-xxhdpi/ic_voice_recorder.png b/commons/src/main/res/mipmap-xxhdpi/ic_voice_recorder.png similarity index 100% rename from commons/src/main/res/drawable-xxhdpi/ic_voice_recorder.png rename to commons/src/main/res/mipmap-xxhdpi/ic_voice_recorder.png diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_app_launcher.png b/commons/src/main/res/mipmap-xxxhdpi/ic_app_launcher.png new file mode 100644 index 000000000..cf5677bb6 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_app_launcher.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_calculator.png b/commons/src/main/res/mipmap-xxxhdpi/ic_calculator.png new file mode 100644 index 000000000..38b1aadaf Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_calculator.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_calendar.png b/commons/src/main/res/mipmap-xxxhdpi/ic_calendar.png new file mode 100644 index 000000000..10d722b8a Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_calendar.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_camera.png b/commons/src/main/res/mipmap-xxxhdpi/ic_camera.png new file mode 100644 index 000000000..5fe2ef756 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_camera.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_clock.png b/commons/src/main/res/mipmap-xxxhdpi/ic_clock.png new file mode 100644 index 000000000..172690ffe Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_clock.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_contacts.png b/commons/src/main/res/mipmap-xxxhdpi/ic_contacts.png new file mode 100644 index 000000000..2d1e3fa05 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_contacts.png differ diff --git a/commons/src/main/res/drawable-xxxhdpi/ic_dialer.png b/commons/src/main/res/mipmap-xxxhdpi/ic_dialer.png similarity index 100% rename from commons/src/main/res/drawable-xxxhdpi/ic_dialer.png rename to commons/src/main/res/mipmap-xxxhdpi/ic_dialer.png diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_draw.png b/commons/src/main/res/mipmap-xxxhdpi/ic_draw.png new file mode 100644 index 000000000..18021b4fd Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_draw.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_file_manager.png b/commons/src/main/res/mipmap-xxxhdpi/ic_file_manager.png new file mode 100644 index 000000000..3c3c215e0 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_file_manager.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_flashlight.png b/commons/src/main/res/mipmap-xxxhdpi/ic_flashlight.png new file mode 100644 index 000000000..2111dbbad Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_flashlight.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_gallery.png b/commons/src/main/res/mipmap-xxxhdpi/ic_gallery.png new file mode 100644 index 000000000..516d12f56 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_gallery.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_music_player.png b/commons/src/main/res/mipmap-xxxhdpi/ic_music_player.png new file mode 100644 index 000000000..bdd39c773 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_music_player.png differ diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_notes.png b/commons/src/main/res/mipmap-xxxhdpi/ic_notes.png new file mode 100644 index 000000000..1109ea954 Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_notes.png differ diff --git a/commons/src/main/res/drawable-xxxhdpi/ic_sms_messenger.png b/commons/src/main/res/mipmap-xxxhdpi/ic_sms_messenger.png similarity index 100% rename from commons/src/main/res/drawable-xxxhdpi/ic_sms_messenger.png rename to commons/src/main/res/mipmap-xxxhdpi/ic_sms_messenger.png diff --git a/commons/src/main/res/mipmap-xxxhdpi/ic_thank_you.png b/commons/src/main/res/mipmap-xxxhdpi/ic_thank_you.png new file mode 100644 index 000000000..e4300655d Binary files /dev/null and b/commons/src/main/res/mipmap-xxxhdpi/ic_thank_you.png differ diff --git a/commons/src/main/res/drawable-xxxhdpi/ic_voice_recorder.png b/commons/src/main/res/mipmap-xxxhdpi/ic_voice_recorder.png similarity index 100% rename from commons/src/main/res/drawable-xxxhdpi/ic_voice_recorder.png rename to commons/src/main/res/mipmap-xxxhdpi/ic_voice_recorder.png diff --git a/commons/src/main/res/values-ar/strings.xml b/commons/src/main/res/values-ar/strings.xml index f5b500c72..adcfefba0 100644 --- a/commons/src/main/res/values-ar/strings.xml +++ b/commons/src/main/res/values-ar/strings.xml @@ -506,6 +506,14 @@ النص إعدادات التصدير / الإستيراد + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + إستعادة هذا الملف إستعادة الملفات المحددة @@ -652,6 +660,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + الحاسبة + التقويم + الكاميرا + الساعة + جهات الإتصال + Dialer + الرسام + مدير الملفات + المصباح + الاستديو + مشغل الموسيقى + الملاحظات + SMS Messenger + Thank You + Voice Recorder + من هنا. diff --git a/commons/src/main/res/values-az/strings.xml b/commons/src/main/res/values-az/strings.xml index 87be25e7d..b4013ae87 100644 --- a/commons/src/main/res/values-az/strings.xml +++ b/commons/src/main/res/values-az/strings.xml @@ -508,6 +508,14 @@ Mətn Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Bu faylı geri qaytar Bu faylları geri qaytar @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Kalkulyator + Təqvim + Kamera + Saat + Kontaktlar + Dialer + Çək + Fayl Meneceri + Fənər + Qalereya + Musiqi Çalar + Qeydlər + SMS Messenger + Təşəkkürlər + Voice Recorder + here. diff --git a/commons/src/main/res/values-br/strings.xml b/commons/src/main/res/values-br/strings.xml index af66fa6fc..4b33f3910 100644 --- a/commons/src/main/res/values-br/strings.xml +++ b/commons/src/main/res/values-br/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-ca/strings.xml b/commons/src/main/res/values-ca/strings.xml index f4bd05dab..e1dfe0d14 100644 --- a/commons/src/main/res/values-ca/strings.xml +++ b/commons/src/main/res/values-ca/strings.xml @@ -508,6 +508,14 @@ Text Migrant + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restaura aquest fitxer Restaura els fitxers seleccionats @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + aquí. diff --git a/commons/src/main/res/values-cs/strings.xml b/commons/src/main/res/values-cs/strings.xml index 5bd962b02..bbc45c46a 100644 --- a/commons/src/main/res/values-cs/strings.xml +++ b/commons/src/main/res/values-cs/strings.xml @@ -541,6 +541,14 @@ Text Migrace + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Obnovit tento soubor Obnovit vybrané soubory @@ -688,6 +696,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Kalkulačka + Kalendář + Fotoaparát + Hodiny + Kontakty + Dialer + Kreslení + Správce souborů + Svítilna + Galerie + Hudební přehrávač + Poznámky + SMS Messenger + Děkuji + Voice Recorder + zde. diff --git a/commons/src/main/res/values-cy/strings.xml b/commons/src/main/res/values-cy/strings.xml index b19e3fdbb..79318e381 100644 --- a/commons/src/main/res/values-cy/strings.xml +++ b/commons/src/main/res/values-cy/strings.xml @@ -632,6 +632,14 @@ Testun Mudo + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Adfer y ffeil hon Adfer y ffeiliau a ddewiswyd @@ -778,6 +786,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + yma. diff --git a/commons/src/main/res/values-da/strings.xml b/commons/src/main/res/values-da/strings.xml index 7b0c3c35e..e6da97a88 100644 --- a/commons/src/main/res/values-da/strings.xml +++ b/commons/src/main/res/values-da/strings.xml @@ -508,6 +508,14 @@ Tekst Migrerer + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Gendan denne fil Gendan valgte filer @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + Download den originale version her. diff --git a/commons/src/main/res/values-de/strings.xml b/commons/src/main/res/values-de/strings.xml index 03ef6c2ca..248c5f7f2 100644 --- a/commons/src/main/res/values-de/strings.xml +++ b/commons/src/main/res/values-de/strings.xml @@ -33,7 +33,7 @@ Keine Kontakte gefunden Benötigte Berechtigungen anfordern Die App kann nicht auf deine Kontakte zugreifen - Insert text here + Text hier einfügen Blockierte Nummern verwalten @@ -258,7 +258,7 @@ Wiederholen Drucken Verknüpfung erstellen - Add number to contact + füge Nummer zu Kontakt hinzu Sortieren nach @@ -508,6 +508,14 @@ Text Migrieren + + Tab welcher beim App Start angezeigt wird + Kontakte + Favoriten + Anrufliste + Groups + zuletzt verwendeter Tab + Diese Datei wiederherstellen Markierte Dateien wiederherstellen @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Rechner + Kalender + Kamera + Uhr + Kontakte + Dialer + Zeichenblock + Dateimanager + Taschenlampe + Galerie + Musik-Player + Notizblock + SMS Messenger + Dankeschön + Voice Recorder + hier herunter. diff --git a/commons/src/main/res/values-el/strings.xml b/commons/src/main/res/values-el/strings.xml index de8c6af33..32e5fe60e 100644 --- a/commons/src/main/res/values-el/strings.xml +++ b/commons/src/main/res/values-el/strings.xml @@ -508,6 +508,14 @@ Κείμενο Μετεγκατάσταση + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Επαναφορά αυτού του αρχείου Επαναφορά επιλεγμένων αρχείων @@ -654,6 +662,40 @@ ]]> + Απλός Εκκινητής + Απλή Αριθμομηχανή + Απλό Ημερολόγιο + Απλή Κάμερα + Απλό Ρολόι + Απλές Επαφές + Απλή Κλήση + Απλή Ζωγραφική + Απλός Διαχειριστής Αρχείων + Απλός Φακός + Απλή Συλλογή + Απλός Music Player + Απλές Σημειώσεις + Απλός SMS Messenger + Απλά Σας ευχαριστούμε + Απλή Εγγραφή Φωνής + + App Launcher + Αριθμομηχανή + Ημερολόγιο + Κάμερα + Ρολόι + Επαφές + Dialer + Ζωγραφική + Αρχεία + Φακός + Συλλογή + Μουσική + Σημειώσεις + SMS Messenger + Σας ευχαριστώ + Voice Recorder + εδώ. diff --git a/commons/src/main/res/values-es/strings.xml b/commons/src/main/res/values-es/strings.xml index 4ff560249..ca2cac382 100644 --- a/commons/src/main/res/values-es/strings.xml +++ b/commons/src/main/res/values-es/strings.xml @@ -508,6 +508,14 @@ Texto Migrando + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restaurar el fichero Restaurar los ficheros seleccionados @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculadora + Calendario + Cámara + Reloj + Contactos + Dialer + Dibujo + Administrador de archivos + Linterna + Galería + Reproductor de música + Notas + SMS Messenger + Thank You + Voice Recorder + aquí. diff --git a/commons/src/main/res/values-fi/strings.xml b/commons/src/main/res/values-fi/strings.xml index 3eaccf6f8..547c5f177 100644 --- a/commons/src/main/res/values-fi/strings.xml +++ b/commons/src/main/res/values-fi/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-fr/strings.xml b/commons/src/main/res/values-fr/strings.xml index 33ffef41c..5b017567c 100644 --- a/commons/src/main/res/values-fr/strings.xml +++ b/commons/src/main/res/values-fr/strings.xml @@ -510,6 +510,14 @@ Texte Migration + + Onglet à ouvrir au démarrage de l\'application + Contacts + Favoris + Historique d\'appels + Groupes + Le dernier ouvert + Restaurer ce fichier Restaurer les fichiers sélectionnés @@ -656,6 +664,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculatrice + Calendrier + Caméra + Horloge + Contacts + Dialer + Dessiner + Gestionnaire de Fichiers + Lampe de Poche + Galerie + Lecteur de Musique + Notes + SMS Messenger + Merci + Voice Recorder + ici. diff --git a/commons/src/main/res/values-gl/strings.xml b/commons/src/main/res/values-gl/strings.xml index 24580b104..3a4402b08 100644 --- a/commons/src/main/res/values-gl/strings.xml +++ b/commons/src/main/res/values-gl/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-hi-rIN/strings.xml b/commons/src/main/res/values-hi-rIN/strings.xml index 017aca5da..5f4e09f19 100644 --- a/commons/src/main/res/values-hi-rIN/strings.xml +++ b/commons/src/main/res/values-hi-rIN/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-hr/strings.xml b/commons/src/main/res/values-hr/strings.xml index d89368fa1..79a913cdc 100644 --- a/commons/src/main/res/values-hr/strings.xml +++ b/commons/src/main/res/values-hr/strings.xml @@ -539,6 +539,14 @@ Tekst Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Vrati ovu datoteku Vrati odabrane datoteke @@ -685,6 +693,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Kalkulator + Kalendar + Kamera + Sat + Kontakti + Dialer + Crtaj + Upravitelj datoteka + Bljeskalica + Galerija + Glazbeni svirač + Bilješke + SMS Messenger + Hvala Vam + Voice Recorder + here. diff --git a/commons/src/main/res/values-hu/strings.xml b/commons/src/main/res/values-hu/strings.xml index 49e8897c9..3edc3c354 100644 --- a/commons/src/main/res/values-hu/strings.xml +++ b/commons/src/main/res/values-hu/strings.xml @@ -507,6 +507,14 @@ Szöveg Áttelepítés + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Fájl visszaállítása Kiválasztott fájl visszaállítása @@ -653,6 +661,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + innen. diff --git a/commons/src/main/res/values-id/strings.xml b/commons/src/main/res/values-id/strings.xml index 728b01cf4..eefb3f448 100644 --- a/commons/src/main/res/values-id/strings.xml +++ b/commons/src/main/res/values-id/strings.xml @@ -476,6 +476,14 @@ Teks Memindahkan + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Pulihkan berkas ini Pulihkan berkas yang dipilih @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + di sini. diff --git a/commons/src/main/res/values-in/strings.xml b/commons/src/main/res/values-in/strings.xml index 728b01cf4..eefb3f448 100644 --- a/commons/src/main/res/values-in/strings.xml +++ b/commons/src/main/res/values-in/strings.xml @@ -476,6 +476,14 @@ Teks Memindahkan + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Pulihkan berkas ini Pulihkan berkas yang dipilih @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + di sini. diff --git a/commons/src/main/res/values-it/strings.xml b/commons/src/main/res/values-it/strings.xml index 049b58f1b..536e03dfc 100644 --- a/commons/src/main/res/values-it/strings.xml +++ b/commons/src/main/res/values-it/strings.xml @@ -508,6 +508,14 @@ Testo Migrazione + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Ripristina questo file Ripristina file selezionati @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calcolatrice + Calendario + Fotocamera + Orologio + Contatti + Dialer + Disegna + Gestore dei file + Torcia + Galleria + Riproduttore musicale + Note + SMS Messenger + Ringraziamento + Voice Recorder + qui. diff --git a/commons/src/main/res/values-iw/strings.xml b/commons/src/main/res/values-iw/strings.xml index eea48ff83..e866e8d2c 100644 --- a/commons/src/main/res/values-iw/strings.xml +++ b/commons/src/main/res/values-iw/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-ja/strings.xml b/commons/src/main/res/values-ja/strings.xml index bb8df29b2..9c5d048b0 100644 --- a/commons/src/main/res/values-ja/strings.xml +++ b/commons/src/main/res/values-ja/strings.xml @@ -476,6 +476,14 @@ Text 移行中 + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + このファイルを復元 選択したファイルを復元 @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + 電卓 + カレンダー + カメラ + 時計 + 連絡先 + Dialer + ドロー + ファイルマネージャー + フラッシュライト + ギャラリー + ミュージックプレイヤー + メモ + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-ko-rKR/strings.xml b/commons/src/main/res/values-ko-rKR/strings.xml index 8d8822f45..97e3643bb 100644 --- a/commons/src/main/res/values-ko-rKR/strings.xml +++ b/commons/src/main/res/values-ko-rKR/strings.xml @@ -474,6 +474,14 @@ 텍스트 옮기기 + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + 이 파일 복원하기 선택한 파일 복원하기 @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-lt/strings.xml b/commons/src/main/res/values-lt/strings.xml index f9abc4d5a..cdfb64c59 100644 --- a/commons/src/main/res/values-lt/strings.xml +++ b/commons/src/main/res/values-lt/strings.xml @@ -532,6 +532,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -678,6 +686,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Skaičiuotuvas + Kalendorius + Fotoaparatas + Laikrodis + Kontaktai + Dialer + Piešimas + Bylų tvarkyklė + Žibintuvėlis + Galerija + Muzikos grotuvas + Užrašai + SMS Messenger + Ačiū + Voice Recorder + here. diff --git a/commons/src/main/res/values-nb/strings.xml b/commons/src/main/res/values-nb/strings.xml index c68e331c2..92b40d6a4 100644 --- a/commons/src/main/res/values-nb/strings.xml +++ b/commons/src/main/res/values-nb/strings.xml @@ -508,6 +508,14 @@ Text Overføring + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Gjenopprett denne filen Gjenopprett valgte filer @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-nl/strings.xml b/commons/src/main/res/values-nl/strings.xml index fcacafe2d..74451992f 100644 --- a/commons/src/main/res/values-nl/strings.xml +++ b/commons/src/main/res/values-nl/strings.xml @@ -222,7 +222,7 @@ Kleuren gewijzigd. Gebruik het nieuwe thema \'Gedeeld\' om de kleuren voor al onze apps aan te passen. Simple Thank You aanschaffen. Alvast bedankt! + Om deze functie te gebruiken en om verdere ontwikkeling te ondersteunen kunt u Eenvoudig Bedankje aanschaffen. Alvast bedankt! ]]> @@ -463,7 +463,7 @@ Instellingen - Simple Thank You kopen + Eenvoudig Bedankje kopen Kleuren aanpassen Kleuren voor widget aanpassen Use English language @@ -508,6 +508,14 @@ Tekst Migreren + + Tab openen bij opstarten + Contacten + Favorieten + Oproepgeschiedenis + Groepen + Laatst gebruikt + Bestand herstellen Selectie herstellen @@ -626,12 +634,12 @@
- Hopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app Simple Thank You aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.

+ Hopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app Eenvoudig Bedankje aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.

Dank u wel! ]]>
Kopen - Er is een nieuwe versie van Simple Thank You + Er is een nieuwe versie van Eenvoudig Bedankje Controleer bij problemen eerst de instellingen van de app en neem de Veelgestelde vragen door. Wellicht is de oplossing daar reeds te vinden. Neem de Veelgestelde vragen en de instellingen van de app even door voordat u ons een beoordeling geeft. Wellicht is de oplossing daar reeds te vinden. Zorg er ook voor dat de laatste versie van de app is geïnstalleerd. @@ -645,7 +653,7 @@
- Er is recentelijk een nieuwe app uitgebracht:

+ Er zijn recentelijk nieuwe apps uitgebracht:

%2$s

%4$s

%6$s

@@ -654,6 +662,40 @@ ]]>
+ Eenvoudige App Launcher + Eenvoudige Rekenmachine + Eenvoudige Agenda + Eenvoudige Camera + Eenvoudige Klok + Eenvoudig Adresboek + Eenvoudige Telefoon + Eenvoudig Tekenen + Eenvoudig Bestandsbeheer + Eenvoudige Zaklamp + Eenvoudige Galerij + Eenvoudige Muziekspeler + Eenvoudige Notities + Eenvoudig Berichtenbeheer (SMS) + Eenvoudig Bedankje + Eenvoudige Voicerecorder + + App Launcher + Rekenmachine + Agenda + Camera + Klok + Contacten + Telefoon + Tekenen + Bestandsbeheer + Zaklamp + Galerij + Muziek + Notities + Berichten + Bedankt! + Voicerecorder + hier. diff --git a/commons/src/main/res/values-no/strings.xml b/commons/src/main/res/values-no/strings.xml index a2ca94155..0b73cd0b6 100644 --- a/commons/src/main/res/values-no/strings.xml +++ b/commons/src/main/res/values-no/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-pl/strings.xml b/commons/src/main/res/values-pl/strings.xml index 06d8a354d..028dbe4d7 100644 --- a/commons/src/main/res/values-pl/strings.xml +++ b/commons/src/main/res/values-pl/strings.xml @@ -536,6 +536,14 @@ Tekst Migracja + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Przywróć ten plik Przywróć wybrane pliki @@ -683,6 +691,40 @@        ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Kalkulator + Kalendarz + Aparat + Clock + Contacts + Dialer + Szkicownik + Menedżer Plików + Latarka + Galeria + Odtwarzacz Muzyki + Notatki + SMS Messenger + Thank You + Voice Recorder + stąd oryginalną wersję. diff --git a/commons/src/main/res/values-pt-rBR/strings.xml b/commons/src/main/res/values-pt-rBR/strings.xml index d1e054045..082392549 100644 --- a/commons/src/main/res/values-pt-rBR/strings.xml +++ b/commons/src/main/res/values-pt-rBR/strings.xml @@ -508,6 +508,14 @@ Texto Migrando + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restaurar este arquivo Restaurar os arquivos selecionados @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculadora + Calendário + Câmara + Relógio + Contactos + Dialer + Desenho + Gestor de ficheiros + Lanterna + Galeria + Reprodutor de músicas + Notas + SMS Messenger + Thank You + Voice Recorder + aqui. diff --git a/commons/src/main/res/values-pt/strings.xml b/commons/src/main/res/values-pt/strings.xml index 1c89aa390..abbc59b58 100644 --- a/commons/src/main/res/values-pt/strings.xml +++ b/commons/src/main/res/values-pt/strings.xml @@ -508,6 +508,14 @@ Texto Migração + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restaurar este ficheiro Restaurar os ficheiros selecionados @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculadora + Calendário + Câmara + Relógio + Contactos + Dialer + Desenho + Gestor de ficheiros + Lanterna + Galeria + Reprodutor de músicas + Notas + SMS Messenger + Thank You + Voice Recorder + aqui. diff --git a/commons/src/main/res/values-ru/strings.xml b/commons/src/main/res/values-ru/strings.xml index a31f1891c..600bab4bd 100644 --- a/commons/src/main/res/values-ru/strings.xml +++ b/commons/src/main/res/values-ru/strings.xml @@ -541,6 +541,14 @@ Текст Перенос + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Восстановить этот файл Восстановить выбранные файлы @@ -688,6 +696,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Калькулятор + Календарь + Камера + Clock + Контакты + Dialer + Рисунки + Файловый менеджер + Фонарик + Галерея + Проигрыватель музыки + Заметки + SMS Messenger + Спасибо + Voice Recorder + отсюда. diff --git a/commons/src/main/res/values-sk/strings.xml b/commons/src/main/res/values-sk/strings.xml index b8ada14a6..bf5944b3e 100644 --- a/commons/src/main/res/values-sk/strings.xml +++ b/commons/src/main/res/values-sk/strings.xml @@ -541,6 +541,14 @@ Text Migrovanie + + Karta otvorená po spustení apky + Kontakty + Obľúbené + História volaní + Skupiny + Naposledy použitá + Obnoviť tento súbor Obnoviť vybrané súbory @@ -688,6 +696,40 @@ ]]> + Jednoduchý spúšťač aplikácií + Jednoduchá kalkulačka + Jednoduchý kalendár + Jednoduchý fotoaparát + Jednoduché hodinky + Jednoduché kontakty + Jednoduchý telefón + Jednoduché kreslenie + Jednoduchý správca súborov + Jednoduchá baterka + Jednoduchá galéria + Jednoduchý hudobný prehrávač + Jednoduché poznámky + Jednoduché SMS správy + Jednoduché ďakujem + Jednoduchý nahrávač zvuku + + Spúšťač aplikácií + Kalkulačka + Kalendár + Kamera + Hodinky + Kontakty + Telefón + Kreslenie + Správca súborov + Batéria + Galéria + Hudobný prehrávač + Poznámky + SMS správy + Ďakujem + Nahrávač zvuku + odtiaľ. diff --git a/commons/src/main/res/values-sl/strings.xml b/commons/src/main/res/values-sl/strings.xml index b7fbe4699..83a266dbe 100644 --- a/commons/src/main/res/values-sl/strings.xml +++ b/commons/src/main/res/values-sl/strings.xml @@ -571,6 +571,14 @@ Besedilo Migracija + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Obnovi to datoteko Obnovite izbrane datoteke @@ -719,6 +727,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + tukaj. diff --git a/commons/src/main/res/values-sr/strings.xml b/commons/src/main/res/values-sr/strings.xml index ea4d90146..e9b8921b0 100644 --- a/commons/src/main/res/values-sr/strings.xml +++ b/commons/src/main/res/values-sr/strings.xml @@ -507,6 +507,14 @@ Текст Селидба + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Поврати овај фајл Поврати изабране датотеке @@ -653,6 +661,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + овде. diff --git a/commons/src/main/res/values-sv/strings.xml b/commons/src/main/res/values-sv/strings.xml index 0a7a9a24f..c04ac6ed0 100644 --- a/commons/src/main/res/values-sv/strings.xml +++ b/commons/src/main/res/values-sv/strings.xml @@ -508,6 +508,14 @@ Text Migrering + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Återställ filen Återställ valda filer @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here. diff --git a/commons/src/main/res/values-tr/strings.xml b/commons/src/main/res/values-tr/strings.xml index 21e20181c..cca26481e 100644 --- a/commons/src/main/res/values-tr/strings.xml +++ b/commons/src/main/res/values-tr/strings.xml @@ -508,6 +508,14 @@ Metin Geçiş + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Bu dosyayı geri yükle Seçilen dosyaları geri yükle @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Hesap Makinesi + Takvim + Kamera + Saat + Kişiler + Dialer + Çizim + Dosya Yöneticisi + Fener + Galeri + Müzik Çalar + Notlar + SMS Messenger + Teşekkürler + Voice Recorder + buradan orijinal sürümünü indirin. diff --git a/commons/src/main/res/values-uk/strings.xml b/commons/src/main/res/values-uk/strings.xml index 89b9e5a35..4c76a07fb 100644 --- a/commons/src/main/res/values-uk/strings.xml +++ b/commons/src/main/res/values-uk/strings.xml @@ -508,6 +508,14 @@ Текст Перенесення + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Відновити цей файл Відновити обрані файли @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Калькулятор + Календар + Камера + Годинник + Контакти + Dialer + Малювання + Менеджер Файлів + Ліхтарик + Галерея + Музичний Програвач + Нотатник + SMS Messenger + Подяка + Voice Recorder + тут. diff --git a/commons/src/main/res/values-vi/strings.xml b/commons/src/main/res/values-vi/strings.xml index 6afc69f5c..2759bcb80 100644 --- a/commons/src/main/res/values-vi/strings.xml +++ b/commons/src/main/res/values-vi/strings.xml @@ -503,11 +503,19 @@ Cuộn Thao tác tập tin Thùng rác - Đang lưu... + Đang lưu… Mở đầu Văn bản Di chuyển + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Khôi phục tập tin này Khôi phục các tập tin đã chọn @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + tại đây. diff --git a/commons/src/main/res/values-zh-rCN/strings.xml b/commons/src/main/res/values-zh-rCN/strings.xml index d0be07fb4..3d9676444 100644 --- a/commons/src/main/res/values-zh-rCN/strings.xml +++ b/commons/src/main/res/values-zh-rCN/strings.xml @@ -476,6 +476,14 @@ 文本 转移 + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + 恢复此文件 恢复选中的文件 @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + 在此下载原版应用。 diff --git a/commons/src/main/res/values-zh-rTW/strings.xml b/commons/src/main/res/values-zh-rTW/strings.xml index f1ac3982b..1b74846f3 100644 --- a/commons/src/main/res/values-zh-rTW/strings.xml +++ b/commons/src/main/res/values-zh-rTW/strings.xml @@ -476,6 +476,14 @@ 文字 搬移 + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + 還原這個檔案 還原選擇的檔案 @@ -621,6 +629,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + 計算機 + 行事曆 + 相機 + 簡易時鐘 + 通訊錄 + Dialer + 繪圖 + 檔案管理器 + 手電筒 + 相簿 + 音樂播放器 + 筆記 + SMS Messenger + Thank You + Voice Recorder + 這裡 下載原始版本。 diff --git a/commons/src/main/res/values/strings.xml b/commons/src/main/res/values/strings.xml index 7a3b23057..1357e2b61 100644 --- a/commons/src/main/res/values/strings.xml +++ b/commons/src/main/res/values/strings.xml @@ -508,6 +508,14 @@ Text Migrating + + Tab to open at app start + Contacts + Favorites + Call History + Groups + Last used one + Restore this file Restore selected files @@ -654,6 +662,40 @@ ]]> + Simple App Launcher + Simple Calculator + Simple Calendar + Simple Camera + Simple Clock + Simple Contacts + Simple Dialer + Simple Draw + Simple File Manager + Simple Flashlight + Simple Gallery + Simple Music Player + Simple Notes + Simple SMS Messenger + Simple Thank You + Simple Voice Recorder + + App Launcher + Calculator + Calendar + Camera + Clock + Contacts + Dialer + Draw + File Manager + Flashlight + Gallery + Music Player + Notes + SMS Messenger + Thank You + Voice Recorder + here.