Merge pull request #84 from SimpleMobileTools/master

upd
This commit is contained in:
solokot 2020-05-27 17:24:29 +03:00 committed by GitHub
commit 504a91a8c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
115 changed files with 1801 additions and 38 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.28.3'
propVersionName = '5.28.23'
kotlin_version = '1.3.72'
}

View file

@ -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<BlockedNumber>(selectedKeys.size)
private fun deleteSelection() {
val deleteBlockedNumbers = ArrayList<BlockedNumber>(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()

View file

@ -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)

View file

@ -210,7 +210,7 @@ fun Activity.sharePathIntent(path: String, applicationId: String) {
}
}
fun Activity.sharePathsIntent(paths: ArrayList<String>, applicationId: String) {
fun Activity.sharePathsIntent(paths: List<String>, applicationId: String) {
ensureBackgroundThread {
if (paths.size == 1) {
sharePathIntent(paths.first(), applicationId)
@ -456,13 +456,13 @@ fun BaseSimpleActivity.checkWhatsNew(releases: List<Release>, currVersion: Int)
baseConfig.lastVersion = currVersion
}
fun BaseSimpleActivity.deleteFolders(folders: ArrayList<FileDirItem>, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
fun BaseSimpleActivity.deleteFolders(folders: List<FileDirItem>, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
ensureBackgroundThread {
deleteFoldersBg(folders, deleteMediaOnly, callback)
}
}
fun BaseSimpleActivity.deleteFoldersBg(folders: ArrayList<FileDirItem>, deleteMediaOnly: Boolean = true, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
fun BaseSimpleActivity.deleteFoldersBg(folders: List<FileDirItem>, 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<FileDirItem>, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
fun BaseSimpleActivity.deleteFiles(files: List<FileDirItem>, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
ensureBackgroundThread {
deleteFilesBg(files, allowDeleteFolder, callback)
}
}
fun BaseSimpleActivity.deleteFilesBg(files: ArrayList<FileDirItem>, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
fun BaseSimpleActivity.deleteFilesBg(files: List<FileDirItem>, 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<File>, callback: (() -> Unit)? = null) {
fun Activity.scanFilesRecursively(files: List<File>, callback: (() -> Unit)? = null) {
applicationContext.scanFilesRecursively(files, callback)
}
fun Activity.scanPathsRecursively(paths: ArrayList<String>, callback: (() -> Unit)? = null) {
fun Activity.scanPathsRecursively(paths: List<String>, callback: (() -> Unit)? = null) {
applicationContext.scanPathsRecursively(paths, callback)
}
fun Activity.rescanPaths(paths: ArrayList<String>, callback: (() -> Unit)? = null) {
fun Activity.rescanPaths(paths: List<String>, callback: (() -> Unit)? = null) {
applicationContext.rescanPaths(paths, callback)
}

View file

@ -243,7 +243,7 @@ fun Context.scanPathRecursively(path: String, callback: (() -> Unit)? = null) {
scanPathsRecursively(arrayListOf(path), callback)
}
fun Context.scanFilesRecursively(files: ArrayList<File>, callback: (() -> Unit)? = null) {
fun Context.scanFilesRecursively(files: List<File>, callback: (() -> Unit)? = null) {
val allPaths = ArrayList<String>()
for (file in files) {
allPaths.addAll(getPaths(file))
@ -251,7 +251,7 @@ fun Context.scanFilesRecursively(files: ArrayList<File>, callback: (() -> Unit)?
rescanPaths(allPaths, callback)
}
fun Context.scanPathsRecursively(paths: ArrayList<String>, callback: (() -> Unit)? = null) {
fun Context.scanPathsRecursively(paths: List<String>, callback: (() -> Unit)? = null) {
val allPaths = ArrayList<String>()
for (path in paths) {
allPaths.addAll(getPaths(File(path)))
@ -260,7 +260,7 @@ fun Context.scanPathsRecursively(paths: ArrayList<String>, callback: (() -> Unit
}
// avoid calling this multiple times in row, it can delete whole folder contents
fun Context.rescanPaths(paths: ArrayList<String>, callback: (() -> Unit)? = null) {
fun Context.rescanPaths(paths: List<String>, callback: (() -> Unit)? = null) {
if (paths.isEmpty()) {
callback?.invoke()
return

View file

@ -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<BlockedNumber> = getBlockedNumbers()): Boolean {
if (!isNougatPlus()) {
return false
}
val numberToCompare = number.trimToComparableNumber()
return blockedNumbers.map { it.numberToCompare }.contains(numberToCompare) || blockedNumbers.map { it.number }.contains(numberToCompare)
}

View file

@ -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()
}

View file

@ -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<String> get() = arrayOf(".jpg", ".png", ".jpeg", ".bmp", ".webp", ".heic", ".heif")
val videoExtensions: Array<String> get() = arrayOf(".mp4", ".mkv", ".webm", ".avi", ".3gp", ".mov", ".m4v", ".3gpp")
val audioExtensions: Array<String> get() = arrayOf(".mp3", ".wav", ".wma", ".ogg", ".m4a", ".opus", ".flac", ".aac")

View file

@ -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<SimpleContact> {
val contacts = ArrayList<SimpleContact>()
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
}
}
}

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M12,19c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM6,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,5c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,13c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM18,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,7c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,1c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z" />
</vector>

View file

@ -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" />
<ImageView
android:id="@+id/new_apps_sms_messenger"
@ -31,7 +32,8 @@
android:layout_marginStart="@dimen/activity_margin"
android:layout_marginTop="@dimen/activity_margin"
android:layout_toEndOf="@+id/new_apps_dialer"
android:src="@drawable/ic_sms_messenger" />
android:background="?attr/selectableItemBackgroundBorderless"
android:src="@mipmap/ic_sms_messenger" />
<ImageView
android:id="@+id/new_apps_voice_recorder"
@ -41,6 +43,7 @@
android:layout_marginStart="@dimen/activity_margin"
android:layout_marginTop="@dimen/activity_margin"
android:layout_toEndOf="@+id/new_apps_sms_messenger"
android:src="@drawable/ic_voice_recorder" />
android:background="?attr/selectableItemBackgroundBorderless"
android:src="@mipmap/ic_voice_recorder" />
</RelativeLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

View file

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View file

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View file

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -506,6 +506,14 @@
<string name="text">النص</string>
<string name="migrating"> إعدادات التصدير / الإستيراد</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">إستعادة هذا الملف</string>
<string name="restore_selected_files">إستعادة الملفات المحددة</string>
@ -652,6 +660,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">الحاسبة</string>
<string name="calendar_short">التقويم</string>
<string name="camera_short">الكاميرا</string>
<string name="clock_short">الساعة</string>
<string name="contacts_short">جهات الإتصال</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">الرسام</string>
<string name="file_manager_short">مدير الملفات</string>
<string name="flashlight_short">المصباح</string>
<string name="gallery_short">الاستديو</string>
<string name="music_player_short">مشغل الموسيقى</string>
<string name="notes_short">الملاحظات</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
يبدو أن إصدار التطبيق تالف. يرجى تنزيل الإصدار الأصلي<a href="%s">من هنا</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Mətn</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Bu faylı geri qaytar</string>
<string name="restore_selected_files">Bu faylları geri qaytar</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Kalkulyator</string>
<string name="calendar_short">Təqvim</string>
<string name="camera_short">Kamera</string>
<string name="clock_short">Saat</string>
<string name="contacts_short">Kontaktlar</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Çək</string>
<string name="file_manager_short">Fayl Meneceri</string>
<string name="flashlight_short">Fənər</string>
<string name="gallery_short">Qalereya</string>
<string name="music_player_short">Musiqi Çalar</string>
<string name="notes_short">Qeydlər</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Təşəkkürlər</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrant</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restaura aquest fitxer</string>
<string name="restore_selected_files">Restaura els fitxers seleccionats</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Sembla que la versió de l\'aplicació està danyada. Baixeu la versió original <a href="%s">aquí</a>.

View file

@ -541,6 +541,14 @@
<string name="text">Text</string>
<string name="migrating">Migrace</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Obnovit tento soubor</string>
<string name="restore_selected_files">Obnovit vybrané soubory</string>
@ -688,6 +696,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Kalkulačka</string>
<string name="calendar_short">Kalendář</string>
<string name="camera_short">Fotoaparát</string>
<string name="clock_short">Hodiny</string>
<string name="contacts_short">Kontakty</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Kreslení</string>
<string name="file_manager_short">Správce souborů</string>
<string name="flashlight_short">Svítilna</string>
<string name="gallery_short">Galerie</string>
<string name="music_player_short">Hudební přehrávač</string>
<string name="notes_short">Poznámky</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Děkuji</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Zdá se, že vaše verze aplikace je poškozená. Prosím stáhněte originální verzi <a href="%s">zde</a>.

View file

@ -632,6 +632,14 @@
<string name="text">Testun</string>
<string name="migrating">Mudo</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Adfer y ffeil hon</string>
<string name="restore_selected_files">Adfer y ffeiliau a ddewiswyd</string>
@ -778,6 +786,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Mae\'n ymddangos bod fersiwn dy ap yn llwgr. Lawrlwytha\'r fersiwn gwreiddiol <a href="%s">yma</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Tekst</string>
<string name="migrating">Migrerer</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Gendan denne fil</string>
<string name="restore_selected_files">Gendan valgte filer</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Det ser ud til at din app-version er beskadiget. <a href="%s">Download den originale version her</a>.

View file

@ -33,7 +33,7 @@
<string name="no_contacts_found">Keine Kontakte gefunden</string>
<string name="request_the_required_permissions">Benötigte Berechtigungen anfordern</string>
<string name="no_access_to_contacts">Die App kann nicht auf deine Kontakte zugreifen</string>
<string name="insert_text_here">Insert text here</string>
<string name="insert_text_here">Text hier einfügen</string>
<!-- Blocked numbers -->
<string name="manage_blocked_numbers">Blockierte Nummern verwalten</string>
@ -258,7 +258,7 @@
<string name="redo">Wiederholen</string>
<string name="print">Drucken</string>
<string name="create_shortcut">Verknüpfung erstellen</string>
<string name="add_number_to_contact">Add number to contact</string>
<string name="add_number_to_contact">füge Nummer zu Kontakt hinzu</string>
<!-- Sorting -->
<string name="sort_by">Sortieren nach</string>
@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrieren</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab welcher beim App Start angezeigt wird</string>
<string name="contacts_tab">Kontakte</string>
<string name="favorites_tab">Favoriten</string>
<string name="call_history_tab">Anrufliste</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">zuletzt verwendeter Tab</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Diese Datei wiederherstellen</string>
<string name="restore_selected_files">Markierte Dateien wiederherstellen</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Rechner</string>
<string name="calendar_short">Kalender</string>
<string name="camera_short">Kamera</string>
<string name="clock_short">Uhr</string>
<string name="contacts_short">Kontakte</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Zeichenblock</string>
<string name="file_manager_short">Dateimanager</string>
<string name="flashlight_short">Taschenlampe</string>
<string name="gallery_short">Galerie</string>
<string name="music_player_short">Musik-Player</string>
<string name="notes_short">Notizblock</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Dankeschön</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Deine App-Version scheint beschädigt zu sein. Bitte lade dir die originale Version von <a href="%s">hier</a> herunter.

View file

@ -508,6 +508,14 @@
<string name="text">Κείμενο</string>
<string name="migrating">Μετεγκατάσταση</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Επαναφορά αυτού του αρχείου</string>
<string name="restore_selected_files">Επαναφορά επιλεγμένων αρχείων</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Απλός Εκκινητής</string>
<string name="simple_calculator">Απλή Αριθμομηχανή</string>
<string name="simple_calendar">Απλό Ημερολόγιο</string>
<string name="simple_camera">Απλή Κάμερα</string>
<string name="simple_clock">Απλό Ρολόι</string>
<string name="simple_contacts">Απλές Επαφές</string>
<string name="simple_dialer">Απλή Κλήση</string>
<string name="simple_draw">Απλή Ζωγραφική</string>
<string name="simple_file_manager">Απλός Διαχειριστής Αρχείων</string>
<string name="simple_flashlight">Απλός Φακός</string>
<string name="simple_gallery">Απλή Συλλογή</string>
<string name="simple_music_player">Απλός Music Player</string>
<string name="simple_notes">Απλές Σημειώσεις</string>
<string name="simple_sms_messenger">Απλός SMS Messenger</string>
<string name="simple_thank_you">Απλά Σας ευχαριστούμε</string>
<string name="simple_voice_recorder">Απλή Εγγραφή Φωνής</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Αριθμομηχανή</string>
<string name="calendar_short">Ημερολόγιο</string>
<string name="camera_short">Κάμερα</string>
<string name="clock_short">Ρολόι</string>
<string name="contacts_short">Επαφές</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Ζωγραφική</string>
<string name="file_manager_short">Αρχεία</string>
<string name="flashlight_short">Φακός</string>
<string name="gallery_short">Συλλογή</string>
<string name="music_player_short">Μουσική</string>
<string name="notes_short">Σημειώσεις</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Σας ευχαριστώ</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Φαίνεται ότι η έκδοση της εφαρμογής σας είναι κατεστραμμένη. Κατεβάστε την αρχική έκδοση από <a href="%s">εδώ</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Texto</string>
<string name="migrating">Migrando</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restaurar el fichero</string>
<string name="restore_selected_files">Restaurar los ficheros seleccionados</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculadora</string>
<string name="calendar_short">Calendario</string>
<string name="camera_short">Cámara</string>
<string name="clock_short">Reloj</string>
<string name="contacts_short">Contactos</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Dibujo</string>
<string name="file_manager_short">Administrador de archivos</string>
<string name="flashlight_short">Linterna</string>
<string name="gallery_short">Galería</string>
<string name="music_player_short">Reproductor de música</string>
<string name="notes_short">Notas</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Parece que la versión de tu aplicación está dañada. Por favor descargue la versión original <a href="%s">aquí</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -510,6 +510,14 @@
<string name="text">Texte</string>
<string name="migrating">Migration</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Onglet à ouvrir au démarrage de l\'application</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favoris</string>
<string name="call_history_tab">Historique d\'appels</string>
<string name="groups_tab">Groupes</string>
<string name="last_used_tab">Le dernier ouvert</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restaurer ce fichier</string>
<string name="restore_selected_files">Restaurer les fichiers sélectionnés</string>
@ -656,6 +664,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculatrice</string>
<string name="calendar_short">Calendrier</string>
<string name="camera_short">Caméra</string>
<string name="clock_short">Horloge</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Dessiner</string>
<string name="file_manager_short">Gestionnaire de Fichiers</string>
<string name="flashlight_short">Lampe de Poche</string>
<string name="gallery_short">Galerie</string>
<string name="music_player_short">Lecteur de Musique</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Merci</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
La version de votre application semble corrompue. Merci de télécharger la version originale <a href="%s">ici</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -539,6 +539,14 @@
<string name="text">Tekst</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Vrati ovu datoteku</string>
<string name="restore_selected_files">Vrati odabrane datoteke</string>
@ -685,6 +693,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Kalkulator</string>
<string name="calendar_short">Kalendar</string>
<string name="camera_short">Kamera</string>
<string name="clock_short">Sat</string>
<string name="contacts_short">Kontakti</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Crtaj</string>
<string name="file_manager_short">Upravitelj datoteka</string>
<string name="flashlight_short">Bljeskalica</string>
<string name="gallery_short">Galerija</string>
<string name="music_player_short">Glazbeni svirač</string>
<string name="notes_short">Bilješke</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Hvala Vam</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -507,6 +507,14 @@
<string name="text">Szöveg</string>
<string name="migrating">Áttelepítés</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Fájl visszaállítása</string>
<string name="restore_selected_files">Kiválasztott fájl visszaállítása</string>
@ -653,6 +661,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Úgy tűnik megsérült az alkalmazás. Kérjük töltse le az eredeti verziót <a href="%s">innen</a>.

View file

@ -476,6 +476,14 @@
<string name="text">Teks</string>
<string name="migrating">Memindahkan</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Pulihkan berkas ini</string>
<string name="restore_selected_files">Pulihkan berkas yang dipilih</string>
@ -621,6 +629,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Sepertinya versi aplikasi anda rusak. Silakan unduh versi original <a href="%s">di sini</a>.

View file

@ -476,6 +476,14 @@
<string name="text">Teks</string>
<string name="migrating">Memindahkan</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Pulihkan berkas ini</string>
<string name="restore_selected_files">Pulihkan berkas yang dipilih</string>
@ -621,6 +629,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Sepertinya versi aplikasi anda rusak. Silakan unduh versi original <a href="%s">di sini</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Testo</string>
<string name="migrating">Migrazione</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Ripristina questo file</string>
<string name="restore_selected_files">Ripristina file selezionati</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calcolatrice</string>
<string name="calendar_short">Calendario</string>
<string name="camera_short">Fotocamera</string>
<string name="clock_short">Orologio</string>
<string name="contacts_short">Contatti</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Disegna</string>
<string name="file_manager_short">Gestore dei file</string>
<string name="flashlight_short">Torcia</string>
<string name="gallery_short">Galleria</string>
<string name="music_player_short">Riproduttore musicale</string>
<string name="notes_short">Note</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Ringraziamento</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
Sembra che la propria versione sia corrotta. Scaricare la versione originale <a href="%s">qui</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -476,6 +476,14 @@
<string name="text">Text</string>
<string name="migrating">移行中</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">このファイルを復元</string>
<string name="restore_selected_files">選択したファイルを復元</string>
@ -621,6 +629,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">電卓</string>
<string name="calendar_short">カレンダー</string>
<string name="camera_short">カメラ</string>
<string name="clock_short">時計</string>
<string name="contacts_short">連絡先</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">ドロー</string>
<string name="file_manager_short">ファイルマネージャー</string>
<string name="flashlight_short">フラッシュライト</string>
<string name="gallery_short">ギャラリー</string>
<string name="music_player_short">ミュージックプレイヤー</string>
<string name="notes_short">メモ</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -474,6 +474,14 @@
<string name="text">텍스트</string>
<string name="migrating">옮기기</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">이 파일 복원하기</string>
<string name="restore_selected_files">선택한 파일 복원하기</string>
@ -621,6 +629,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
앱 버전이 유효하지 않습니다. 원본을 설치해 주세요. <a href="%s">here</a>.

View file

@ -532,6 +532,14 @@
<string name="text">Text</string>
<string name="migrating">Migrating</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Restore this file</string>
<string name="restore_selected_files">Restore selected files</string>
@ -678,6 +686,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Skaičiuotuvas</string>
<string name="calendar_short">Kalendorius</string>
<string name="camera_short">Fotoaparatas</string>
<string name="clock_short">Laikrodis</string>
<string name="contacts_short">Kontaktai</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Piešimas</string>
<string name="file_manager_short">Bylų tvarkyklė</string>
<string name="flashlight_short">Žibintuvėlis</string>
<string name="gallery_short">Galerija</string>
<string name="music_player_short">Muzikos grotuvas</string>
<string name="notes_short">Užrašai</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Ačiū</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -508,6 +508,14 @@
<string name="text">Text</string>
<string name="migrating">Overføring</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab to open at app start</string>
<string name="contacts_tab">Contacts</string>
<string name="favorites_tab">Favorites</string>
<string name="call_history_tab">Call History</string>
<string name="groups_tab">Groups</string>
<string name="last_used_tab">Last used one</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Gjenopprett denne filen</string>
<string name="restore_selected_files">Gjenopprett valgte filer</string>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Simple App Launcher</string>
<string name="simple_calculator">Simple Calculator</string>
<string name="simple_calendar">Simple Calendar</string>
<string name="simple_camera">Simple Camera</string>
<string name="simple_clock">Simple Clock</string>
<string name="simple_contacts">Simple Contacts</string>
<string name="simple_dialer">Simple Dialer</string>
<string name="simple_draw">Simple Draw</string>
<string name="simple_file_manager">Simple File Manager</string>
<string name="simple_flashlight">Simple Flashlight</string>
<string name="simple_gallery">Simple Gallery</string>
<string name="simple_music_player">Simple Music Player</string>
<string name="simple_notes">Simple Notes</string>
<string name="simple_sms_messenger">Simple SMS Messenger</string>
<string name="simple_thank_you">Simple Thank You</string>
<string name="simple_voice_recorder">Simple Voice Recorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Calculator</string>
<string name="calendar_short">Calendar</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Clock</string>
<string name="contacts_short">Contacts</string>
<string name="dialer_short">Dialer</string>
<string name="draw_short">Draw</string>
<string name="file_manager_short">File Manager</string>
<string name="flashlight_short">Flashlight</string>
<string name="gallery_short">Gallery</string>
<string name="music_player_short">Music Player</string>
<string name="notes_short">Notes</string>
<string name="sms_messenger_short">SMS Messenger</string>
<string name="thank_you_short">Thank You</string>
<string name="voice_recorder_short">Voice Recorder</string>
<string name="sideloaded_app">
<![CDATA[
It looks like your app version is corrupt. Please download the original version <a href="%s">here</a>.

View file

@ -222,7 +222,7 @@
<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[
Om deze functie te gebruiken en om verdere ontwikkeling te ondersteunen kunt u <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aanschaffen. Alvast bedankt!
Om deze functie te gebruiken en om verdere ontwikkeling te ondersteunen kunt u <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Eenvoudig Bedankje</a> aanschaffen. Alvast bedankt!
]]>
</string>
@ -463,7 +463,7 @@
<!-- Settings -->
<string name="settings">Instellingen</string>
<string name="purchase_simple_thank_you">Simple Thank You kopen</string>
<string name="purchase_simple_thank_you">Eenvoudig Bedankje kopen</string>
<string name="customize_colors">Kleuren aanpassen</string>
<string name="customize_widget_colors">Kleuren voor widget aanpassen</string>
<string name="use_english_language">Use English language</string>
@ -508,6 +508,14 @@
<string name="text">Tekst</string>
<string name="migrating">Migreren</string>
<!-- Default tabs to open -->
<string name="default_tab_to_open">Tab openen bij opstarten</string>
<string name="contacts_tab">Contacten</string>
<string name="favorites_tab">Favorieten</string>
<string name="call_history_tab">Oproepgeschiedenis</string>
<string name="groups_tab">Groepen</string>
<string name="last_used_tab">Laatst gebruikt</string>
<!-- Recycle Bin -->
<string name="restore_this_file">Bestand herstellen</string>
<string name="restore_selected_files">Selectie herstellen</string>
@ -626,12 +634,12 @@
<string name="donate_please">
<![CDATA[
Hallo,<br><br>
Hopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.<br><br>
Hopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Eenvoudig Bedankje</a> aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.<br><br>
Dank u wel!
]]>
</string>
<string name="purchase">Kopen</string>
<string name="update_thank_you">Er is een nieuwe versie van Simple Thank You</string>
<string name="update_thank_you">Er is een nieuwe versie van Eenvoudig Bedankje</string>
<string name="before_asking_question_read_faq">Controleer bij problemen eerst de instellingen van de app en neem de Veelgestelde vragen door. Wellicht is de oplossing daar reeds te vinden.</string>
<string name="before_rate_read_faq">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.</string>
<string name="make_sure_latest">Zorg er ook voor dat de laatste versie van de app is geïnstalleerd.</string>
@ -645,7 +653,7 @@
<string name="new_app">
<![CDATA[
Hallo,<br><br>
Er is recentelijk een nieuwe app uitgebracht:<br><br>
Er zijn recentelijk nieuwe apps uitgebracht:<br><br>
<a href="%1$s">%2$s</a><br><br>
<a href="%3$s">%4$s</a><br><br>
<a href="%5$s">%6$s</a><br><br>
@ -654,6 +662,40 @@
]]>
</string>
<string name="simple_app_launcher">Eenvoudige App Launcher</string>
<string name="simple_calculator">Eenvoudige Rekenmachine</string>
<string name="simple_calendar">Eenvoudige Agenda</string>
<string name="simple_camera">Eenvoudige Camera</string>
<string name="simple_clock">Eenvoudige Klok</string>
<string name="simple_contacts">Eenvoudig Adresboek</string>
<string name="simple_dialer">Eenvoudige Telefoon</string>
<string name="simple_draw">Eenvoudig Tekenen</string>
<string name="simple_file_manager">Eenvoudig Bestandsbeheer</string>
<string name="simple_flashlight">Eenvoudige Zaklamp</string>
<string name="simple_gallery">Eenvoudige Galerij</string>
<string name="simple_music_player">Eenvoudige Muziekspeler</string>
<string name="simple_notes">Eenvoudige Notities</string>
<string name="simple_sms_messenger">Eenvoudig Berichtenbeheer (SMS)</string>
<string name="simple_thank_you">Eenvoudig Bedankje</string>
<string name="simple_voice_recorder">Eenvoudige Voicerecorder</string>
<string name="app_launcher_short">App Launcher</string>
<string name="calculator_short">Rekenmachine</string>
<string name="calendar_short">Agenda</string>
<string name="camera_short">Camera</string>
<string name="clock_short">Klok</string>
<string name="contacts_short">Contacten</string>
<string name="dialer_short">Telefoon</string>
<string name="draw_short">Tekenen</string>
<string name="file_manager_short">Bestandsbeheer</string>
<string name="flashlight_short">Zaklamp</string>
<string name="gallery_short">Galerij</string>
<string name="music_player_short">Muziek</string>
<string name="notes_short">Notities</string>
<string name="sms_messenger_short">Berichten</string>
<string name="thank_you_short">Bedankt!</string>
<string name="voice_recorder_short">Voicerecorder</string>
<string name="sideloaded_app">
<![CDATA[
Het lijkt erop dat deze versie van de app corrupt is. Download de originele versie <a href="%s">hier</a>.

Some files were not shown because too many files have changed in this diff Show more