Merge branch 'master' into contacts_backup
# Conflicts: # commons/src/main/kotlin/com/simplemobiletools/commons/helpers/BaseConfig.kt # commons/src/main/kotlin/com/simplemobiletools/commons/helpers/Constants.kt
This commit is contained in:
commit
cb6b018c70
65 changed files with 628 additions and 58 deletions
|
@ -20,6 +20,10 @@
|
|||
android:name="android.permission.USE_BIOMETRIC"
|
||||
tools:node="remove" />
|
||||
|
||||
<uses-permission
|
||||
android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
||||
tools:node="remove" />
|
||||
|
||||
<!-- used by Reprint -->
|
||||
<uses-permission
|
||||
android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"
|
||||
|
|
|
@ -352,6 +352,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
|||
if (toolbarNavigationIcon != NavigationIcon.None) {
|
||||
val drawableId = if (toolbarNavigationIcon == NavigationIcon.Cross) R.drawable.ic_cross_vector else R.drawable.ic_arrow_left_vector
|
||||
toolbar.navigationIcon = resources.getColoredDrawableWithColor(drawableId, contrastColor)
|
||||
toolbar.setNavigationContentDescription(toolbarNavigationIcon.accessibilityResId)
|
||||
}
|
||||
|
||||
toolbar.setNavigationOnClickListener {
|
||||
|
@ -977,7 +978,7 @@ abstract class BaseSimpleActivity : AppCompatActivity() {
|
|||
if (granted) {
|
||||
CopyMoveTask(this, isCopyOperation, copyPhotoVideoOnly, it, copyMoveListener, copyHidden).execute(pair)
|
||||
} else {
|
||||
PermissionRequiredDialog(this, R.string.allow_notifications_files)
|
||||
PermissionRequiredDialog(this, R.string.allow_notifications_files, { openNotificationSettings() })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,11 +4,15 @@ import android.app.Activity
|
|||
import androidx.appcompat.app.AlertDialog
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.getAlertDialogBuilder
|
||||
import com.simplemobiletools.commons.extensions.openNotificationSettings
|
||||
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
||||
import kotlinx.android.synthetic.main.dialog_message.view.*
|
||||
|
||||
class PermissionRequiredDialog(val activity: Activity, textId: Int) {
|
||||
class PermissionRequiredDialog(
|
||||
val activity: Activity,
|
||||
textId: Int,
|
||||
private val positiveActionCallback: () -> Unit,
|
||||
private val negativeActionCallback: (() -> Unit)? = null
|
||||
) {
|
||||
private var dialog: AlertDialog? = null
|
||||
|
||||
init {
|
||||
|
@ -16,8 +20,8 @@ class PermissionRequiredDialog(val activity: Activity, textId: Int) {
|
|||
view.message.text = activity.getString(textId)
|
||||
|
||||
activity.getAlertDialogBuilder()
|
||||
.setPositiveButton(R.string.grant_permission) { dialog, which -> activity.openNotificationSettings() }
|
||||
.setNegativeButton(R.string.cancel, null).apply {
|
||||
.setPositiveButton(R.string.grant_permission) { _, _ -> positiveActionCallback() }
|
||||
.setNegativeButton(R.string.cancel) { _, _ -> negativeActionCallback?.invoke() }.apply {
|
||||
val title = activity.getString(R.string.permission_required)
|
||||
activity.setupDialogStuff(view, this, titleText = title) { alertDialog ->
|
||||
dialog = alertDialog
|
||||
|
|
|
@ -1076,6 +1076,7 @@ fun Context.sendEmailIntent(recipient: String) {
|
|||
launchActivityIntent(this)
|
||||
}
|
||||
}
|
||||
|
||||
fun Context.openNotificationSettings() {
|
||||
if (isOreoPlus()) {
|
||||
val intent = Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS)
|
||||
|
@ -1088,3 +1089,13 @@ fun Context.openNotificationSettings() {
|
|||
startActivity(intent)
|
||||
}
|
||||
}
|
||||
|
||||
@RequiresApi(Build.VERSION_CODES.S)
|
||||
fun Context.openRequestExactAlarmSettings(appId: String) {
|
||||
if (isSPlus()) {
|
||||
val uri = Uri.fromParts("package", appId, null)
|
||||
val intent = Intent(Settings.ACTION_REQUEST_SCHEDULE_EXACT_ALARM)
|
||||
intent.data = uri
|
||||
startActivity(intent)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package com.simplemobiletools.commons.helpers
|
||||
|
||||
import android.content.Context
|
||||
import android.content.res.Configuration
|
||||
import android.os.Environment
|
||||
import android.text.format.DateFormat
|
||||
import com.simplemobiletools.commons.R
|
||||
|
@ -555,9 +556,18 @@ open class BaseConfig(val context: Context) {
|
|||
get() = prefs.getInt(VIEW_TYPE, VIEW_TYPE_LIST)
|
||||
set(viewType) = prefs.edit().putInt(VIEW_TYPE, viewType).apply()
|
||||
|
||||
var contactsGridColumnCnt: Int
|
||||
get() = prefs.getInt(CONTACTS_GRID_COLUMN_COUNT, CONTACTS_GRID_DEFAULT_COLUMNS_COUNT)
|
||||
set(contactsGridColumnCnt) = prefs.edit().putInt(CONTACTS_GRID_COLUMN_COUNT, contactsGridColumnCnt).apply()
|
||||
var contactsGridColumnCount: Int
|
||||
get() = prefs.getInt(CONTACTS_GRID_COLUMN_COUNT, getDefaultContactColumnsCount())
|
||||
set(contactsGridColumnCount) = prefs.edit().putInt(CONTACTS_GRID_COLUMN_COUNT, contactsGridColumnCount).apply()
|
||||
|
||||
private fun getDefaultContactColumnsCount(): Int {
|
||||
val isPortrait = context.resources.configuration.orientation == Configuration.ORIENTATION_PORTRAIT
|
||||
return if (isPortrait) {
|
||||
context.resources.getInteger(R.integer.contacts_grid_columns_count_portrait)
|
||||
} else {
|
||||
context.resources.getInteger(R.integer.contacts_grid_columns_count_landscape)
|
||||
}
|
||||
}
|
||||
|
||||
var autoBackup: Boolean
|
||||
get() = prefs.getBoolean(AUTO_BACKUP, false)
|
||||
|
|
|
@ -7,6 +7,7 @@ import android.os.Looper
|
|||
import android.provider.ContactsContract
|
||||
import android.util.Log
|
||||
import androidx.annotation.ChecksSdkIntAtLeast
|
||||
import androidx.annotation.StringRes
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.normalizeString
|
||||
import com.simplemobiletools.commons.models.contacts.LocalContact
|
||||
|
@ -186,14 +187,13 @@ const val MERGE_DUPLICATE_CONTACTS = "merge_duplicate_contacts"
|
|||
const val FAVORITES_CONTACTS_ORDER = "favorites_contacts_order"
|
||||
const val FAVORITES_CUSTOM_ORDER_SELECTED = "favorites_custom_order_selected"
|
||||
const val VIEW_TYPE = "view_type"
|
||||
const val CONTACTS_GRID_COLUMN_COUNT = "favourites_column_count"
|
||||
const val CONTACTS_GRID_COLUMN_COUNT = "contacts_grid_column_count"
|
||||
const val AUTO_BACKUP = "auto_backup"
|
||||
const val AUTO_BACKUP_FOLDER = "auto_backup_folder"
|
||||
const val AUTO_BACKUP_FILENAME = "auto_backup_filename"
|
||||
const val LAST_AUTO_BACKUP_TIME = "last_auto_backup_time"
|
||||
|
||||
// contact grid view constants
|
||||
const val CONTACTS_GRID_DEFAULT_COLUMNS_COUNT = 3
|
||||
const val CONTACTS_GRID_MIN_COLUMNS_COUNT = 1
|
||||
const val CONTACTS_GRID_MAX_COLUMNS_COUNT = 10
|
||||
|
||||
|
@ -387,10 +387,10 @@ const val TIME_FORMAT_12 = "hh:mm a"
|
|||
const val TIME_FORMAT_24 = "HH:mm"
|
||||
|
||||
// possible icons at the top left corner
|
||||
enum class NavigationIcon {
|
||||
Cross,
|
||||
Arrow,
|
||||
None
|
||||
enum class NavigationIcon(@StringRes val accessibilityResId: Int) {
|
||||
Cross(R.string.close),
|
||||
Arrow(R.string.back),
|
||||
None(0)
|
||||
}
|
||||
|
||||
val appIconColorStrings = arrayListOf(
|
||||
|
|
|
@ -58,6 +58,7 @@ class MySearchMenu(context: Context, attrs: AttributeSet) : AppBarLayout(context
|
|||
isSearchOpen = true
|
||||
onSearchOpenListener?.invoke()
|
||||
top_toolbar_search_icon.setImageResource(R.drawable.ic_arrow_left_vector)
|
||||
top_toolbar_search_icon.contentDescription = resources.getString(R.string.back)
|
||||
}
|
||||
|
||||
fun closeSearch() {
|
||||
|
@ -66,6 +67,7 @@ class MySearchMenu(context: Context, attrs: AttributeSet) : AppBarLayout(context
|
|||
top_toolbar_search.setText("")
|
||||
if (!useArrowIcon) {
|
||||
top_toolbar_search_icon.setImageResource(R.drawable.ic_search_vector)
|
||||
top_toolbar_search_icon.contentDescription = resources.getString(R.string.search)
|
||||
}
|
||||
(context as? Activity)?.hideKeyboard()
|
||||
}
|
||||
|
@ -87,13 +89,14 @@ class MySearchMenu(context: Context, attrs: AttributeSet) : AppBarLayout(context
|
|||
|
||||
fun toggleForceArrowBackIcon(useArrowBack: Boolean) {
|
||||
this.useArrowIcon = useArrowBack
|
||||
val icon = if (useArrowBack) {
|
||||
R.drawable.ic_arrow_left_vector
|
||||
val (icon, accessibilityString) = if (useArrowBack) {
|
||||
Pair(R.drawable.ic_arrow_left_vector, R.string.back)
|
||||
} else {
|
||||
R.drawable.ic_search_vector
|
||||
Pair(R.drawable.ic_search_vector, R.string.search)
|
||||
}
|
||||
|
||||
top_toolbar_search_icon.setImageResource(icon)
|
||||
top_toolbar_search_icon.contentDescription = resources.getString(accessibilityString)
|
||||
}
|
||||
|
||||
fun updateColors() {
|
||||
|
|
|
@ -43,6 +43,7 @@ class MyTextInputLayout : TextInputLayout {
|
|||
)
|
||||
)
|
||||
|
||||
setEndIconTintList(ColorStateList(arrayOf(intArrayOf(0)), intArrayOf(hintColor)))
|
||||
setBoxStrokeColorStateList(boxColorState)
|
||||
defaultTextColor.set(this, ColorStateList(arrayOf(intArrayOf(0)), intArrayOf(defaultHintTextColor)))
|
||||
setHelperTextColor(ColorStateList.valueOf(textColor))
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/enter_password_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
@ -10,6 +11,7 @@
|
|||
android:id="@+id/enter_password_hint"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:passwordToggleEnabled="true"
|
||||
android:hint="@string/password">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
|
|
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/item_contact_frame"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="@dimen/tiny_margin"
|
||||
android:background="@drawable/selector_clickable"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:paddingBottom="@dimen/medium_margin">
|
||||
|
||||
<com.simplemobiletools.commons.views.MySquareImageView
|
||||
android:id="@+id/item_contact_image"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_margin="@dimen/small_margin"
|
||||
android:adjustViewBounds="true"
|
||||
android:padding="@dimen/tiny_margin"
|
||||
android:paddingHorizontal="@dimen/normal_margin"
|
||||
android:paddingTop="@dimen/medium_margin"
|
||||
android:src="@drawable/ic_person_vector"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintWidth_max="@dimen/contact_grid_item_max_size" />
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/item_contact_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center"
|
||||
android:maxLines="2"
|
||||
android:paddingTop="@dimen/medium_margin"
|
||||
android:paddingHorizontal="@dimen/medium_margin"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/item_contact_image"
|
||||
tools:text="John Doe" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_contact_number"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:alpha="0.6"
|
||||
android:maxLines="1"
|
||||
android:ellipsize="end"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingHorizontal="@dimen/medium_margin"
|
||||
android:textSize="@dimen/normal_text_size"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/item_contact_name"
|
||||
app:layout_constraintStart_toStartOf="@+id/item_contact_name"
|
||||
app:layout_constraintTop_toBottomOf="@+id/item_contact_name"
|
||||
app:layout_constraintVertical_bias="0.5"
|
||||
tools:text="0123 456 789" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/drag_handle_icon"
|
||||
android:layout_width="@dimen/normal_icon_size"
|
||||
android:layout_height="@dimen/normal_icon_size"
|
||||
android:layout_alignParentTop="true"
|
||||
android:contentDescription="@null"
|
||||
android:paddingHorizontal="@dimen/normal_margin"
|
||||
android:src="@drawable/ic_drag_handle_vector"
|
||||
android:visibility="visible"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -22,7 +22,8 @@
|
|||
android:layout_height="match_parent"
|
||||
android:layout_centerVertical="true"
|
||||
android:paddingStart="@dimen/activity_margin"
|
||||
android:src="@drawable/ic_search_vector" />
|
||||
android:src="@drawable/ic_search_vector"
|
||||
android:contentDescription="@string/search" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/top_toolbar_search"
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">ذاكرة الهاتف</string>
|
||||
<string name="phone_storage_hidden">ذاكرة الهاتف (غير مرئية من قبل التطبيقات الأخرى)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">يفحص…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">تاريخ الميلاد</string>
|
||||
<string name="anniversary">مناسبة</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">زيادة عدد الأعمدة</string>
|
||||
<string name="reduce_column_count">تقليل عدد الأعمدة</string>
|
||||
<string name="column_count">عدد الأعمدة</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">عدد الأعمدة الرأسية</string>
|
||||
<string name="landscape_column_count">عدد الأعمدة الأفقية</string>
|
||||
<string name="change_cover_image">تغيير صورة الغلاف</string>
|
||||
|
@ -111,6 +113,14 @@
|
|||
<item quantity="many">%d أعمدة</item>
|
||||
<item quantity="other">%d أعمدة</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="zero">صف %d</item>
|
||||
<item quantity="one">صف %d</item>
|
||||
<item quantity="two">صفوف %d</item>
|
||||
<item quantity="few">صفوف %d</item>
|
||||
<item quantity="many">صفوف %d</item>
|
||||
<item quantity="other">صفوف %d</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">إدارة الأرقام المحظورة</string>
|
||||
<string name="not_blocking_anyone">لم تحظر أي شخص.</string>
|
||||
|
@ -138,7 +148,7 @@
|
|||
<string name="search">بحث</string>
|
||||
<string name="search_in_placeholder">البحث في %s</string>
|
||||
<string name="type_2_characters">أكتب ما لا يقل عن حرفين لبدء البحث.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">عرض شريط البحث</string>
|
||||
<string name="search_contacts">بحث في جهات الاتصال</string>
|
||||
<string name="search_favorites">بحث في المفضلة</string>
|
||||
<string name="search_apps">البحث في التطبيقات</string>
|
||||
|
@ -492,6 +502,8 @@
|
|||
<string name="lock_folder_notice">تعمل هذه الحماية فقط في هذا التطبيق، ومن المفترض ألا تحل محل تشفير المجلد الحقيقي علي مستوي النظام.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">الرجاء إدخال كلمة المرور</string>
|
||||
<string name="empty_password">الرجاء إدخال كلمة المرور</string>
|
||||
<string name="invalid_password">كلمة المرور غير صحيحة</string>
|
||||
<!-- Times -->
|
||||
|
@ -1279,4 +1291,4 @@
|
|||
<string name="pro_app_refund">لا تنسى أنه إذا قمت بإلغاء تثبيت أي تطبيق مدفوع في غضون ساعتين ، فسيتم إسترداد أموالك تلقائياً. إذا كنت تريد إسترداد الأموال في أي وقت لاحق ، فأتصل بنا على hello@simplemobiletools.com وستحصل عليه. هذا يجعل من السهل تجربته :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">مجموعة بسيطة، من تطبيقات أندرويد المفتوحة المصدر ذات الودجات القابلة للتخصيص، بدون إعلانات أو أذونات غير ضرورية.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefon yaddaşı</string>
|
||||
<string name="phone_storage_hidden">Telefon yaddaşı (digər tətbiqlərə görünmür)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Ad günü</string>
|
||||
|
@ -103,6 +104,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -496,6 +502,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Сховішча тэлефона</string>
|
||||
<string name="phone_storage_hidden">Сховішча тэлефона (не бачна іншым праграмам)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Дзень нараджэння</string>
|
||||
<string name="anniversary">Гадавіна</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Павялічыць колькасць слупкоў</string>
|
||||
<string name="reduce_column_count">Паменьшіць колькасць слупкоў</string>
|
||||
<string name="column_count">Колькасць слупкоў</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Колькасць слупкоў у партрэтным рэжыме</string>
|
||||
<string name="landscape_column_count">Колькасць слупкоў у ландшафтным рэжыме</string>
|
||||
<string name="change_cover_image">Змяніць вокладку</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="many">%d слупкоў</item>
|
||||
<item quantity="other">%d слупкоў</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Кіраванне заблакаванымі нумарамі</string>
|
||||
<string name="not_blocking_anyone">Заблакаваныя нумары не знойдзены.</string>
|
||||
|
@ -480,6 +486,8 @@
|
|||
<string name="lock_folder_notice">Гэтая абарона працуе толькі ў гэтым дадатку, яна не павінна замяняць сапраўднае агульнасістэмнае шыфраванне папак.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
<string name="phone_storage">Памет на устройството</string>
|
||||
<string name="phone_storage_hidden">Памет на устройството (без достъп от други приложения)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Рожден ден</string>
|
||||
<string name="anniversary">Годишнина</string>
|
||||
|
@ -100,6 +101,7 @@
|
|||
<string name="increase_column_count">Увеличаване на броя на колоните</string>
|
||||
<string name="reduce_column_count">Намаляване на броя на колоните</string>
|
||||
<string name="column_count">Брой колони</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Промяна на корицата</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="one">%d колона</item>
|
||||
<item quantity="other">%d колони</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Управление на блокирани номера</string>
|
||||
<string name="not_blocking_anyone">Не блокирате никого.</string>
|
||||
|
@ -472,6 +478,8 @@
|
|||
<string name="lock_folder_notice">Тази защита работи само в това приложение, не е предвидена да замества реално систено криптиране на папките в цялата система.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Моля, въведете паролата</string>
|
||||
<string name="invalid_password">Грешна парола</string>
|
||||
<!-- Times -->
|
||||
|
@ -1116,4 +1124,4 @@
|
|||
<string name="pro_app_refund">Не забравяйте, че ако деинсталирате всяко платено приложение в рамките на 2 часа, автоматично ще бъде възстановена сумата. Ако искате възстановяване на сумата по всяко време по -късно, просто се свържете с нас на hello@simplemobiletools.com и ще го получите. Това улеснява изпробването :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Група обикновени приложения с отворен код за Android с гъвкави приспособления, без реклами и ненужни разрешения.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -103,6 +104,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -496,6 +502,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -102,6 +103,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -110,6 +112,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -495,6 +501,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Emmagatzematge del telèfon</string>
|
||||
<string name="phone_storage_hidden">Emmagatzematge del telèfon (no visible per altres aplicacions)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">S\'està explorant…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Data de naixement</string>
|
||||
<string name="anniversary">Aniversari</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Augmenta el nombre de columnes</string>
|
||||
<string name="reduce_column_count">Redueix el nombre de columnes</string>
|
||||
<string name="column_count">Comptador de columnes</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Nombre de columnes verticals</string>
|
||||
<string name="landscape_column_count">Nombre de columnes horitzontals</string>
|
||||
<string name="change_cover_image">Canvia la imatge de la portada</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d columna</item>
|
||||
<item quantity="other">%d columnes</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gestió dels números bloquejats</string>
|
||||
<string name="not_blocking_anyone">No esteu bloquejant a ningú.</string>
|
||||
|
@ -134,7 +140,7 @@
|
|||
<string name="search">Cerca</string>
|
||||
<string name="search_in_placeholder">Cerca a %s</string>
|
||||
<string name="type_2_characters">Escriviu com a mínim 2 caràcters per iniciar la cerca.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Mostra una barra de cerca</string>
|
||||
<string name="search_contacts">Cerca contactes</string>
|
||||
<string name="search_favorites">Cerca als preferits</string>
|
||||
<string name="search_apps">Cerca aplicacions</string>
|
||||
|
@ -169,7 +175,7 @@
|
|||
<string name="allow_notifications_voice_recorder">Heu de permetre que l\'aplicació mostri notificacions, en cas contrari no podrà enregistrar àudio.</string>
|
||||
<string name="allow_notifications_incoming_calls">Heu de permetre que l\'aplicació mostri notificacions, en cas contrari no podrà mostrar les trucades entrants.</string>
|
||||
<string name="allow_notifications_incoming_messages">Heu de permetre que l\'aplicació mostri notificacions, en cas contrari no podrà mostrar els missatges entrants.</string>
|
||||
<string name="allow_alarm_scheduled_messages">You must allow the app accessing internal alarms, else it cannot send scheduled messages.</string>
|
||||
<string name="allow_alarm_scheduled_messages">Heu de permetre que l\'aplicació accedeixi a alarmes internes, en cas contrari no pot enviar missatges programats.</string>
|
||||
<string name="grant_permission">Atorga el permís</string>
|
||||
<string name="permission_required">Es requereix permís</string>
|
||||
<!-- Renaming -->
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Aquesta protecció només funciona en aquesta aplicació. No substituirà un xifratge real de carpetes de tot el sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Introduïu una contrasenya</string>
|
||||
<string name="empty_password">Introduïu la contrasenya</string>
|
||||
<string name="invalid_password">Contrasenya incorrecta</string>
|
||||
<!-- Times -->
|
||||
|
@ -1124,4 +1132,4 @@
|
|||
<string name="pro_app_refund">No oblideu que si desinstal·leu qualsevol aplicació de pagament en un termini de 2 hores, el càrrec es retornarà automàticament. Si voleu un reemborsament més tard, poseu-vos en contacte amb nosaltres a hello@simplemobiletools.com i el rebreu. Això fa que sigui fàcil provar-ho :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Un grup d\'aplicacions Android simples i de codi obert amb ginys personalitzables, sense anuncis ni permisos innecessaris.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
<string name="phone_storage">Úložiště telefonu</string>
|
||||
<string name="phone_storage_hidden">Úložiště telefonu (neviditelné pro ostatní aplikace)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Narozeniny</string>
|
||||
<string name="anniversary">Výročí</string>
|
||||
|
@ -100,6 +101,7 @@
|
|||
<string name="increase_column_count">Zvýšit počet sloupců</string>
|
||||
<string name="reduce_column_count">Snížit počet sloupců</string>
|
||||
<string name="column_count">Počet sloupců</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Počet sloupců na výšku</string>
|
||||
<string name="landscape_column_count">Počet sloupců na šířku</string>
|
||||
<string name="change_cover_image">Změnit obrázek složky</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="few">%d sloupce</item>
|
||||
<item quantity="other">%d sloupců</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Spravovat blokovaná čísla</string>
|
||||
<string name="not_blocking_anyone">Nikoho neblokujete.</string>
|
||||
|
@ -478,6 +484,8 @@
|
|||
<string name="lock_folder_notice">Tato ochrana funguje pouze v této aplikaci, nemá za cíl nahradit šifrování složky fungující napříč systémem.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Storfa ddyfais</string>
|
||||
<string name="phone_storage_hidden">Storfa ddyfais (dim i\'w weld gan apiau eraill)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Pen-blwydd</string>
|
||||
<string name="anniversary">Pen-blwydd achlysur</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,14 @@
|
|||
<item quantity="many">%d columns</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="zero">%d row</item>
|
||||
<item quantity="one">%d rows</item>
|
||||
<item quantity="two">%d rows</item>
|
||||
<item quantity="few">%d rows</item>
|
||||
<item quantity="many">%d rows</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Rheoli rhifau wedi\'u rhwystro</string>
|
||||
<string name="not_blocking_anyone">Nid wyt yn rhwystro unrhyw un.</string>
|
||||
|
@ -494,6 +504,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefon lager</string>
|
||||
<string name="phone_storage_hidden">Telefon lager (ikke synlig for andre apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Fødselsdag</string>
|
||||
<string name="anniversary">Årsdag</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Flere kolonner</string>
|
||||
<string name="reduce_column_count">Færre kolonner</string>
|
||||
<string name="column_count">Antal kolonner</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Antal kolonner stående format</string>
|
||||
<string name="landscape_column_count">Antal kolonner liggende format</string>
|
||||
<string name="change_cover_image">Skift cover-billede</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d kolonne</item>
|
||||
<item quantity="other">%d kolonner</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Administrér blokerede numre</string>
|
||||
<string name="not_blocking_anyone">Du blokerer ikke nogen.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Denne beskyttelse virker kun i denne app, den er ikke beregnet som erstatning for rigtig kryptering af mapper på systemniveau.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Gerätespeicher</string>
|
||||
<string name="phone_storage_hidden">Gerätespeicher (nicht sichtbar für andere Apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Geburtstag</string>
|
||||
<string name="anniversary">Jahrestag</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Kacheln verkleinern</string>
|
||||
<string name="reduce_column_count">Kacheln vergrößern</string>
|
||||
<string name="column_count">Spaltenanzahl</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Anzahl der Spalten im Hochformat</string>
|
||||
<string name="landscape_column_count">Anzahl der Spalten im Querformat</string>
|
||||
<string name="change_cover_image">Coverbild ändern</string>
|
||||
|
@ -107,10 +109,14 @@
|
|||
<item quantity="one">%d Spalte</item>
|
||||
<item quantity="other">%d Spalten</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Blockierte Nummern verwalten</string>
|
||||
<string name="not_blocking_anyone">Du blockierst niemanden.</string>
|
||||
<string name="add_a_blocked_number">Eine blockierte Nummer hinzufügen</string>
|
||||
<string name="add_a_blocked_number">Eine zu blockierende Nummer hinzufügen</string>
|
||||
<string name="block_number">Nummer blockieren</string>
|
||||
<string name="block_numbers">Nummern blockieren</string>
|
||||
<string name="blocked_numbers">Blockierte Nummern</string>
|
||||
|
@ -134,7 +140,7 @@
|
|||
<string name="search">Suchen</string>
|
||||
<string name="search_in_placeholder">Suchen in %s</string>
|
||||
<string name="type_2_characters">Du musst mindestens 2 Zeichen eingeben, um die Suche zu starten.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Eine Suchleiste anzeigen</string>
|
||||
<string name="search_contacts">Kontakte durchsuchen</string>
|
||||
<string name="search_favorites">Favoriten durchsuchen</string>
|
||||
<string name="search_apps">Apps durchsuchen</string>
|
||||
|
@ -169,7 +175,7 @@
|
|||
<string name="allow_notifications_voice_recorder">Der App die Anzeige von Benachrichtigungen erlauben, sonst kann sie keinen Ton aufnehmen.</string>
|
||||
<string name="allow_notifications_incoming_calls">Der App die Anzeige von Benachrichtigungen erlauben, sonst kann sie keine eingehenden Anrufe anzeigen.</string>
|
||||
<string name="allow_notifications_incoming_messages">Der App die Anzeige von Benachrichtigungen erlauben, sonst kann sie keine eingehenden Nachrichten anzeigen.</string>
|
||||
<string name="allow_alarm_scheduled_messages">You must allow the app accessing internal alarms, else it cannot send scheduled messages.</string>
|
||||
<string name="allow_alarm_scheduled_messages">Der App den Zugriff auf interne Alarme erlauben, sonst kann sie keine geplanten Nachrichten senden.</string>
|
||||
<string name="grant_permission">Berechtigung erteilen</string>
|
||||
<string name="permission_required">Berechtigung erforderlich</string>
|
||||
<!-- Renaming -->
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Dieser Schutz ist nur innerhalb dieser App wirksam und kann keine systemweite Datenträgerverschlüsselung ersetzen.</string>
|
||||
<string name="enter_password">Passwort eingeben</string>
|
||||
<string name="password">Passwort</string>
|
||||
<string name="add_password">Passwort hinzufügen</string>
|
||||
<string name="empty_password_new">Bitte ein Passwort eingeben</string>
|
||||
<string name="empty_password">Bitte das Passwort eingeben</string>
|
||||
<string name="invalid_password">Passwort falsch</string>
|
||||
<!-- Times -->
|
||||
|
@ -1106,7 +1114,7 @@
|
|||
<string name="pdf_viewer_title">Android PdfViewer (PDF-Betrachter)</string>
|
||||
<string name="m3u_parser_title">M3U-Parser (Bearbeitung von m3u-Wiedergabelistendateien)</string>
|
||||
<string name="android_lame_title">AndroidLame (mp3-Encoder)</string>
|
||||
<string name="zip4j_title">Zip4j (ZIP compression and decompression)</string>
|
||||
<string name="zip4j_title">Zip4j (ZIP-Komprimierung und -Dekomprimierung)</string>
|
||||
<!-- Trial -->
|
||||
<string name="trial_expired">Testversion abgelaufen</string>
|
||||
<string name="start_free_trial">Kostenlos testen</string>
|
||||
|
@ -1132,4 +1140,4 @@
|
|||
<string name="pro_app_refund">Vergiss nicht, dass dir der Betrag erstattet wird, wenn du eine bezahlte App innerhalb von zwei Stunden wieder deinstallierst. Falls du später eine Rückerstattung wünschst, kontaktiere uns einfach unter hello@simplemobiletools.com, und du wirst sie bekommen. So kann man ganz einfach die App ausprobieren :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Eine Gruppe von einfachen, quelloffenen Android-Apps mit anpassbaren Widgets, ohne Werbung und unnötige Berechtigungen.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Αποθηκευτικός χώρος Τηλεφώνου</string>
|
||||
<string name="phone_storage_hidden">Ο Αποθηκευτικός χώρος του τηλεφώνου (δεν είναι ορατός από άλλες εφαρμογές)</string>
|
||||
<string name="audio">Ήχος</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Γενέθλια</string>
|
||||
|
@ -100,6 +101,7 @@
|
|||
<string name="increase_column_count">Αύξηση αριθμού στηλών</string>
|
||||
<string name="reduce_column_count">Μείωση αριθμού στηλών</string>
|
||||
<string name="column_count">Αρίθμηση στηλών</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Αρίθμηση στηλών πορτρέτου</string>
|
||||
<string name="landscape_column_count">Αρίθμηση στηλών τοπίου</string>
|
||||
<string name="change_cover_image">Αλλαγή εξώφυλλου φακέλου</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="one">%d στήλη</item>
|
||||
<item quantity="other">%d στήλες</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Διαχείριση αποκλεισμένων αριθμών</string>
|
||||
<string name="not_blocking_anyone">Χωρίς αποκλεισμο κανενός.</string>
|
||||
|
@ -471,6 +477,8 @@
|
|||
<string name="lock_folder_notice">Αυτή η προστασία λειτουργεί μόνο για αυτήν την εφαρμογή, δεν πρόκειται να αντικαταστήσει την πραγματική κρυπτογράφηση του Συστήματος.</string>
|
||||
<string name="enter_password">Εισαγωγή κωδικού</string>
|
||||
<string name="password">Κωδικός πρόσβασης</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Παρακαλώ εισάγετε τον κωδικό</string>
|
||||
<string name="invalid_password">Εσφαλμένος κωδικός</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Naskiĝtago</string>
|
||||
<string name="anniversary">Anniversary</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Almacenamiento del teléfono</string>
|
||||
<string name="phone_storage_hidden">Almacenamiento del teléfono (No visible para otras aplicaciones)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Cumpleaños</string>
|
||||
<string name="anniversary">Aniversario</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Aumentar el número de columnas</string>
|
||||
<string name="reduce_column_count">Reducir el número de columnas</string>
|
||||
<string name="column_count">Recuento de columnas</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Recuento de columnas de retratos</string>
|
||||
<string name="landscape_column_count">Recuento de columnas apaisadas</string>
|
||||
<string name="change_cover_image">Cambiar la imagen de la portada</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="many">Columnas %d</item>
|
||||
<item quantity="other">Columnas %d</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Administrar números bloqueados</string>
|
||||
<string name="not_blocking_anyone">Aún no has bloqueado a nadie.</string>
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Esta protección funciona solo en esta aplicación, no reemplaza un cifrado de carpetas en todo el sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Andmeruum telefonis</string>
|
||||
<string name="phone_storage_hidden">Telefonimälu (muud rakendused ei saa siia ligi)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Sünnipäev</string>
|
||||
<string name="anniversary">Aastapäev</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Suurenda veergude arvu</string>
|
||||
<string name="reduce_column_count">Vähenda veergude arvu</string>
|
||||
<string name="column_count">Veergude arv</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portree veergude arv</string>
|
||||
<string name="landscape_column_count">Maastikuline veergude arv</string>
|
||||
<string name="change_cover_image">Muuda kaanepilti</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d veerg</item>
|
||||
<item quantity="other">%d veergu</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Halda blokeeritud telefoninumbreid</string>
|
||||
<string name="not_blocking_anyone">Sa pole veel ühtegi telefoninumbrit blokeerinud.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">See turvameede toimib vaid selles rakenduses ega ole mõeldud asendama süsteemiülest krüptimist.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Palun sisesta salasõna</string>
|
||||
<string name="invalid_password">Vigane salasõna</string>
|
||||
<!-- Times -->
|
||||
|
@ -1126,4 +1134,4 @@
|
|||
<string name="pro_app_refund">Palun arvesta, et kui eemaldad tasulise rakenduse nutiseadmest 2 tunni jooksul, siis ostusumma tagastatakse automaatselt. Kui soovit tagastust hiljem, siis saada e-kiri hello@simplemobiletools.com aadressile ning korraldame tagastuse. Mõlemal juhul on sul võimalik meie tasulisi rakendusi testida :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Arendame Androidi jaoks avatud lähtekoodil põhinevaid lihtsaid tarvikuid ja milles pole reklaame ega vajadust asjatute õiguste jaoks.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefono memoria</string>
|
||||
<string name="phone_storage_hidden">Telefono memoria (beste aplikazioentzat ikustezina)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Urtebetetzea</string>
|
||||
<string name="anniversary">Urteurrena</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Gehitu errenkadak</string>
|
||||
<string name="reduce_column_count">Gutxitu errenkadak</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Aldatu azaleko argazkia</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Kudeatu blokeatutako zenbakiak</string>
|
||||
<string name="not_blocking_anyone">Ez duzu inor blokeatu.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Protekzio hau aplikazio honetan soilik funtzionatuko du, ez du balio it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -102,6 +103,7 @@
|
|||
<string name="increase_column_count">افزایش تعداد ستون</string>
|
||||
<string name="reduce_column_count">کاهش تعداد ستون</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">تغییر تصویر پوشش</string>
|
||||
|
@ -110,6 +112,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">مدیریت شمارههای مسدود شده</string>
|
||||
|
@ -495,6 +501,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Puhelimen muisti</string>
|
||||
<string name="phone_storage_hidden">Puhelimen muisti (piilotettu muilta sovelluksilta)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Syntymäpäivä</string>
|
||||
<string name="anniversary">Vuosipäivä</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Lisää sarakkeita</string>
|
||||
<string name="reduce_column_count">Vähennä sarakkeita</string>
|
||||
<string name="column_count">Sarakkeiden lukumäärä</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Muotokuvasarakkeiden määrä</string>
|
||||
<string name="landscape_column_count">Maiseman sarakkeiden määrä</string>
|
||||
<string name="change_cover_image">Vaihda kansikuva</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d sarake</item>
|
||||
<item quantity="other">%d saraketta</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Hallitse estettyjä numeroita</string>
|
||||
<string name="not_blocking_anyone">Ei estettyjä numeroita.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Tämä suojaus toimii vain tässä sovelluksessa, se ei korvaa laajempaa järjestelmän kattavaa suojausta.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Mémoire du téléphone</string>
|
||||
<string name="phone_storage_hidden">Mémoire du téléphone (invisible pour les autres applis)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Date de naissance</string>
|
||||
<string name="anniversary">Autre anniversaire</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Ajouter une colonne</string>
|
||||
<string name="reduce_column_count">Supprimer une colonne</string>
|
||||
<string name="column_count">Nombre de colonnes</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Nombre de colonnes Portrait</string>
|
||||
<string name="landscape_column_count">Nombre de colonnes Paysage</string>
|
||||
<string name="change_cover_image">Modifier l\'image du dossier</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="many">%d colonnes</item>
|
||||
<item quantity="other">%d colonnes</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gérer les numéros bloqués</string>
|
||||
<string name="not_blocking_anyone">Aucun numéro n\'est bloqué.</string>
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Le verrouillage ne fonctionne que dans cette application. Cette protection ne remplace pas un chiffrage système.</string>
|
||||
<string name="enter_password">Entrer un mot de passe</string>
|
||||
<string name="password">Mot de passe</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Veuillez entrer le mot de passe</string>
|
||||
<string name="invalid_password">Mot de passe incorrect</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Almacenaxe do móbil</string>
|
||||
<string name="phone_storage_hidden">Almacenaxe do móbil (non visible por outras apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Aniversario</string>
|
||||
<string name="anniversary">Aniversario</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Aumenta o número de columnas</string>
|
||||
<string name="reduce_column_count">Reduce o número de columnas</string>
|
||||
<string name="column_count">Conta columnas</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Número das columnas do retrato</string>
|
||||
<string name="landscape_column_count">Número das columnas horizontais</string>
|
||||
<string name="change_cover_image">Cambiar a imaxe de portada</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d columna</item>
|
||||
<item quantity="other">%d columnas</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Administrar números bloqueados</string>
|
||||
<string name="not_blocking_anyone">Non hai ninguén bloqueado.</string>
|
||||
|
@ -472,6 +478,8 @@
|
|||
<string name="lock_folder_notice">Esta protección só funciona neste app, non está pensado para reemprazar un cifrado de cartafois real a nivel de sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
<string name="anniversary">Anniversary</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
<string name="phone_storage">Spremište na mobitelu</string>
|
||||
<string name="phone_storage_hidden">Spremište na mobitelu (nije vidljivo za druge aplikacije)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Rođendan</string>
|
||||
<string name="anniversary">Obljetnica</string>
|
||||
|
@ -100,6 +101,7 @@
|
|||
<string name="increase_column_count">Povećaj broj stupaca</string>
|
||||
<string name="reduce_column_count">Smanji broj stupaca</string>
|
||||
<string name="column_count">Broj stupaca</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Broj stupaca portreta</string>
|
||||
<string name="landscape_column_count">Broj vodoravnih stupaca</string>
|
||||
<string name="change_cover_image">Promjeni naslovnu sliku</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="few">%d stupca</item>
|
||||
<item quantity="other">%d stupaca</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Upravljanje blokiranim brojevima</string>
|
||||
<string name="not_blocking_anyone">Ne blokirate nikoga.</string>
|
||||
|
@ -482,10 +488,12 @@
|
|||
<string name="lock_folder_pro">Zaključaj mapu (Pro)</string>
|
||||
<string name="unlock_folder">Otključaj mapu</string>
|
||||
<string name="lock_folder_notice">Ova zaštita radi samo u ovoj aplikaciji. Nije namijenjena za stvarno mijenjanje šifriranja mapa cijelog sustava.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<string name="enter_password">Unesite lozinku</string>
|
||||
<string name="password">Lozinka</string>
|
||||
<string name="add_password">Dodaj lozinku</string>
|
||||
<string name="empty_password_new">Molimo unesite lozinku</string>
|
||||
<string name="empty_password">Molimo unesite lozinku</string>
|
||||
<string name="invalid_password">Netočna lozinka</string>
|
||||
<!-- Times -->
|
||||
<string name="yesterday">Jučer</string>
|
||||
<string name="today">Danas</string>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefon tárhelye</string>
|
||||
<string name="phone_storage_hidden">Telefon tárhelye (többi alkalmazás számára nem látható)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Születésnap</string>
|
||||
<string name="anniversary">Évforduló</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Oszlopszám növelése</string>
|
||||
<string name="reduce_column_count">Oszlopszám csökkentése</string>
|
||||
<string name="column_count">Oszlopszám</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Oszlopszám álló módban</string>
|
||||
<string name="landscape_column_count">Oszlopszám fekvő módban</string>
|
||||
<string name="change_cover_image">Borítókép módosítása</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d oszlop</item>
|
||||
<item quantity="other">%d oszlop</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Letiltott telefonszámok kezelése</string>
|
||||
<string name="not_blocking_anyone">Még senkit sem tiltott le.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Ez a védelem csak ezen az alkalmazáson belül működik, nem célja egy valódi rendszerszintű mappatitkosítás helyettesítése.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Penyimpanan telepon</string>
|
||||
<string name="phone_storage_hidden">Penyimpanan telepon (tidak terlihat oleh aplikasi lain)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Ulang tahun</string>
|
||||
<string name="anniversary">Hari jadi</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Tambah jumlah kolom</string>
|
||||
<string name="reduce_column_count">Kurangi jumlah kolom</string>
|
||||
<string name="column_count">Jumlah kolom</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Jumlah kolom potret</string>
|
||||
<string name="landscape_column_count">Jumlah kolom lanskap</string>
|
||||
<string name="change_cover_image">Ubah gambar kover</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Kelola nomor yang diblokir</string>
|
||||
<string name="not_blocking_anyone">Anda tidak memblokir siapapun.</string>
|
||||
|
@ -462,6 +468,8 @@
|
|||
<string name="lock_folder_notice">Perlindungan ini hanya bekerja di aplikasi ini saja, tidak dibuat untuk menggantikan fitur enkripsi folder keseluruhan sistem.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Memoria del telefono</string>
|
||||
<string name="phone_storage_hidden">Memoria del telefono (non visibile alle altre applicazioni)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Compleanno</string>
|
||||
<string name="anniversary">Anniversario</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Aumenta numero colonne</string>
|
||||
<string name="reduce_column_count">Riduci numero colonne</string>
|
||||
<string name="column_count">Conteggio colonne</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Conteggio delle colonne del ritratto</string>
|
||||
<string name="landscape_column_count">Conteggio delle colonne del paesaggio</string>
|
||||
<string name="change_cover_image">Cambia immagine copertina</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="many">%d colonne</item>
|
||||
<item quantity="other">%d colonne</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gestisci i numeri bloccati</string>
|
||||
<string name="not_blocking_anyone">Nessun numero bloccato.</string>
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Questa protezione funziona solo nell\'app, non è pensata per sostituire una vera cifratura delle cartelle a livello di sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">אחסון טלפון</string>
|
||||
<string name="phone_storage_hidden">אחסון טלפון (לא נראה באפליקציות אחרות)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">יום הולדת</string>
|
||||
<string name="anniversary">יום השנה</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">ניהול מספרים חסומים</string>
|
||||
<string name="not_blocking_anyone">אין חסימות</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">内部ストレージ</string>
|
||||
<string name="phone_storage_hidden">内部ストレージ (他のアプリからは表示されません)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">誕生日</string>
|
||||
<string name="anniversary">記念日</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">列数を増やす</string>
|
||||
<string name="reduce_column_count">列数を減らす</string>
|
||||
<string name="column_count">列数</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">縦向きの列数</string>
|
||||
<string name="landscape_column_count">横向きの列数</string>
|
||||
<string name="change_cover_image">カバー画像を変更</string>
|
||||
|
@ -106,6 +108,10 @@
|
|||
<plurals name="column_counts">
|
||||
<item quantity="other">%d 列</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">ブロックした番号を管理</string>
|
||||
<string name="not_blocking_anyone">まだ誰もブロックしていません.</string>
|
||||
|
@ -464,6 +470,8 @@
|
|||
<string name="lock_folder_notice">この保護はアプリ内のみの機能となっており、実際にフォルダ全体を暗号化保護しているわけではありません。</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">생일</string>
|
||||
<string name="anniversary">기념일</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">섬네일크기 축소</string>
|
||||
<string name="reduce_column_count">섬네일크기 확대</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">커버 사진 변경</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -464,6 +470,8 @@
|
|||
<string name="lock_folder_notice">이 보안 설정은 이 앱에서만 작동하며, 실제 시스템 폴더 암호화를 대체할 수 없습니다.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefono atmintis</string>
|
||||
<string name="phone_storage_hidden">Telefono atmintis (nematoma kitoms programėlėms)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Gimtadienis</string>
|
||||
<string name="anniversary">Metinės</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Padidinti stulpelių skaičių</string>
|
||||
<string name="reduce_column_count">Sumažinti stulpelių skaičių</string>
|
||||
<string name="column_count">Stulpelių skaičius</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Stulpelių skaičius portretiniame rėžime</string>
|
||||
<string name="landscape_column_count">"Stulpelių skaičius paverstame rėžime"</string>
|
||||
<string name="change_cover_image">Pakeisti viršelio paveikslą</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="few">%d stulpeliai</item>
|
||||
<item quantity="other">%d stulpelių</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Tvarkyti blokuojamus numerius</string>
|
||||
<string name="not_blocking_anyone">Jūs neturite užblokuotų numerių.</string>
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Ši apsauga veikia tik šioje programėlėje ir ji nepakeičia tikrojo aplankų šifravimo sistemos mastu.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">ഫോൺ സ്റ്റോറേജ്</string>
|
||||
<string name="phone_storage_hidden">ഫോൺ സ്റ്റോറേജ് (മറ്റ് അപ്ലിക്കേഷനുകൾക്ക് ദൃശ്യമല്ല)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">ജന്മദിനം</string>
|
||||
<string name="anniversary">വാർഷികം</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefonlager</string>
|
||||
<string name="phone_storage_hidden">Telefonlager (ikke synlig for andre programmer)</string>
|
||||
<string name="audio">Lyd</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Fødselsdag</string>
|
||||
<string name="anniversary">Jubileum</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Øk antall kolonner</string>
|
||||
<string name="reduce_column_count">Reduser antall kolonner</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Endre omslagsbilde</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Håndter blokkerte numre</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefoonopslag</string>
|
||||
<string name="phone_storage_hidden">Telefoonopslag (niet zichtbaar voor andere apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Bezig met zoeken…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Verjaardag</string>
|
||||
<string name="anniversary">Jubileum</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Meer kolommen</string>
|
||||
<string name="reduce_column_count">Minder kolommen</string>
|
||||
<string name="column_count">Aantal kolommen</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Aantal kolommen in portretmodus</string>
|
||||
<string name="landscape_column_count">Aantal kolommen in landschapsmodus</string>
|
||||
<string name="change_cover_image">Omslagafbeelding wijzigen</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d kolom</item>
|
||||
<item quantity="other">%d kolommen</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d rij</item>
|
||||
<item quantity="other">%d rijen</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Geblokkeerde nummers beheren</string>
|
||||
<string name="not_blocking_anyone">Er worden geen nummers geblokkeerd.</string>
|
||||
|
@ -134,7 +140,7 @@
|
|||
<string name="search">Zoeken</string>
|
||||
<string name="search_in_placeholder">Zoeken in %s</string>
|
||||
<string name="type_2_characters">Vul tenminste 2 tekens in om de zoekopdracht te starten.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Zoekbalk tonen</string>
|
||||
<string name="search_contacts">Contact zoeken</string>
|
||||
<string name="search_favorites">Favoriet zoeken</string>
|
||||
<string name="search_apps">App zoeken</string>
|
||||
|
@ -464,6 +470,8 @@
|
|||
<string name="lock_folder_notice">Deze bescherming werkt alleen in deze app, het is niet de bedoeling dat het een echte systeembrede mapversleuteling vervangt.</string>
|
||||
<string name="enter_password">Wachtwoord invoeren</string>
|
||||
<string name="password">Wachtwoord</string>
|
||||
<string name="add_password">Wachtwoord toevoegen</string>
|
||||
<string name="empty_password_new">Voer een wachtwoord in</string>
|
||||
<string name="empty_password">Voer het wachtwoord in</string>
|
||||
<string name="invalid_password">Onjuist wachtwoord</string>
|
||||
<!-- Times -->
|
||||
|
@ -1112,4 +1120,4 @@
|
|||
<string name="pro_app_refund">Bij het verwijderen van de app binnen 2 uur na aanschaf wordt het aankoopbedrag automatisch teruggestort. Wilt u op een later tijdstip een terugbetaling, neem dan contact op via hello@simplemobiletools.com en het wordt geregeld. Zodoende blijft het gemakkelijk om de app uit te proberen :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Een verzameling eenvoudige open-source Android-apps met widgets, zonder advertenties of onnodige rechten.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">فون دی سٹوریج</string>
|
||||
<string name="phone_storage_hidden">فون دی سٹوریج (ہور اَیپاں نوں نظر نہیں آؤندی)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">جنم دن</string>
|
||||
<string name="anniversary">ورھےگنڈھ</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">کالماں دی گݨتی ودھاؤ</string>
|
||||
<string name="reduce_column_count">کالماں دی گݨتی گھٹاؤ</string>
|
||||
<string name="column_count">کالماں دی گݨتی</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">کھڑ رُخ نظارے دے کالماں دی گݨتی</string>
|
||||
<string name="landscape_column_count">پڑے رُک نظارے دے کالماں دی گݨتی</string>
|
||||
<string name="change_cover_image">اگلی تصویر بدلو</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">روکے نمبراں دیاں سیٹنگاں</string>
|
||||
<string name="not_blocking_anyone">تہاڈے کوئی روکے نمبر نہیں اے۔</string>
|
||||
|
@ -468,6 +474,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">ਫ਼ੋਨ ਸਟੋਰੇਜ</string>
|
||||
<string name="phone_storage_hidden">ਫ਼ੋਨ ਸਟੋਰੇਜ (ਜੋ ਹੋਰ ਐਪਾਂ ਦੁਆਰਾ ਦਿਖਾਈ ਨਹੀਂ ਦਿੰਦੀ)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -103,6 +104,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -495,6 +501,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Pamięć telefonu</string>
|
||||
<string name="phone_storage_hidden">Pamięć telefonu (niewidoczne dla innych aplikacji)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Skanowanie…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Urodziny</string>
|
||||
<string name="anniversary">Rocznica</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Zwiększ liczbę kolumn</string>
|
||||
<string name="reduce_column_count">Zmniejsz liczbę kolumn</string>
|
||||
<string name="column_count">Liczba kolumn</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Liczba kolumn w trybie pionowym</string>
|
||||
<string name="landscape_column_count">Liczba kolumn w trybie poziomym</string>
|
||||
<string name="change_cover_image">Zmień okładkę</string>
|
||||
|
@ -109,6 +111,12 @@
|
|||
<item quantity="many">%d kolumn</item>
|
||||
<item quantity="other">%d kolumn</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d wiersz</item>
|
||||
<item quantity="few">%d wiersze</item>
|
||||
<item quantity="many">%d wierszy</item>
|
||||
<item quantity="other">%d wierszy</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Zarządzaj zablokowanymi numerami</string>
|
||||
<string name="not_blocking_anyone">Nie blokujesz nikogo.</string>
|
||||
|
@ -136,7 +144,7 @@
|
|||
<string name="search">Szukaj</string>
|
||||
<string name="search_in_placeholder">Szukaj w %s</string>
|
||||
<string name="type_2_characters">Wpisz co najmniej 2 znaki, aby rozpocząć wyszukiwanie.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Pokazuj pasek wyszukiwania</string>
|
||||
<string name="search_contacts">Szukaj kontaktów</string>
|
||||
<string name="search_favorites">Szukaj ulubionych</string>
|
||||
<string name="search_apps">Szukaj aplikacji</string>
|
||||
|
@ -477,6 +485,8 @@
|
|||
<string name="lock_folder_notice">Ta ochrona działa tylko w tej aplikacji i nie ma zastępować prawdziwego szyfrowania folderów w całym systemie.</string>
|
||||
<string name="enter_password">Wprowadź hasło</string>
|
||||
<string name="password">Hasło</string>
|
||||
<string name="add_password">Dodaj hasło</string>
|
||||
<string name="empty_password_new">Wprowadź hasło</string>
|
||||
<string name="empty_password">Wprowadź hasło</string>
|
||||
<string name="invalid_password">Nieprawidłowe hasło</string>
|
||||
<!-- Times -->
|
||||
|
@ -1205,4 +1215,4 @@
|
|||
<string name="pro_app_refund">Pamiętaj, że jeśli odinstalujesz którąkolwiek z płatnych aplikacji w ciągu 2 godzin, automatycznie otrzymasz zwrot pieniędzy. Jeśli chcesz zwrotu pieniędzy w dowolnym momencie później, wystarczy skontaktować się z nami na hello@simplemobiletools.com, a go otrzymasz. To sprawia, że aplikacje są łatwe do wypróbowania :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Zestaw prostych, otwartoźródłowych aplikacji na Androida z konfigurowalnymi widżetami, bez reklam i zbędnych uprawnień.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Armazenamento do telefone</string>
|
||||
<string name="phone_storage_hidden">Armazenamento do telefone (não visível por outros aplicativos)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Data de Nascimento</string>
|
||||
<string name="anniversary">Data Especial</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Aumentar número de colunas</string>
|
||||
<string name="reduce_column_count">Reduzir número de colunas</string>
|
||||
<string name="column_count">Número de colunas</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Colunas em retrato</string>
|
||||
<string name="landscape_column_count">Colunas em paisagem</string>
|
||||
<string name="change_cover_image">Trocar imagem de capa</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="many">%d colunas</item>
|
||||
<item quantity="other">%d colunas</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gerenciar números bloqueados</string>
|
||||
<string name="not_blocking_anyone">Não há números bloqueados.</string>
|
||||
|
@ -476,6 +482,8 @@
|
|||
<string name="lock_folder_notice">Esta proteção funciona apenas neste aplicativo, não foi criada para substituir uma criptografia de pasta real a nível de sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Armazenamento do telefone</string>
|
||||
<string name="phone_storage_hidden">Armazenamento do telefone (não visível por outras alicações)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Data de nascimento</string>
|
||||
<string name="anniversary">Aniversário</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Aumentar número de colunas</string>
|
||||
<string name="reduce_column_count">Diminuir número de colunas</string>
|
||||
<string name="column_count">Número de colunas</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Número de colunas modo vertical</string>
|
||||
<string name="landscape_column_count">Número de colunas modo horizontal</string>
|
||||
<string name="change_cover_image">Alterar imagem do álbum</string>
|
||||
|
@ -108,6 +110,10 @@
|
|||
<item quantity="many">%d colunas</item>
|
||||
<item quantity="other">%d colunas</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gerir números bloqueados</string>
|
||||
<string name="not_blocking_anyone">Não existem números bloqueados.</string>
|
||||
|
@ -475,6 +481,8 @@
|
|||
<string name="lock_folder_notice">A proteção aqui definida apenas funciona para esta aplicação e não protege o restante conteúdo do seu sistema.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Stocarea telefonului</string>
|
||||
<string name="phone_storage_hidden">Stocarea telefonului (nu este vizibilă de către alte aplicații)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Ziua de naștere</string>
|
||||
<string name="anniversary">Aniversare</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Creşte numărul de coloane</string>
|
||||
<string name="reduce_column_count">Reduce numărul de coloane</string>
|
||||
<string name="column_count">Număr de coloane</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Număr de coloane în mod portret</string>
|
||||
<string name="landscape_column_count">Număr de coloane în mod peisaj</string>
|
||||
<string name="change_cover_image">Schimbă imaginea de copertă</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Gestionaţi numerele blocate</string>
|
||||
<string name="not_blocking_anyone">Nu blochezi pe nimeni.</string>
|
||||
|
@ -474,6 +480,8 @@
|
|||
<string name="lock_folder_notice">Această protecție funcționează doar în această aplicație, ea nu ar trebui să înlocuiască o criptare reală a dosarelor la nivel de sistem.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Память устройства</string>
|
||||
<string name="phone_storage_hidden">Память устройства (не видна другим приложениям)</string>
|
||||
<string name="audio">Аудио</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">День рождения</string>
|
||||
<string name="anniversary">Годовщина</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Добавить колонку</string>
|
||||
<string name="reduce_column_count">Убрать колонку</string>
|
||||
<string name="column_count">Количество колонок</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Количество колонок в портретной ориентации</string>
|
||||
<string name="landscape_column_count">Количество колонок в альбомной ориентации</string>
|
||||
<string name="change_cover_image">Изменить обложку</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="many">%d колонок</item>
|
||||
<item quantity="other">%d колонок</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Управление блокируемыми номерами</string>
|
||||
<string name="not_blocking_anyone">Нет блокируемых номеров.</string>
|
||||
|
@ -136,7 +142,7 @@
|
|||
<string name="search">Поиск</string>
|
||||
<string name="search_in_placeholder">Поиск в %s</string>
|
||||
<string name="type_2_characters">Введите как минимум 2 символа для начала поиска.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Показывать панель поиска</string>
|
||||
<string name="search_contacts">Поиск контактов</string>
|
||||
<string name="search_favorites">Поиск избранного</string>
|
||||
<string name="search_apps">Поиск приложений</string>
|
||||
|
@ -171,7 +177,7 @@
|
|||
<string name="allow_notifications_voice_recorder">Необходимо разрешить приложению отображать уведомления, иначе оно не может записывать звук.</string>
|
||||
<string name="allow_notifications_incoming_calls">Необходимо разрешить приложению отображать уведомления, иначе оно не сможет показывать входящие вызовы.</string>
|
||||
<string name="allow_notifications_incoming_messages">Необходимо разрешить приложению отображать уведомления, иначе оно не сможет показывать входящие сообщения.</string>
|
||||
<string name="allow_alarm_scheduled_messages">You must allow the app accessing internal alarms, else it cannot send scheduled messages.</string>
|
||||
<string name="allow_alarm_scheduled_messages">Необходимо разрешить приложению доступ к внутренним будильникам, иначе оно не сможет отправлять запланированные сообщения.</string>
|
||||
<string name="grant_permission">Разрешить</string>
|
||||
<string name="permission_required">Требуется разрешение</string>
|
||||
<!-- Renaming -->
|
||||
|
@ -480,6 +486,8 @@
|
|||
<string name="lock_folder_notice">Данная защита работает только в этом приложении, она не должна заменять собой реальное общесистемное шифрование.</string>
|
||||
<string name="enter_password">Введите пароль</string>
|
||||
<string name="password">Пароль</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Пожалуйста, введите пароль</string>
|
||||
<string name="invalid_password">Неправильный пароль</string>
|
||||
<!-- Times -->
|
||||
|
@ -1185,4 +1193,4 @@
|
|||
<string name="pro_app_refund">Не забывайте, что если вы удалите любое платное приложение в течение 2 часов, вам будет автоматически возвращена сумма покупки. Если вы захотите вернуть деньги позднее, просто свяжитесь с нами по адресу hello@simplemobiletools.com и вы их получите. Так что можно легко опробовать это приложение :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Группа простых приложений для Android с открытым исходным кодом с настраиваемыми виджетами без рекламы и ненужных разрешений.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
<string name="phone_storage">Úložisko mobilu</string>
|
||||
<string name="phone_storage_hidden">Úložisko mobilu (neviditeľné pre ostatné apky)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Skenuje sa…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Narodeniny</string>
|
||||
|
@ -101,7 +102,8 @@
|
|||
<string name="list">Zoznam</string>
|
||||
<string name="increase_column_count">Zvýšiť počet stĺpcov</string>
|
||||
<string name="reduce_column_count">Znížiť počet stĺpcov</string>
|
||||
<string name="column_count">Počet stĺpcov Column count</string>
|
||||
<string name="column_count">Počet stĺpcov</string>
|
||||
<string name="row_count">Počet riadkov</string>
|
||||
<string name="portrait_column_count">Počet stĺpcov v zobrazení na výšku</string>
|
||||
<string name="landscape_column_count">Počet stĺpcov v zobrazení na šírku</string>
|
||||
<string name="change_cover_image">Zmeniť obal albumu</string>
|
||||
|
@ -111,6 +113,11 @@
|
|||
<item quantity="few">%d stĺpce</item>
|
||||
<item quantity="other">%d stĺpcov</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d riadok</item>
|
||||
<item quantity="few">%d riadky</item>
|
||||
<item quantity="other">%d riadkov</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Spravovať blokované čísla</string>
|
||||
|
@ -501,6 +508,8 @@
|
|||
<string name="lock_folder_notice">Táto ochrana funguje iba v tejto aplikácii, nemá za cieľ nahradiť šifrovanie fungujúce po celom systéme.</string>
|
||||
<string name="enter_password">Zadajte heslo</string>
|
||||
<string name="password">Heslo</string>
|
||||
<string name="add_password">Zaheslovať</string>
|
||||
<string name="empty_password_new">Prosím zadajte heslo</string>
|
||||
<string name="empty_password">Prosím zadajte heslo</string>
|
||||
<string name="invalid_password">Nesprávne heslo</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Shramba telefona</string>
|
||||
<string name="phone_storage_hidden">Shramba telefona (ni vidna drugim aplikacijam)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Rojstni dan</string>
|
||||
<string name="anniversary">Obletnica</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Povečaj število stolpcev</string>
|
||||
<string name="reduce_column_count">Zmanjšaj število stolpcev</string>
|
||||
<string name="column_count">Število stolpcev</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Število pokončnih stolpcev</string>
|
||||
<string name="landscape_column_count">Ležeče število stolpcev</string>
|
||||
<string name="change_cover_image">Spremeni naslovno fotografijo</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="few">%d stolpci</item>
|
||||
<item quantity="other">%d stolpcev</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Upravljanje blokiranih številk</string>
|
||||
<string name="not_blocking_anyone">Trenutno nikogar ne blokirate.</string>
|
||||
|
@ -483,6 +489,8 @@
|
|||
<string name="lock_folder_notice">Ta zaščita deluje samo v tej aplikaciji in ni mišljena kot nadomestek pravega sistemskega šifriranja map.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Меморија телефона</string>
|
||||
<string name="phone_storage_hidden">Складиште телефона (није видљиво другим апликацијама)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Рођендан</string>
|
||||
<string name="anniversary">Годишњица</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Повећај број колона</string>
|
||||
<string name="reduce_column_count">Смањи број колона</string>
|
||||
<string name="column_count">Број колона</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Портретни број колона</string>
|
||||
<string name="landscape_column_count">Пејзажни број колона</string>
|
||||
<string name="change_cover_image">Промени насловну слику</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Управљајте блокираним бројевима</string>
|
||||
<string name="not_blocking_anyone">Не блокирате никога.</string>
|
||||
|
@ -479,10 +485,12 @@
|
|||
<string name="lock_folder_pro">Закључај мапу (Про)</string>
|
||||
<string name="unlock_folder">Откључај мапу</string>
|
||||
<string name="lock_folder_notice">Ова заштита функционише само у овој апликацији, не би требало да замени право шифровање директоријума у целом систему.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<string name="enter_password">Унесите шифру</string>
|
||||
<string name="password">Шифра</string>
|
||||
<string name="add_password">Додај шифру</string>
|
||||
<string name="empty_password_new">Молимо унесите шифру</string>
|
||||
<string name="empty_password">Молимо унесите шифру</string>
|
||||
<string name="invalid_password">Погрешна шифра</string>
|
||||
<!-- Times -->
|
||||
<string name="yesterday">Јуче</string>
|
||||
<string name="today">Данас</string>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefonlagring</string>
|
||||
<string name="phone_storage_hidden">Telefonlagring (inte synligt för andra appar)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Födelsedag</string>
|
||||
<string name="anniversary">Årsdag</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Öka antalet kolumner</string>
|
||||
<string name="reduce_column_count">Minska antalet kolumner</string>
|
||||
<string name="column_count">Antal kolumner</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Antal kolumner i stående läge</string>
|
||||
<string name="landscape_column_count">Antal kolumner i liggande läge</string>
|
||||
<string name="change_cover_image">Byt omslagsbild</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d kolumn</item>
|
||||
<item quantity="other">%d kolumner</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Hantera blockerade nummer</string>
|
||||
<string name="not_blocking_anyone">Du blockerar inte någon.</string>
|
||||
|
@ -471,6 +477,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
@ -1138,4 +1146,4 @@
|
|||
<string name="pro_app_refund">Don\'t forget that if you uninstall any paid app within 2 hours, you will automatically be refunded. If you want a refund anytime later, just contact us at hello@simplemobiletools.com and you will get it. That makes it easy to try it out :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">A group of simple, open source Android apps with customizable widgets, without ads and unnecessary permissions.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
<string name="anniversary">Anniversary</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">நெடுவரிசை அதிகரி</string>
|
||||
<string name="reduce_column_count">நெடுவரிசை குறை</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">அட்டைப் படத்தை மாற்று</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">தடுக்கப்பட்ட எண்களை நிர்வகி</string>
|
||||
<string name="not_blocking_anyone">நீங்கள் யாரையும் தடுக்கவில்லை.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -103,6 +104,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -496,6 +502,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Telefon belleği</string>
|
||||
<string name="phone_storage_hidden">Telefon belleği (diğer uygulamalar tarafından görülmez)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Taranıyor…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Doğum günü</string>
|
||||
<string name="anniversary">Yıldönümü</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Sütun sayısını artır</string>
|
||||
<string name="reduce_column_count">Sütun sayısını azalt</string>
|
||||
<string name="column_count">Sütun sayısı</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Dikey sütun sayısı</string>
|
||||
<string name="landscape_column_count">Yatay sütun sayısı</string>
|
||||
<string name="change_cover_image">Kapak resmini değiştir</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d sütun</item>
|
||||
<item quantity="other">%d sütun</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d satır</item>
|
||||
<item quantity="other">%d satır</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Engellenen numaraları yönet</string>
|
||||
<string name="not_blocking_anyone">Kimseyi engellemiyorsun.</string>
|
||||
|
@ -134,7 +140,7 @@
|
|||
<string name="search">Ara</string>
|
||||
<string name="search_in_placeholder">%s içinde ara</string>
|
||||
<string name="type_2_characters">Aramaya başlamak için en az 2 karakter yazın.</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">Arama çubuğu göster</string>
|
||||
<string name="search_contacts">Kişileri ara</string>
|
||||
<string name="search_favorites">Favorileri ara</string>
|
||||
<string name="search_apps">Uygulama ara</string>
|
||||
|
@ -169,7 +175,7 @@
|
|||
<string name="allow_notifications_voice_recorder">Uygulamanın bildirimleri göstermesine izin vermelisiniz, aksi halde ses kaydedemez.</string>
|
||||
<string name="allow_notifications_incoming_calls">Uygulamanın bildirimleri göstermesine izin vermelisiniz, aksi halde gelen aramaları gösteremez.</string>
|
||||
<string name="allow_notifications_incoming_messages">Uygulamanın bildirimleri göstermesine izin vermelisiniz, aksi halde gelen mesajları gösteremez.</string>
|
||||
<string name="allow_alarm_scheduled_messages">You must allow the app accessing internal alarms, else it cannot send scheduled messages.</string>
|
||||
<string name="allow_alarm_scheduled_messages">Uygulamanın dahili alarmlara erişmesine izin vermelisiniz, aksi takdirde zamanlanan mesajlar gönderemez.</string>
|
||||
<string name="grant_permission">İzin Ver</string>
|
||||
<string name="permission_required">İzin Gerekli</string>
|
||||
<!-- Renaming -->
|
||||
|
@ -468,6 +474,8 @@
|
|||
<string name="lock_folder_notice">Bu koruma yalnızca bu uygulamada çalışır, gerçek bir sistem çapında klasör şifrelemesinin yerini almaz.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Lütfen bir parola girin</string>
|
||||
<string name="empty_password">Lütfen parolayı girin</string>
|
||||
<string name="invalid_password">Yanlış parola</string>
|
||||
<!-- Times -->
|
||||
|
@ -1144,4 +1152,4 @@
|
|||
<string name="pro_app_refund">Ücretli herhangi bir uygulamayı 2 saat içinde kaldırırsanız, otomatik olarak iade edileceğini unutmayın. İstediğiniz zaman geri ödeme almak isterseniz, hello@simplemobiletools.com adresinden bizimle iletişime geçmeniz yeterli olacaktır. Bu denemeyi kolaylaştırır :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Özelleştirilebilir widget\'lara sahip, reklamlar ve gereksiz izinler içermeyen bir grup basit, açık kaynaklı Android uygulaması.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Пам\'ять пристрою</string>
|
||||
<string name="phone_storage_hidden">Пам\'ять пристрою (прихована від інших застосунків)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">День народження</string>
|
||||
<string name="anniversary">Річниця</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Збільшити кількість колонок</string>
|
||||
<string name="reduce_column_count">Зменшити кількість колонок</string>
|
||||
<string name="column_count">Кількість стовпців</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Кількість портретних стовпців</string>
|
||||
<string name="landscape_column_count">Альбомна кількість стовпців</string>
|
||||
<string name="change_cover_image">Змінити обкладинку</string>
|
||||
|
@ -109,6 +111,10 @@
|
|||
<item quantity="many">%d стовпців</item>
|
||||
<item quantity="other">%d стовпців</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Керувати блокованими номерами</string>
|
||||
<string name="not_blocking_anyone">Немає блокованих номерів.</string>
|
||||
|
@ -478,6 +484,8 @@
|
|||
<string name="lock_folder_notice">Цей захист працює тільки у цьому додатку, він не призначений для заміни загальносистемного шифрування тек.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Будь ласка, введіть пароль</string>
|
||||
<string name="invalid_password">Неправильний пароль</string>
|
||||
<!-- Times -->
|
||||
|
@ -1205,4 +1213,4 @@
|
|||
<string name="pro_app_refund">Пам\'ятайте: якщо ви видалите будь-який платний додаток протягом 2 годин, вам буде автоматично повернена сума покупки. Якщо ви захочете повернути гроші пізніше, сконтактуйте з нами за адресою hello@simplemobiletools.com, і ви їх отримаєте. Таким чином ви можете легко спробувати додаток :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">Група простих Android-додатків з відкритим вихідним кодом, настроювальними віджетами, без реклами та непотрібних дозволів.</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Bộ nhớ điện thoại</string>
|
||||
<string name="phone_storage_hidden">Bộ nhớ điện thoại (không hiển thị bởi các ứng dụng khác)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">Ngày sinh nhật</string>
|
||||
<string name="anniversary">Dịp kỉ niệm</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">Tăng số lượng cột</string>
|
||||
<string name="reduce_column_count">Giảm số lượng cột</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Thay đổi ảnh bìa</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
<string name="not_blocking_anyone">You are not blocking anyone.</string>
|
||||
|
@ -470,6 +476,8 @@
|
|||
<string name="lock_folder_notice">Bảo vệ này chỉ hoạt động trong ứng dụng này, nó không được phép thay thế mã hóa thư mục toàn hệ thống thực sự.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
5
commons/src/main/res/values-w600dp/integers.xml
Normal file
5
commons/src/main/res/values-w600dp/integers.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<integer name="contacts_grid_columns_count_portrait">5</integer>
|
||||
<integer name="contacts_grid_columns_count_landscape">8</integer>
|
||||
</resources>
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">手机存储</string>
|
||||
<string name="phone_storage_hidden">手机空间 (其他程序不可见)</string>
|
||||
<string name="audio">音频</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">生日</string>
|
||||
<string name="anniversary">纪念日</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">显示更多项目</string>
|
||||
<string name="reduce_column_count">显示更少项目</string>
|
||||
<string name="column_count">列数</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">垂直列数</string>
|
||||
<string name="landscape_column_count">水平列数</string>
|
||||
<string name="change_cover_image">更换封面图片</string>
|
||||
|
@ -106,6 +108,10 @@
|
|||
<plurals name="column_counts">
|
||||
<item quantity="other">%d 列</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">管理黑名单</string>
|
||||
<string name="not_blocking_anyone">你没有拦截任何人。</string>
|
||||
|
@ -133,7 +139,7 @@
|
|||
<string name="search">搜索</string>
|
||||
<string name="search_in_placeholder">在 %s 中搜索</string>
|
||||
<string name="type_2_characters">请输入至少两个字符来开始搜索。</string>
|
||||
<string name="show_search">Show a search bar</string>
|
||||
<string name="show_search">显示搜索栏</string>
|
||||
<string name="search_contacts">搜索联系人</string>
|
||||
<string name="search_favorites">搜索收藏</string>
|
||||
<string name="search_apps">搜索应用</string>
|
||||
|
@ -461,6 +467,8 @@
|
|||
<string name="lock_folder_notice">此保护仅适用于此应用程序,不应取代真正的系统级文件夹加密。</string>
|
||||
<string name="enter_password">输入密码</string>
|
||||
<string name="password">密码</string>
|
||||
<string name="add_password">添加密码</string>
|
||||
<string name="empty_password_new">请输入密码</string>
|
||||
<string name="empty_password">请输入密码</string>
|
||||
<string name="invalid_password">密码不正确</string>
|
||||
<!-- Times -->
|
||||
|
@ -1094,4 +1102,4 @@
|
|||
<string name="pro_app_refund">别忘了如果您在2小时内卸载任何付费应用将会自动退款。如果您想在之后退款,只需通过 hello@simplemobiletools.com 联系我们即可。这样您就可以放心试用了 :)</string>
|
||||
<!-- Description of our developer profile on Google Play, it can have max 140 characters -->
|
||||
<string name="developer_description">一组简单且开源的 Android 应用程序,可自定义小部件,并且没有广告和不必要的权限。</string>
|
||||
</resources>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">手機容量</string>
|
||||
<string name="phone_storage_hidden">手機容量 (其他程式不可見)</string>
|
||||
<string name="audio">音訊</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">生日</string>
|
||||
<string name="anniversary">紀念日</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">显示更多项目</string>
|
||||
<string name="reduce_column_count">显示更少项目</string>
|
||||
<string name="column_count">列数</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">垂直列数</string>
|
||||
<string name="landscape_column_count">水平列数</string>
|
||||
<string name="change_cover_image">更换封面图片</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">管理黑名单</string>
|
||||
<string name="not_blocking_anyone">你没有拦截任何人。</string>
|
||||
|
@ -462,6 +468,8 @@
|
|||
<string name="lock_folder_notice">此保护仅适用于此应用程序,不应取代真正的系统级文件夹加密。</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">手機空間</string>
|
||||
<string name="phone_storage_hidden">手機空間 (其他程式不可見)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
<!-- Events -->
|
||||
<string name="birthday">生日</string>
|
||||
<string name="anniversary">紀念日</string>
|
||||
|
@ -99,6 +100,7 @@
|
|||
<string name="increase_column_count">增加欄數</string>
|
||||
<string name="reduce_column_count">減少欄數</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">更換封面圖片</string>
|
||||
|
@ -107,6 +109,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">管理黑名單</string>
|
||||
<string name="not_blocking_anyone">你沒有封鎖任何人</string>
|
||||
|
@ -466,6 +472,8 @@
|
|||
<string name="lock_folder_notice">這保護僅限作用於此應用程式,並不該用來取代真正系統級的資料夾加密。</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
<!-- Times -->
|
||||
|
@ -773,13 +781,39 @@
|
|||
<string name="more_info">更多資訊</string>
|
||||
<string name="upgrade">升級</string>
|
||||
<string name="upgrade_calendar">你必須手動搬移儲存在本機端的活動,透過匯出.ics檔案再接著匯入。你可以在主畫面選單中,找到 匯出/匯入 兩個按鈕。</string>
|
||||
<string name="upgraded_from_free_gallery">Hello,\n\nseems like you just upgraded from the free version. Once you are happy with this one and maybe migrated your settings and favorites over, you can uninstall the old free one to avoid launching it accidentally as you will not need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free_gallery">您好,
|
||||
\n
|
||||
\n看起來您剛從免費版升級。一旦您對這個版本感到滿意,並且可能已經遷移了您的設定和收藏,您可以卸載舊的免費版本,以避免意外啟動它,因為您將不再需要它,這也將防止此對話框彈出。
|
||||
\n
|
||||
\n謝謝!</string>
|
||||
<string name="upgraded_to_pro_gallery">Hello,\n\nseems like you already have the Pro app version too. Once you are happy with it and maybe migrated your settings and favorites over, you can uninstall this one to avoid launching it accidentally as you will not need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free">Hello,\n\nseems like you just upgraded from the free version. Once you are happy with this one and maybe migrated your data over, you can uninstall the old free one to avoid launching it accidentally as you will not need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free">您好,
|
||||
\n
|
||||
\n看起來您剛剛從免費版升級到付費版。一旦您對新版本滿意,並且可能已經將您的數據遷移過來,您就可以卸載舊的免費版,以避免意外啟動它,因為您將不再需要它了,這也將防止此對話框顯示。
|
||||
\n
|
||||
\n謝謝!</string>
|
||||
<string name="upgraded_to_pro">Hello,\n\nseems like you already have the Pro app version too. Once you are happy with it and maybe migrated your data over, you can uninstall this one to avoid launching it accidentally as you will not need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free_calendar">Hello,\n\nseems like you just upgraded from the free version. If you want to migrate your locally stored events over, you have to do it manually by exporting them into an .ics file in the free app version and importing here through the top menu. \n\nOnce you are satisfied with your setup in the Pro version, you can uninstall the old free one as you won\'t need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free_contacts">Hello,\n\nseems like you just upgraded from the free version. If you had any contacts stored under \"%s\", you have to migrate them manually by exporting in a .vcf file from the free app version and importing here through the top menu.\n\nOnce you are satisfied with your setup in the Pro version, you can uninstall the old free one as you won\'t need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free_notes">Hello,\n\nseems like you just upgraded from the free version. If you want to migrate your notes over, you have to do it manually by exporting them into a file in the free app version and importing here through the top menu. \n\nOnce you are satisfied with your setup in the Pro version, you can uninstall the old free one as you won\'t need it anymore.\n\nThanks!</string>
|
||||
<string name="upgraded_from_free_calendar">您好,
|
||||
\n
|
||||
\n看來您剛從免費版本升級上來。如果您想要將本地儲存的活動遷移到新版本,您必須手動將它們從免費的應用版本中導出成 .ics 檔案,然後透過頂部選單導入。
|
||||
\n
|
||||
\n一旦您對 Pro 版本的設定感到滿意,您可以卸載舊的免費版本,因為您將不再需要它,這也將阻止此對話框的再次出現。
|
||||
\n
|
||||
\n謝謝!</string>
|
||||
<string name="upgraded_from_free_contacts">您好,
|
||||
\n
|
||||
\n看來您剛從免費版本升級過來。若您在「%s」之下儲存了任何聯絡人,您需要手動進行遷移,方法是從免費版本的應用程式匯出 .vcf 檔案,然後透過頂部選單在這裡匯入。
|
||||
\n
|
||||
\n一旦您對於 Pro 版本的設定感到滿意,您就可以卸載舊的免費版本,因為您將不再需要它,這也將阻止此對話框再次出現。
|
||||
\n
|
||||
\n謝謝!</string>
|
||||
<string name="upgraded_from_free_notes">您好,
|
||||
\n
|
||||
\n看起來您剛剛由免費版本升級過來。如果您想要將您的筆記遷移過來,您需要手動進行,首先在免費版本的應用程式中將它們匯出成一個檔案,然後透過上方選單匯入到這裡。
|
||||
\n
|
||||
\n一旦您對 Pro 版本的設定感到滿意,您就可以卸載舊的免費版本,因為您將不再需要它,這也會避免這個對話框再次彈出。
|
||||
\n
|
||||
\n謝謝!</string>
|
||||
<!-- About -->
|
||||
<string name="about">關於</string>
|
||||
<string name="website">Website</string>
|
||||
|
|
|
@ -3,4 +3,6 @@
|
|||
<integer name="default_sorting">1</integer>
|
||||
<integer name="default_font_size">1</integer>
|
||||
<integer name="default_viewpager_page">0</integer>
|
||||
<integer name="contacts_grid_columns_count_portrait">3</integer>
|
||||
<integer name="contacts_grid_columns_count_landscape">5</integer>
|
||||
</resources>
|
||||
|
|
|
@ -77,6 +77,7 @@
|
|||
<string name="phone_storage">Phone storage</string>
|
||||
<string name="phone_storage_hidden">Phone storage (not visible by other apps)</string>
|
||||
<string name="audio">Audio</string>
|
||||
<string name="scanning">Scanning…</string>
|
||||
|
||||
<!-- Events -->
|
||||
<string name="birthday">Birthday</string>
|
||||
|
@ -103,6 +104,7 @@
|
|||
<string name="increase_column_count">Increase column count</string>
|
||||
<string name="reduce_column_count">Reduce column count</string>
|
||||
<string name="column_count">Column count</string>
|
||||
<string name="row_count">Row count</string>
|
||||
<string name="portrait_column_count">Portrait column count</string>
|
||||
<string name="landscape_column_count">Landscape column count</string>
|
||||
<string name="change_cover_image">Change cover image</string>
|
||||
|
@ -111,6 +113,10 @@
|
|||
<item quantity="one">%d column</item>
|
||||
<item quantity="other">%d columns</item>
|
||||
</plurals>
|
||||
<plurals name="row_counts">
|
||||
<item quantity="one">%d row</item>
|
||||
<item quantity="other">%d rows</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Blocked numbers -->
|
||||
<string name="manage_blocked_numbers">Manage blocked numbers</string>
|
||||
|
@ -496,6 +502,8 @@
|
|||
<string name="lock_folder_notice">This protection works in this app only, it is not supposed to replace a real systemwide folder encryption.</string>
|
||||
<string name="enter_password">Enter password</string>
|
||||
<string name="password">Password</string>
|
||||
<string name="add_password">Add password</string>
|
||||
<string name="empty_password_new">Please enter a password</string>
|
||||
<string name="empty_password">Please enter the password</string>
|
||||
<string name="invalid_password">Incorrect password</string>
|
||||
|
||||
|
|
Loading…
Reference in a new issue