commit
001fe2cc19
49 changed files with 564 additions and 657 deletions
|
@ -7,7 +7,7 @@ buildscript {
|
|||
propMinSdkVersion = 16
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '3.0.21'
|
||||
propVersionName = '3.1.4'
|
||||
kotlin_version = '1.2.0'
|
||||
support_libs = '27.0.2'
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.simplemobiletools.commons.adapters
|
||||
|
||||
import android.content.pm.PackageManager
|
||||
import android.view.Menu
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
|
@ -61,18 +62,34 @@ class FilepickerItemsAdapter(activity: BaseSimpleActivity, val fileDirItems: Lis
|
|||
view.apply {
|
||||
list_item_name.text = fileDirItem.name
|
||||
list_item_name.setTextColor(textColor)
|
||||
list_item_details.setTextColor(textColor)
|
||||
|
||||
if (fileDirItem.isDirectory) {
|
||||
list_item_icon.setImageDrawable(folderDrawable)
|
||||
list_item_details.text = getChildrenCnt(fileDirItem)
|
||||
} else {
|
||||
val path = fileDirItem.path
|
||||
val options = RequestOptions().centerCrop().error(fileDrawable)
|
||||
Glide.with(context).load(path).transition(withCrossFade()).apply(options).into(list_item_icon)
|
||||
list_item_details.text = fileDirItem.size.formatSize()
|
||||
}
|
||||
val path = fileDirItem.path
|
||||
val options = RequestOptions()
|
||||
.centerCrop()
|
||||
.error(fileDrawable)
|
||||
|
||||
list_item_details.setTextColor(textColor)
|
||||
val itemToLoad = if (fileDirItem.name.endsWith(".apk", true)) {
|
||||
val packageInfo = context.packageManager.getPackageArchiveInfo(path, PackageManager.GET_ACTIVITIES)
|
||||
if (packageInfo != null) {
|
||||
val appInfo = packageInfo.applicationInfo
|
||||
appInfo.sourceDir = path
|
||||
appInfo.publicSourceDir = path
|
||||
appInfo.loadIcon(context.packageManager)
|
||||
} else {
|
||||
path
|
||||
}
|
||||
} else {
|
||||
path
|
||||
}
|
||||
|
||||
Glide.with(context).load(itemToLoad).transition(withCrossFade()).apply(options).into(list_item_icon)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ package com.simplemobiletools.commons.dialogs
|
|||
|
||||
import android.app.Activity
|
||||
import android.support.v7.app.AlertDialog
|
||||
import android.text.Html
|
||||
import android.text.method.LinkMovementMethod
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.launchViewIntent
|
||||
|
@ -11,6 +12,7 @@ import kotlinx.android.synthetic.main.dialog_donate.view.*
|
|||
class DonateDialog(val activity: Activity) {
|
||||
init {
|
||||
val view = activity.layoutInflater.inflate(R.layout.dialog_donate, null).apply {
|
||||
donate.text = Html.fromHtml(activity.getString(R.string.donate_please))
|
||||
donate.movementMethod = LinkMovementMethod.getInstance()
|
||||
}
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ class PropertiesDialog() {
|
|||
if (cursor.moveToFirst()) {
|
||||
val dateModified = cursor.getIntValue(MediaStore.Images.Media.DATE_MODIFIED)
|
||||
activity.runOnUiThread {
|
||||
view.findViewById<TextView>(R.id.properties_last_modified).property_value.text = (dateModified * 1000L).formatLastModified()
|
||||
view.findViewById<TextView>(R.id.properties_last_modified).property_value.text = (dateModified * 1000L).formatDate()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ class PropertiesDialog() {
|
|||
}
|
||||
|
||||
if (file.isDirectory) {
|
||||
addProperty(R.string.last_modified, file.lastModified().formatLastModified())
|
||||
addProperty(R.string.last_modified, file.lastModified().formatDate())
|
||||
} else {
|
||||
addProperty(R.string.last_modified, "...", R.id.properties_last_modified)
|
||||
addExifProperties(path)
|
||||
|
|
|
@ -2,6 +2,7 @@ package com.simplemobiletools.commons.dialogs
|
|||
|
||||
import android.app.Activity
|
||||
import android.support.v7.app.AlertDialog
|
||||
import android.text.Html
|
||||
import android.text.method.LinkMovementMethod
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.launchViewIntent
|
||||
|
@ -11,7 +12,8 @@ import kotlinx.android.synthetic.main.dialog_purchase_thank_you.view.*
|
|||
class PurchaseThankYouDialog(val activity: Activity) {
|
||||
init {
|
||||
val view = activity.layoutInflater.inflate(R.layout.dialog_purchase_thank_you, null).apply {
|
||||
install_thank_you.movementMethod = LinkMovementMethod.getInstance()
|
||||
purchase_thank_you.text = Html.fromHtml(activity.getString(R.string.purchase_thank_you))
|
||||
purchase_thank_you.movementMethod = LinkMovementMethod.getInstance()
|
||||
}
|
||||
|
||||
AlertDialog.Builder(activity)
|
||||
|
|
|
@ -13,8 +13,8 @@ import com.simplemobiletools.commons.models.RadioItem
|
|||
import kotlinx.android.synthetic.main.dialog_radio_group.view.*
|
||||
import java.util.*
|
||||
|
||||
class RadioGroupDialog(val activity: Activity, val items: ArrayList<RadioItem>, val checkedItemId: Int, val titleId: Int = 0, val callback: (newValue: Any) -> Unit) :
|
||||
RadioGroup.OnCheckedChangeListener {
|
||||
class RadioGroupDialog(val activity: Activity, val items: ArrayList<RadioItem>, val checkedItemId: Int = -1, val titleId: Int = 0,
|
||||
val callback: (newValue: Any) -> Unit) : RadioGroup.OnCheckedChangeListener {
|
||||
val dialog: AlertDialog
|
||||
var wasInit = false
|
||||
var selectedItemId = -1
|
||||
|
|
|
@ -9,7 +9,6 @@ import android.content.Intent
|
|||
import android.graphics.drawable.ColorDrawable
|
||||
import android.media.MediaScannerConnection
|
||||
import android.net.Uri
|
||||
import android.os.Build
|
||||
import android.os.Looper
|
||||
import android.os.TransactionTooLargeException
|
||||
import android.provider.DocumentsContract
|
||||
|
@ -591,7 +590,7 @@ fun BaseSimpleActivity.restartActivity() {
|
|||
startActivity(intent)
|
||||
}
|
||||
|
||||
fun Activity.isActivityDestroyed() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1 && isDestroyed
|
||||
fun Activity.isActivityDestroyed() = isJellyBean1Plus() && isDestroyed
|
||||
|
||||
fun Activity.updateSharedTheme(sharedTheme: SharedTheme): Int {
|
||||
try {
|
||||
|
|
|
@ -17,6 +17,7 @@ import android.provider.OpenableColumns
|
|||
import android.support.v4.content.ContextCompat
|
||||
import android.support.v4.content.CursorLoader
|
||||
import android.support.v4.content.FileProvider
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.Toast
|
||||
import com.github.ajalt.reprint.core.Reprint
|
||||
|
@ -33,11 +34,15 @@ import java.io.File
|
|||
fun Context.isOnMainThread() = Looper.myLooper() == Looper.getMainLooper()
|
||||
fun Context.getSharedPrefs() = getSharedPreferences(PREFS_KEY, Context.MODE_PRIVATE)
|
||||
|
||||
fun Context.isJellyBean1Plus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1
|
||||
fun Context.isAndroidFour() = Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT_WATCH
|
||||
fun Context.isKitkatPlus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT
|
||||
fun Context.isLollipopPlus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP
|
||||
fun Context.isMarshmallowPlus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.M
|
||||
fun Context.isNougatPlus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
|
||||
fun Context.isOreoPlus() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O
|
||||
|
||||
val Context.isRTLLayout: Boolean get() = if (isJellyBean1Plus()) resources.configuration.layoutDirection == View.LAYOUT_DIRECTION_RTL else false
|
||||
|
||||
fun Context.updateTextColors(viewGroup: ViewGroup, tmpTextColor: Int = 0, tmpAccentColor: Int = 0) {
|
||||
val textColor = if (tmpTextColor == 0) baseConfig.textColor else tmpTextColor
|
||||
|
@ -266,21 +271,25 @@ fun Context.getFilenameFromContentUri(uri: Uri): String? {
|
|||
}
|
||||
|
||||
fun Context.getSharedTheme(callback: (sharedTheme: SharedTheme?) -> Unit) {
|
||||
var wasSharedThemeReturned = false
|
||||
val cursorLoader = CursorLoader(this, MyContentProvider.CONTENT_URI, null, null, null, null)
|
||||
Thread {
|
||||
val cursor = cursorLoader.loadInBackground()
|
||||
|
||||
cursor.use {
|
||||
if (cursor?.moveToFirst() == true) {
|
||||
cursor?.use {
|
||||
if (cursor.moveToFirst()) {
|
||||
val textColor = cursor.getIntValue(COL_TEXT_COLOR)
|
||||
val backgroundColor = cursor.getIntValue(COL_BACKGROUND_COLOR)
|
||||
val primaryColor = cursor.getIntValue(COL_PRIMARY_COLOR)
|
||||
val lastUpdatedTS = cursor.getIntValue(COL_LAST_UPDATED_TS)
|
||||
val sharedTheme = SharedTheme(textColor, backgroundColor, primaryColor, lastUpdatedTS)
|
||||
callback(sharedTheme)
|
||||
} else {
|
||||
callback(null)
|
||||
wasSharedThemeReturned = true
|
||||
}
|
||||
}
|
||||
|
||||
if (!wasSharedThemeReturned) {
|
||||
callback(null)
|
||||
}
|
||||
}.start()
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ fun Long.formatSize(): String {
|
|||
return "${DecimalFormat("#,##0.#").format(this / Math.pow(1024.0, digitGroups.toDouble()))} ${units[digitGroups]}"
|
||||
}
|
||||
|
||||
fun Long.formatLastModified(): String {
|
||||
fun Long.formatDate(): String {
|
||||
val cal = Calendar.getInstance(Locale.ENGLISH)
|
||||
cal.timeInMillis = this
|
||||
return DateFormat.format("dd.MM.yyyy kk:mm", cal).toString()
|
||||
|
|
|
@ -85,7 +85,7 @@ fun String.getExifDateTaken(exif: ExifInterface): String {
|
|||
if (it?.isNotEmpty() == true) {
|
||||
try {
|
||||
val simpleDateFormat = SimpleDateFormat("yyyy:MM:dd kk:mm:ss", Locale.ENGLISH)
|
||||
return simpleDateFormat.parse(it).time.formatLastModified().trim()
|
||||
return simpleDateFormat.parse(it).time.formatDate().trim()
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -125,4 +125,8 @@ open class BaseConfig(val context: Context) {
|
|||
var wasSharedThemeAfterUpdateChecked: Boolean
|
||||
get() = prefs.getBoolean(WAS_SHARED_THEME_AFTER_UPDATE_CHECKED, false)
|
||||
set(wasSharedThemeAfterUpdateChecked) = prefs.edit().putBoolean(WAS_SHARED_THEME_AFTER_UPDATE_CHECKED, wasSharedThemeAfterUpdateChecked).apply()
|
||||
|
||||
var showInfoBubble: Boolean
|
||||
get() = prefs.getBoolean(SHOW_INFO_BUBBLE, true)
|
||||
set(showInfoBubble) = prefs.edit().putBoolean(SHOW_INFO_BUBBLE, showInfoBubble).apply()
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@ val IS_USING_SHARED_THEME = "is_using_shared_theme"
|
|||
val WAS_SHARED_THEME_FORCED = "was_shared_theme_forced"
|
||||
val WAS_CUSTOM_THEME_SWITCH_DESCRIPTION_SHOWN = "was_custom_theme_switch_description_shown"
|
||||
val WAS_SHARED_THEME_AFTER_UPDATE_CHECKED = "was_shared_theme_after_update_checked"
|
||||
val SHOW_INFO_BUBBLE = "show_info_bubble"
|
||||
|
||||
// licenses
|
||||
val LICENSE_KOTLIN = 1
|
||||
|
|
|
@ -17,9 +17,11 @@ class SharedThemeReceiver : BroadcastReceiver() {
|
|||
wasSharedThemeEverActivated = true
|
||||
|
||||
context.getSharedTheme {
|
||||
textColor = it!!.textColor
|
||||
backgroundColor = it.backgroundColor
|
||||
primaryColor = it.primaryColor
|
||||
if (it != null) {
|
||||
textColor = it.textColor
|
||||
backgroundColor = it.backgroundColor
|
||||
primaryColor = it.primaryColor
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -27,9 +29,11 @@ class SharedThemeReceiver : BroadcastReceiver() {
|
|||
context.baseConfig.apply {
|
||||
if (isUsingSharedTheme) {
|
||||
context.getSharedTheme {
|
||||
textColor = it!!.textColor
|
||||
backgroundColor = it.backgroundColor
|
||||
primaryColor = it.primaryColor
|
||||
if (it != null) {
|
||||
textColor = it.textColor
|
||||
backgroundColor = it.backgroundColor
|
||||
primaryColor = it.primaryColor
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package com.simplemobiletools.commons.views
|
||||
|
||||
import android.content.Context
|
||||
import android.graphics.drawable.GradientDrawable
|
||||
import android.support.v4.widget.SwipeRefreshLayout
|
||||
import android.support.v7.widget.LinearLayoutManager
|
||||
import android.support.v7.widget.RecyclerView
|
||||
|
@ -8,15 +9,22 @@ import android.util.AttributeSet
|
|||
import android.view.MotionEvent
|
||||
import android.view.View
|
||||
import android.widget.FrameLayout
|
||||
import android.widget.TextView
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.applyColorFilter
|
||||
import com.simplemobiletools.commons.extensions.baseConfig
|
||||
|
||||
// based on https://blog.stylingandroid.com/recyclerview-fastscroll-part-1
|
||||
class FastScroller : FrameLayout {
|
||||
var isHorizontal = false
|
||||
|
||||
private var handle: View? = null
|
||||
private var bubble: TextView? = null
|
||||
private var currHeight = 0
|
||||
private var currWidth = 0
|
||||
private var bubbleOffset = 0
|
||||
private var allowBubbleDisplay = false
|
||||
private var fastScrollCallback: ((Int) -> Unit)? = null
|
||||
|
||||
private val HANDLE_HIDE_DELAY = 1000L
|
||||
private var recyclerView: RecyclerView? = null
|
||||
|
@ -28,10 +36,10 @@ class FastScroller : FrameLayout {
|
|||
|
||||
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
|
||||
|
||||
fun setViews(recyclerView: RecyclerView, swipeRefreshLayout: SwipeRefreshLayout? = null) {
|
||||
fun setViews(recyclerView: RecyclerView, swipeRefreshLayout: SwipeRefreshLayout? = null, callback: ((Int) -> Unit)? = null) {
|
||||
this.recyclerView = recyclerView
|
||||
this.swipeRefreshLayout = swipeRefreshLayout
|
||||
updateHandleColor()
|
||||
updatePrimaryColor()
|
||||
|
||||
recyclerView.setOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||
override fun onScrolled(rv: RecyclerView, dx: Int, dy: Int) {
|
||||
|
@ -42,17 +50,43 @@ class FastScroller : FrameLayout {
|
|||
super.onScrollStateChanged(recyclerView, newState)
|
||||
if (newState == RecyclerView.SCROLL_STATE_DRAGGING) {
|
||||
showHandle()
|
||||
} else if (newState == RecyclerView.SCROLL_STATE_IDLE) {
|
||||
hideHandle()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
allowBubbleDisplay = callback != null
|
||||
fastScrollCallback = callback
|
||||
}
|
||||
|
||||
fun updateHandleColor() {
|
||||
fun updatePrimaryColor() {
|
||||
handle!!.background.applyColorFilter(context.baseConfig.primaryColor)
|
||||
updateBubblePrimaryColor()
|
||||
}
|
||||
|
||||
fun updateBubbleColors() {
|
||||
updateBubblePrimaryColor()
|
||||
updateBubbleTextColor()
|
||||
updateBubbleBackgroundColor()
|
||||
}
|
||||
|
||||
fun updateBubblePrimaryColor() {
|
||||
getBubbleBackgroundDrawable()?.setStroke(resources.displayMetrics.density.toInt(), context.baseConfig.primaryColor)
|
||||
}
|
||||
|
||||
fun updateBubbleTextColor() {
|
||||
bubble?.setTextColor(context.baseConfig.textColor)
|
||||
}
|
||||
|
||||
fun updateBubbleBackgroundColor() {
|
||||
getBubbleBackgroundDrawable()?.setColor(context.baseConfig.backgroundColor)
|
||||
}
|
||||
|
||||
fun updateBubbleText(text: String) {
|
||||
bubble?.text = text
|
||||
}
|
||||
|
||||
private fun getBubbleBackgroundDrawable() = bubble?.background as? GradientDrawable
|
||||
|
||||
override fun onSizeChanged(width: Int, height: Int, oldWidth: Int, oldHeight: Int) {
|
||||
super.onSizeChanged(width, height, oldWidth, oldHeight)
|
||||
currHeight = height
|
||||
|
@ -97,9 +131,9 @@ class FastScroller : FrameLayout {
|
|||
|
||||
return when (event.action) {
|
||||
MotionEvent.ACTION_DOWN -> {
|
||||
showHandle()
|
||||
handle!!.isSelected = true
|
||||
swipeRefreshLayout?.isEnabled = false
|
||||
showHandle()
|
||||
true
|
||||
}
|
||||
MotionEvent.ACTION_MOVE -> {
|
||||
|
@ -113,7 +147,6 @@ class FastScroller : FrameLayout {
|
|||
true
|
||||
}
|
||||
MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {
|
||||
hideHandle()
|
||||
handle!!.isSelected = false
|
||||
swipeRefreshLayout?.isEnabled = true
|
||||
true
|
||||
|
@ -133,21 +166,36 @@ class FastScroller : FrameLayout {
|
|||
|
||||
val targetPos = getValueInRange(0f, (itemCount - 1).toFloat(), proportion * itemCount).toInt()
|
||||
(recyclerView!!.layoutManager as LinearLayoutManager).scrollToPositionWithOffset(targetPos, 0)
|
||||
fastScrollCallback?.invoke(targetPos)
|
||||
}
|
||||
}
|
||||
|
||||
override fun onFinishInflate() {
|
||||
super.onFinishInflate()
|
||||
handle = getChildAt(0)
|
||||
bubble = getChildAt(1) as? TextView
|
||||
|
||||
if (bubble != null) {
|
||||
bubbleOffset = resources.getDimension(R.dimen.fastscroll_height).toInt()
|
||||
updateBubbleColors()
|
||||
}
|
||||
}
|
||||
|
||||
private fun showHandle() {
|
||||
handle!!.animate().alpha(1f).start() // override the fade animation
|
||||
handle!!.alpha = 1f
|
||||
|
||||
if (handle!!.isSelected && allowBubbleDisplay) {
|
||||
bubble?.animate()?.alpha(1f)?.start()
|
||||
bubble?.alpha = 1f
|
||||
}
|
||||
}
|
||||
|
||||
private fun hideHandle() {
|
||||
handle!!.animate().alpha(0f).startDelay = HANDLE_HIDE_DELAY
|
||||
bubble?.animate()?.alpha(0f)?.setStartDelay(HANDLE_HIDE_DELAY)?.withEndAction {
|
||||
bubble?.text = ""
|
||||
}
|
||||
}
|
||||
|
||||
private fun setPosition(pos: Float) {
|
||||
|
@ -159,7 +207,12 @@ class FastScroller : FrameLayout {
|
|||
val position = pos / currHeight
|
||||
val handleHeight = handle!!.height
|
||||
handle!!.y = getValueInRange(0f, (currHeight - handleHeight).toFloat(), (currHeight - handleHeight) * position)
|
||||
|
||||
val bubbleHeight = bubble?.height ?: 0
|
||||
val newY = getValueInRange(0f, (currHeight - bubbleHeight).toFloat(), (currHeight - bubbleHeight) * position)
|
||||
bubble?.y = Math.max(0f, newY - bubbleOffset)
|
||||
}
|
||||
hideHandle()
|
||||
}
|
||||
|
||||
private fun getValueInRange(min: Float, max: Float, value: Float) = Math.min(Math.max(min, value), max)
|
||||
|
|
|
@ -6,6 +6,7 @@ import android.view.LayoutInflater
|
|||
import android.view.MotionEvent
|
||||
import android.widget.LinearLayout
|
||||
import com.simplemobiletools.commons.R
|
||||
import com.simplemobiletools.commons.extensions.isRTLLayout
|
||||
import com.simplemobiletools.commons.extensions.onGlobalLayout
|
||||
import com.simplemobiletools.commons.interfaces.LineColorPickerListener
|
||||
import java.util.*
|
||||
|
@ -81,7 +82,10 @@ class LineColorPicker(context: Context, attrs: AttributeSet) : LinearLayout(cont
|
|||
}
|
||||
|
||||
private fun touchAt(touchX: Int) {
|
||||
val colorIndex = touchX / stripeWidth
|
||||
var colorIndex = touchX / stripeWidth
|
||||
if (context.isRTLLayout) {
|
||||
colorIndex = colors.size - colorIndex - 1
|
||||
}
|
||||
val index = Math.max(0, Math.min(colorIndex, colorsCount - 1))
|
||||
if (lastColorIndex != index) {
|
||||
updateItemMargin(lastColorIndex, true)
|
||||
|
|
12
commons/src/main/res/drawable/fastscroller_bubble.xml
Normal file
12
commons/src/main/res/drawable/fastscroller_bubble.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners android:radius="4dp"/>
|
||||
|
||||
<size
|
||||
android:width="-1dp"
|
||||
android:height="-1dp"/>
|
||||
|
||||
</shape>
|
|
@ -4,8 +4,8 @@
|
|||
android:shape="rectangle">
|
||||
|
||||
<corners
|
||||
android:topLeftRadius="@dimen/normal_margin"
|
||||
android:bottomLeftRadius="@dimen/normal_margin"/>
|
||||
android:bottomLeftRadius="@dimen/normal_margin"
|
||||
android:topLeftRadius="@dimen/normal_margin"/>
|
||||
|
||||
<solid android:color="@color/color_primary"/>
|
||||
|
||||
|
|
|
@ -40,13 +40,7 @@
|
|||
android:paddingLeft="@dimen/normal_margin"
|
||||
android:paddingStart="@dimen/normal_margin">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/filepicker_fastscroller_handle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="end"
|
||||
android:alpha="0"
|
||||
android:background="@drawable/fastscroller_handle_vertical"/>
|
||||
<include layout="@layout/fastscroller_handle_vertical"/>
|
||||
|
||||
</com.simplemobiletools.commons.views.FastScroller>
|
||||
</RelativeLayout>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/install_thank_you"
|
||||
android:id="@+id/purchase_thank_you"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:lineSpacingExtra="3dp"
|
||||
|
|
29
commons/src/main/res/layout/fastscroller_handle_vertical.xml
Normal file
29
commons/src/main/res/layout/fastscroller_handle_vertical.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merge
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fastscroller_handle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="end"
|
||||
android:alpha="0"
|
||||
android:background="@drawable/fastscroller_handle_vertical"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/fastscroller_bubble"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/bigger_margin"
|
||||
android:layout_marginRight="@dimen/bigger_margin"
|
||||
android:alpha="0"
|
||||
android:background="@drawable/fastscroller_bubble"
|
||||
android:ellipsize="end"
|
||||
android:lines="1"
|
||||
android:padding="@dimen/medium_margin"
|
||||
android:singleLine="true"
|
||||
android:textSize="@dimen/normal_text_size"
|
||||
tools:text="bubble"/>
|
||||
|
||||
</merge>
|
|
@ -1,267 +0,0 @@
|
|||
<resources>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="search">Search</string>
|
||||
<string name="save_as">Save as</string>
|
||||
<string name="file_saved">File saved successfully</string>
|
||||
<string name="invalid_file_format">Invalid file format</string>
|
||||
<string name="out_of_memory_error">Out of memory error</string>
|
||||
<string name="an_error_occurred">An error occurred: %s</string>
|
||||
<string name="open_with">Open with</string>
|
||||
<string name="no_app_found">No valid app found</string>
|
||||
<string name="set_as">Set as</string>
|
||||
<string name="value_copied_to_clipboard">Value copied to clipboard</string>
|
||||
|
||||
<!-- Permissions -->
|
||||
<string name="no_storage_permissions">Storage permission is required</string>
|
||||
<string name="no_contacts_permission">Contacts permission is required</string>
|
||||
<string name="no_camera_permissions">Camera permission is required</string>
|
||||
<string name="no_audio_permissions">Audio permission is required</string>
|
||||
|
||||
<!-- Renaming -->
|
||||
<string name="rename_file">Rename file</string>
|
||||
<string name="rename_folder">Rename folder</string>
|
||||
<string name="rename_file_error">Could not rename the file</string>
|
||||
<string name="rename_folder_error">Could not rename the folder</string>
|
||||
<string name="rename_folder_empty">Folder name must not be empty</string>
|
||||
<string name="rename_folder_exists">A folder with that name already exists</string>
|
||||
<string name="rename_folder_root">Cannot rename the root folder of a storage</string>
|
||||
<string name="rename_folder_ok">Folder renamed successfully</string>
|
||||
<string name="renaming_folder">Renaming folder</string>
|
||||
<string name="filename_cannot_be_empty">Filename cannot be empty</string>
|
||||
<string name="filename_invalid_characters">Filename contains invalid characters</string>
|
||||
<string name="extension_cannot_be_empty">Extension cannot be empty</string>
|
||||
|
||||
<!-- Copy / Move -->
|
||||
<string name="copy">Copy</string>
|
||||
<string name="move">Move</string>
|
||||
<string name="copy_move">Copy / Move</string>
|
||||
<string name="copy_to">Copy to</string>
|
||||
<string name="move_to">Move to</string>
|
||||
<string name="source">Source</string>
|
||||
<string name="destination">Destination</string>
|
||||
<string name="select_destination">Select destination</string>
|
||||
<string name="click_select_destination">Click here to select destination</string>
|
||||
<string name="invalid_destination">Could not write to the selected destination</string>
|
||||
<string name="please_select_destination">Please select a destination</string>
|
||||
<string name="source_and_destination_same">Source and destination cannot be the same</string>
|
||||
<string name="copy_failed">Could not copy the files</string>
|
||||
<string name="copying">Copying…</string>
|
||||
<string name="copying_success">Files copied successfully</string>
|
||||
<string name="copy_move_failed">An error occurred</string>
|
||||
<string name="moving">Moving…</string>
|
||||
<string name="moving_success">Files moved successfully</string>
|
||||
<string name="moving_success_partial">Some files could not be moved</string>
|
||||
<string name="copying_success_partial">Some files could not be copied</string>
|
||||
<string name="no_files_selected">No files selected</string>
|
||||
<string name="saving">Saving…</string>
|
||||
<string name="could_not_create_folder">Could not create folder %s</string>
|
||||
<string name="could_not_create_file">Could not create file %s</string>
|
||||
|
||||
<!-- Create new -->
|
||||
<string name="create_new">Create new</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="file">File</string>
|
||||
<string name="create_new_folder">Create new folder</string>
|
||||
<string name="name_taken">A file or folder with that name already exists</string>
|
||||
<string name="invalid_name">The name contains invalid characters</string>
|
||||
<string name="empty_name">Please enter a name</string>
|
||||
<string name="unknown_error_occurred">An unknown error occurred</string>
|
||||
|
||||
<!-- Copy conflicts -->
|
||||
<string name="file_already_exists">File %1$s already exists</string>
|
||||
<string name="file_already_exists_overwrite">File %1$s already exists. Overwrite?</string>
|
||||
<string name="select_an_action">Select an action</string>
|
||||
<string name="overwrite">Overwrite</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="append">Append with \'_1\'</string>
|
||||
<string name="apply_to_all">Apply to all conflicts</string>
|
||||
|
||||
<!-- File picker -->
|
||||
<string name="select_folder">Select a folder</string>
|
||||
<string name="select_file">Select a file</string>
|
||||
<string name="confirm_storage_access_title">Confirm external storage access</string>
|
||||
<string name="confirm_storage_access_text">Please choose the root folder of the SD card on the next screen, to grant write access</string>
|
||||
<string name="confirm_storage_access_text_sd">If you don\'t see the SD card, try this</string>
|
||||
<string name="confirm_selection">Confirm selection</string>
|
||||
|
||||
<plurals name="items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Storages -->
|
||||
<string name="select_storage">Select storage</string>
|
||||
<string name="internal">Internal</string>
|
||||
<string name="sd_card">SD Card</string>
|
||||
<string name="root">Root</string>
|
||||
<string name="wrong_root_selected">Wrong folder selected, please select the root folder of your SD card</string>
|
||||
|
||||
<!-- File properties -->
|
||||
<string name="properties">Properties</string>
|
||||
<string name="path">Path</string>
|
||||
<string name="items_selected">Items selected</string>
|
||||
<string name="direct_children_count">Direct children count</string>
|
||||
<string name="files_count">Total files count</string>
|
||||
<string name="resolution">Resolution</string>
|
||||
<string name="duration">Duration</string>
|
||||
<string name="artist">Artist</string>
|
||||
<string name="album">Album</string>
|
||||
<string name="focal_length">Focal length</string>
|
||||
<string name="exposure_time">Exposure time</string>
|
||||
<string name="iso_speed">ISO speed</string>
|
||||
<string name="f_number">F-number</string>
|
||||
<string name="camera">Camera</string>
|
||||
<string name="exif">EXIF</string>
|
||||
|
||||
<!-- Color customization -->
|
||||
<string name="background_color">Background color</string>
|
||||
<string name="text_color">Text color</string>
|
||||
<string name="primary_color">Primary color</string>
|
||||
<string name="restore_defaults">Restore defaults</string>
|
||||
<string name="theme">Theme</string>
|
||||
<string name="changing_color_description">Changing a color will make it switch to Custom theme</string>
|
||||
<string name="save">Save</string>
|
||||
<string name="discard">Discard</string>
|
||||
<string name="undo_changes">Undo changes</string>
|
||||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
<string name="dark_theme">Dark</string>
|
||||
<string name="solarized">Solarized</string>
|
||||
<string name="dark_red">Dark red</string>
|
||||
<string name="custom">Custom</string>
|
||||
<string name="shared">Shared</string>
|
||||
|
||||
<!-- What's new -->
|
||||
<string name="whats_new">What\'s new</string>
|
||||
<string name="whats_new_disclaimer">* only the bigger updates are listed here, there are always some smaller improvements too</string>
|
||||
|
||||
<!-- Actionbar items -->
|
||||
<string name="delete">Delete</string>
|
||||
<string name="rename">Rename</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="share_via">Share via</string>
|
||||
<string name="select_all">Select all</string>
|
||||
<string name="hide">Hide</string>
|
||||
<string name="unhide">Unhide</string>
|
||||
<string name="hide_folder">Hide folder</string>
|
||||
<string name="unhide_folder">Unhide folder</string>
|
||||
<string name="temporarily_show_hidden">Temporarily show hidden</string>
|
||||
<string name="stop_showing_hidden">Stop showing hidden media</string>
|
||||
<string name="maximum_share_reached">You cannot share this much content at once</string>
|
||||
|
||||
<!-- Sorting -->
|
||||
<string name="sort_by">Sort by</string>
|
||||
<string name="name">Name</string>
|
||||
<string name="size">Size</string>
|
||||
<string name="last_modified">Last modified</string>
|
||||
<string name="date_taken">Date taken</string>
|
||||
<string name="title">Title</string>
|
||||
<string name="filename">Filename</string>
|
||||
<string name="extension">Extension</string>
|
||||
<string name="ascending">Ascending</string>
|
||||
<string name="descending">Descending</string>
|
||||
<string name="use_for_this_folder">Use for this folder only</string>
|
||||
|
||||
<!-- Confirmation dialog -->
|
||||
<string name="proceed_with_deletion">Are you sure you want to proceed with the deletion?</string>
|
||||
<string name="yes">Yes</string>
|
||||
<string name="no">No</string>
|
||||
|
||||
<!-- Password protection -->
|
||||
<string name="pin">PIN</string>
|
||||
<string name="enter_pin">Enter PIN</string>
|
||||
<string name="please_enter_pin">Please enter a PIN</string>
|
||||
<string name="wrong_pin">Wrong PIN</string>
|
||||
<string name="repeat_pin">Repeat PIN</string>
|
||||
<string name="pattern">Pattern</string>
|
||||
<string name="insert_pattern">Insert pattern</string>
|
||||
<string name="wrong_pattern">Wrong pattern</string>
|
||||
<string name="repeat_pattern">Repeat pattern</string>
|
||||
<string name="fingerprint">Fingerprint</string>
|
||||
<string name="add_fingerprint">Add fingerprint</string>
|
||||
<string name="place_finger">Please place your finger on the fingerprint sensor</string>
|
||||
<string name="authentication_failed">Authentication failed</string>
|
||||
<string name="authentication_blocked">Authentication blocked, please try again in a moment</string>
|
||||
<string name="no_fingerprints_registered">You have no fingerprints registered, please add some in the Settings of your device</string>
|
||||
<string name="go_to_settings">Go to Settings</string>
|
||||
<string name="protection_setup_successfully">Password setup successfully. Please reinstall the app in case you forget it.</string>
|
||||
<string name="fingerprint_setup_successfully">Protection setup successfully. Please reinstall the app in case of problems with reseting it.</string>
|
||||
|
||||
<!-- Times -->
|
||||
<plurals name="seconds">
|
||||
<item quantity="one">%1$d second</item>
|
||||
<item quantity="other">%1$d seconds</item>
|
||||
</plurals>
|
||||
<plurals name="minutes">
|
||||
<item quantity="one">%1$d minute</item>
|
||||
<item quantity="other">%1$d minutes</item>
|
||||
</plurals>
|
||||
<plurals name="hours">
|
||||
<item quantity="one">%1$d hour</item>
|
||||
<item quantity="other">%1$d hours</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Settings</string>
|
||||
<string name="customize_colors">Customize colors</string>
|
||||
<string name="use_english_language">Use English language</string>
|
||||
<string name="show_hidden">Show hidden files and folders</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="small">Small</string>
|
||||
<string name="medium">Medium</string>
|
||||
<string name="large">Large</string>
|
||||
<string name="extra_large">Extra large</string>
|
||||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
<string name="website_label">For the source codes visit</string>
|
||||
<string name="email_label">Send your feedback or suggestions to</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invite friends</u></string>
|
||||
<string name="share_text">Hey, come check out %1$s at %2$s</string>
|
||||
<string name="invite_via">Invite via</string>
|
||||
<string name="rate_us_underlined"><u>Rate us</u></string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Follow us</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
<string name="third_party_licences">Third party licences</string>
|
||||
<string name="kotlin_title">Kotlin (programming language)</string>
|
||||
<string name="subsampling_title">Subsampling Scale Image View (zoomable imageviews)</string>
|
||||
<string name="glide_title">Glide (image loading and caching)</string>
|
||||
<string name="picasso_title">Picasso (image loading and caching)</string>
|
||||
<string name="cropper_title">Android Image Cropper (image crop and rotate)</string>
|
||||
<string name="multiselect_title">RecyclerView MultiSelect (selecting multiple list items)</string>
|
||||
<string name="rtl_viewpager_title">RtlViewPager (right to left swiping)</string>
|
||||
<string name="joda_title">Joda-Time (Java date replacement)</string>
|
||||
<string name="stetho_title">Stetho (debugging databases)</string>
|
||||
<string name="otto_title">Otto (event bus)</string>
|
||||
<string name="photoview_title">PhotoView (zoomable GIFs)</string>
|
||||
<string name="pattern_title">PatternLockView (pattern protection)</string>
|
||||
<string name="reprint_title">Reprint (fingerprint protection)</string>
|
||||
<string name="gif_drawable_title">Gif Drawable (loading GIFs)</string>
|
||||
<string name="autofittextview_title">AutoFitTextView (resizing text)</string>
|
||||
<string name="robolectric_title">Robolectric (testing framework)</string>
|
||||
<string name="espresso_title">Espresso (testing helper)</string>
|
||||
<string name="gson_title">Gson (JSON parser)</string>
|
||||
<string name="leak_canary_title">Leak Canary (memory leak detector)</string>
|
||||
</resources>
|
|
@ -1,267 +0,0 @@
|
|||
<resources>
|
||||
<string name="ok">OK</string>
|
||||
<string name="cancel">Cancel</string>
|
||||
<string name="search">Search</string>
|
||||
<string name="save_as">Save as</string>
|
||||
<string name="file_saved">File saved successfully</string>
|
||||
<string name="invalid_file_format">Invalid file format</string>
|
||||
<string name="out_of_memory_error">Out of memory error</string>
|
||||
<string name="an_error_occurred">An error occurred: %s</string>
|
||||
<string name="open_with">Open with</string>
|
||||
<string name="no_app_found">No valid app found</string>
|
||||
<string name="set_as">Set as</string>
|
||||
<string name="value_copied_to_clipboard">Value copied to clipboard</string>
|
||||
|
||||
<!-- Permissions -->
|
||||
<string name="no_storage_permissions">Storage permission is required</string>
|
||||
<string name="no_contacts_permission">Contacts permission is required</string>
|
||||
<string name="no_camera_permissions">Camera permission is required</string>
|
||||
<string name="no_audio_permissions">Audio permission is required</string>
|
||||
|
||||
<!-- Renaming -->
|
||||
<string name="rename_file">Rename file</string>
|
||||
<string name="rename_folder">Rename folder</string>
|
||||
<string name="rename_file_error">Could not rename the file</string>
|
||||
<string name="rename_folder_error">Could not rename the folder</string>
|
||||
<string name="rename_folder_empty">Folder name must not be empty</string>
|
||||
<string name="rename_folder_exists">A folder with that name already exists</string>
|
||||
<string name="rename_folder_root">Cannot rename the root folder of a storage</string>
|
||||
<string name="rename_folder_ok">Folder renamed successfully</string>
|
||||
<string name="renaming_folder">Renaming folder</string>
|
||||
<string name="filename_cannot_be_empty">Filename cannot be empty</string>
|
||||
<string name="filename_invalid_characters">Filename contains invalid characters</string>
|
||||
<string name="extension_cannot_be_empty">Extension cannot be empty</string>
|
||||
|
||||
<!-- Copy / Move -->
|
||||
<string name="copy">Copy</string>
|
||||
<string name="move">Move</string>
|
||||
<string name="copy_move">Copy / Move</string>
|
||||
<string name="copy_to">Copy to</string>
|
||||
<string name="move_to">Move to</string>
|
||||
<string name="source">Source</string>
|
||||
<string name="destination">Destination</string>
|
||||
<string name="select_destination">Select destination</string>
|
||||
<string name="click_select_destination">Click here to select destination</string>
|
||||
<string name="invalid_destination">Could not write to the selected destination</string>
|
||||
<string name="please_select_destination">Please select a destination</string>
|
||||
<string name="source_and_destination_same">Source and destination cannot be the same</string>
|
||||
<string name="copy_failed">Could not copy the files</string>
|
||||
<string name="copying">Copying…</string>
|
||||
<string name="copying_success">Files copied successfully</string>
|
||||
<string name="copy_move_failed">An error occurred</string>
|
||||
<string name="moving">Moving…</string>
|
||||
<string name="moving_success">Files moved successfully</string>
|
||||
<string name="moving_success_partial">Some files could not be moved</string>
|
||||
<string name="copying_success_partial">Some files could not be copied</string>
|
||||
<string name="no_files_selected">No files selected</string>
|
||||
<string name="saving">Saving…</string>
|
||||
<string name="could_not_create_folder">Could not create folder %s</string>
|
||||
<string name="could_not_create_file">Could not create file %s</string>
|
||||
|
||||
<!-- Create new -->
|
||||
<string name="create_new">Create new</string>
|
||||
<string name="folder">Folder</string>
|
||||
<string name="file">File</string>
|
||||
<string name="create_new_folder">Create new folder</string>
|
||||
<string name="name_taken">A file or folder with that name already exists</string>
|
||||
<string name="invalid_name">The name contains invalid characters</string>
|
||||
<string name="empty_name">Please enter a name</string>
|
||||
<string name="unknown_error_occurred">An unknown error occurred</string>
|
||||
|
||||
<!-- Copy conflicts -->
|
||||
<string name="file_already_exists">File %1$s already exists</string>
|
||||
<string name="file_already_exists_overwrite">File %1$s already exists. Overwrite?</string>
|
||||
<string name="select_an_action">Select an action</string>
|
||||
<string name="overwrite">Overwrite</string>
|
||||
<string name="skip">Skip</string>
|
||||
<string name="append">Append with \'_1\'</string>
|
||||
<string name="apply_to_all">Apply to all conflicts</string>
|
||||
|
||||
<!-- File picker -->
|
||||
<string name="select_folder">Select a folder</string>
|
||||
<string name="select_file">Select a file</string>
|
||||
<string name="confirm_storage_access_title">Confirm external storage access</string>
|
||||
<string name="confirm_storage_access_text">Please choose the root folder of the SD card on the next screen, to grant write access</string>
|
||||
<string name="confirm_storage_access_text_sd">If you don\'t see the SD card, try this</string>
|
||||
<string name="confirm_selection">Confirm selection</string>
|
||||
|
||||
<plurals name="items">
|
||||
<item quantity="one">%1$d item</item>
|
||||
<item quantity="other">%1$d items</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Storages -->
|
||||
<string name="select_storage">Select storage</string>
|
||||
<string name="internal">Internal</string>
|
||||
<string name="sd_card">SD Card</string>
|
||||
<string name="root">Root</string>
|
||||
<string name="wrong_root_selected">Wrong folder selected, please select the root folder of your SD card</string>
|
||||
|
||||
<!-- File properties -->
|
||||
<string name="properties">Properties</string>
|
||||
<string name="path">Path</string>
|
||||
<string name="items_selected">Items selected</string>
|
||||
<string name="direct_children_count">Direct children count</string>
|
||||
<string name="files_count">Total files count</string>
|
||||
<string name="resolution">Resolution</string>
|
||||
<string name="duration">Duration</string>
|
||||
<string name="artist">Artist</string>
|
||||
<string name="album">Album</string>
|
||||
<string name="focal_length">Focal length</string>
|
||||
<string name="exposure_time">Exposure time</string>
|
||||
<string name="iso_speed">ISO speed</string>
|
||||
<string name="f_number">F-number</string>
|
||||
<string name="camera">Camera</string>
|
||||
<string name="exif">EXIF</string>
|
||||
|
||||
<!-- Color customization -->
|
||||
<string name="background_color">Background color</string>
|
||||
<string name="text_color">Text color</string>
|
||||
<string name="primary_color">Primary color</string>
|
||||
<string name="restore_defaults">Restore defaults</string>
|
||||
<string name="theme">Theme</string>
|
||||
<string name="changing_color_description">Changing a color will make it switch to Custom theme</string>
|
||||
<string name="save">Save</string>
|
||||
<string name="discard">Discard</string>
|
||||
<string name="undo_changes">Undo changes</string>
|
||||
<string name="undo_changes_confirmation">Are you sure you want to undo your changes?</string>
|
||||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
<string name="dark_theme">Dark</string>
|
||||
<string name="solarized">Solarized</string>
|
||||
<string name="dark_red">Dark red</string>
|
||||
<string name="custom">Custom</string>
|
||||
<string name="shared">Shared</string>
|
||||
|
||||
<!-- What's new -->
|
||||
<string name="whats_new">What\'s new</string>
|
||||
<string name="whats_new_disclaimer">* only the bigger updates are listed here, there are always some smaller improvements too</string>
|
||||
|
||||
<!-- Actionbar items -->
|
||||
<string name="delete">Delete</string>
|
||||
<string name="rename">Rename</string>
|
||||
<string name="share">Share</string>
|
||||
<string name="share_via">Share via</string>
|
||||
<string name="select_all">Select all</string>
|
||||
<string name="hide">Hide</string>
|
||||
<string name="unhide">Unhide</string>
|
||||
<string name="hide_folder">Hide folder</string>
|
||||
<string name="unhide_folder">Unhide folder</string>
|
||||
<string name="temporarily_show_hidden">Temporarily show hidden</string>
|
||||
<string name="stop_showing_hidden">Stop showing hidden media</string>
|
||||
<string name="maximum_share_reached">You cannot share this much content at once</string>
|
||||
|
||||
<!-- Sorting -->
|
||||
<string name="sort_by">Sort by</string>
|
||||
<string name="name">Name</string>
|
||||
<string name="size">Size</string>
|
||||
<string name="last_modified">Last modified</string>
|
||||
<string name="date_taken">Date taken</string>
|
||||
<string name="title">Title</string>
|
||||
<string name="filename">Filename</string>
|
||||
<string name="extension">Extension</string>
|
||||
<string name="ascending">Ascending</string>
|
||||
<string name="descending">Descending</string>
|
||||
<string name="use_for_this_folder">Use for this folder only</string>
|
||||
|
||||
<!-- Confirmation dialog -->
|
||||
<string name="proceed_with_deletion">Are you sure you want to proceed with the deletion?</string>
|
||||
<string name="yes">Yes</string>
|
||||
<string name="no">No</string>
|
||||
|
||||
<!-- Password protection -->
|
||||
<string name="pin">PIN</string>
|
||||
<string name="enter_pin">Enter PIN</string>
|
||||
<string name="please_enter_pin">Please enter a PIN</string>
|
||||
<string name="wrong_pin">Wrong PIN</string>
|
||||
<string name="repeat_pin">Repeat PIN</string>
|
||||
<string name="pattern">Pattern</string>
|
||||
<string name="insert_pattern">Insert pattern</string>
|
||||
<string name="wrong_pattern">Wrong pattern</string>
|
||||
<string name="repeat_pattern">Repeat pattern</string>
|
||||
<string name="fingerprint">Fingerprint</string>
|
||||
<string name="add_fingerprint">Add fingerprint</string>
|
||||
<string name="place_finger">Please place your finger on the fingerprint sensor</string>
|
||||
<string name="authentication_failed">Authentication failed</string>
|
||||
<string name="authentication_blocked">Authentication blocked, please try again in a moment</string>
|
||||
<string name="no_fingerprints_registered">You have no fingerprints registered, please add some in the Settings of your device</string>
|
||||
<string name="go_to_settings">Go to Settings</string>
|
||||
<string name="protection_setup_successfully">Password setup successfully. Please reinstall the app in case you forget it.</string>
|
||||
<string name="fingerprint_setup_successfully">Protection setup successfully. Please reinstall the app in case of problems with reseting it.</string>
|
||||
|
||||
<!-- Times -->
|
||||
<plurals name="seconds">
|
||||
<item quantity="one">%1$d second</item>
|
||||
<item quantity="other">%1$d seconds</item>
|
||||
</plurals>
|
||||
<plurals name="minutes">
|
||||
<item quantity="one">%1$d minute</item>
|
||||
<item quantity="other">%1$d minutes</item>
|
||||
</plurals>
|
||||
<plurals name="hours">
|
||||
<item quantity="one">%1$d hour</item>
|
||||
<item quantity="other">%1$d hours</item>
|
||||
</plurals>
|
||||
|
||||
<!-- Settings -->
|
||||
<string name="settings">Settings</string>
|
||||
<string name="customize_colors">Customize colors</string>
|
||||
<string name="use_english_language">Use English language</string>
|
||||
<string name="show_hidden">Show hidden files and folders</string>
|
||||
<string name="font_size">Font size</string>
|
||||
<string name="small">Small</string>
|
||||
<string name="medium">Medium</string>
|
||||
<string name="large">Large</string>
|
||||
<string name="extra_large">Extra large</string>
|
||||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
<string name="website_label">For the source codes visit</string>
|
||||
<string name="email_label">Send your feedback or suggestions to</string>
|
||||
<string name="more_apps_underlined"><u>More apps</u></string>
|
||||
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invite friends</u></string>
|
||||
<string name="share_text">Hey, come check out %1$s at %2$s</string>
|
||||
<string name="invite_via">Invite via</string>
|
||||
<string name="rate_us_underlined"><u>Rate us</u></string>
|
||||
<string name="donate">Donate</string>
|
||||
<string name="donate_underlined"><u>Donate</u></string>
|
||||
<string name="follow_us">Follow us</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
<string name="third_party_licences">Third party licences</string>
|
||||
<string name="kotlin_title">Kotlin (programming language)</string>
|
||||
<string name="subsampling_title">Subsampling Scale Image View (zoomable imageviews)</string>
|
||||
<string name="glide_title">Glide (image loading and caching)</string>
|
||||
<string name="picasso_title">Picasso (image loading and caching)</string>
|
||||
<string name="cropper_title">Android Image Cropper (image crop and rotate)</string>
|
||||
<string name="multiselect_title">RecyclerView MultiSelect (selecting multiple list items)</string>
|
||||
<string name="rtl_viewpager_title">RtlViewPager (right to left swiping)</string>
|
||||
<string name="joda_title">Joda-Time (Java date replacement)</string>
|
||||
<string name="stetho_title">Stetho (debugging databases)</string>
|
||||
<string name="otto_title">Otto (event bus)</string>
|
||||
<string name="photoview_title">PhotoView (zoomable GIFs)</string>
|
||||
<string name="pattern_title">PatternLockView (pattern protection)</string>
|
||||
<string name="reprint_title">Reprint (fingerprint protection)</string>
|
||||
<string name="gif_drawable_title">Gif Drawable (loading GIFs)</string>
|
||||
<string name="autofittextview_title">AutoFitTextView (resizing text)</string>
|
||||
<string name="robolectric_title">Robolectric (testing framework)</string>
|
||||
<string name="espresso_title">Espresso (testing helper)</string>
|
||||
<string name="gson_title">Gson (JSON parser)</string>
|
||||
<string name="leak_canary_title">Leak Canary (memory leak detector)</string>
|
||||
</resources>
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Máte neuložené změny. Uložit před zavřením?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Světlý</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">O aplikaci</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<string name="save_as">Speichern unter</string>
|
||||
<string name="file_saved">Datei erfolgreich gespeichert</string>
|
||||
<string name="invalid_file_format">Ungültiges Dateiformat</string>
|
||||
<string name="out_of_memory_error">Fehler: Zuwenig Speicher</string>
|
||||
<string name="out_of_memory_error">Fehler: Zu wenig Speicher</string>
|
||||
<string name="an_error_occurred">Es ist ein Fehler aufgetreten: %s</string>
|
||||
<string name="open_with">Öffnen mit</string>
|
||||
<string name="no_app_found">Keine passende App gefunden</string>
|
||||
|
@ -54,7 +54,7 @@
|
|||
<string name="moving_success_partial">Einige Dateien konnten nicht verschoben werden</string>
|
||||
<string name="copying_success_partial">Einige Dateien konnten nicht kopiert werden</string>
|
||||
<string name="no_files_selected">Keine Dateien ausgewählt</string>
|
||||
<string name="saving">Speichere…</string>
|
||||
<string name="saving">Speichern…</string>
|
||||
<string name="could_not_create_folder">Ordner %s konnte nicht erstellt werden</string>
|
||||
<string name="could_not_create_file">Datei %s konnte nicht erstellt werden</string>
|
||||
|
||||
|
@ -126,15 +126,19 @@
|
|||
<string name="undo_changes">Änderungen verwerfen</string>
|
||||
<string name="undo_changes_confirmation">Bist du sicher, dass du die Änderungen verwerfen willst?</string>
|
||||
<string name="save_before_closing">Du hast ungespeicherte Änderungen. Speichern vorm Beenden?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="apply_to_all_apps">Farben bei alle schlichten Apps anwenden</string>
|
||||
<string name="share_colors_success">Farben erfolgreich aktualisiert. Ein neues Thema \'Shared\' wurde hinzugefügt, bitte verwende dieses um für alle Apps die Farben zu ändern.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Bitte kaufe <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> um diese Funktion freizuschalten und die Entwicklung zu unterstützen. Danke!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Helles</string>
|
||||
<string name="dark_theme">Dunkles</string>
|
||||
<string name="light_theme">Hell</string>
|
||||
<string name="dark_theme">Dunkel</string>
|
||||
<string name="solarized">Solarized</string>
|
||||
<string name="dark_red">Dark red</string>
|
||||
<string name="dark_red">Dunkelrot</string>
|
||||
<string name="custom">Benutzerdefiniert</string>
|
||||
<string name="shared">Shared</string>
|
||||
|
||||
|
@ -184,7 +188,7 @@
|
|||
<string name="insert_pattern">Muster zeichnen</string>
|
||||
<string name="wrong_pattern">Falsches Muster</string>
|
||||
<string name="repeat_pattern">Muster wiederholen</string>
|
||||
<string name="fingerprint">Fingerprint</string>
|
||||
<string name="fingerprint">Fingerabdruck</string>
|
||||
<string name="add_fingerprint">Fingerabdruck hinzufügen</string>
|
||||
<string name="place_finger">Bitte den Finger auf den Fingerabdruck-Sensor legen</string>
|
||||
<string name="authentication_failed">Authentifizierung fehlgeschlagen</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Verstecktes mit Muster/PIN schützen</string>
|
||||
<string name="password_protect_whole_app">Gesamte App mit Passwort schützen</string>
|
||||
<string name="keep_last_modified">Beim Kopieren/Verschieben/Umbenennen die alte Änderungszeit beibehalten</string>
|
||||
<string name="show_info_bubble">Zeige Info-Fenster beim Scrollen mithilfe des Scrollbalkens an</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Über</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Zusätzliche Infos</string>
|
||||
<string name="app_version">App-Version: %1$s</string>
|
||||
<string name="device_os">Betriebssystem: %1$s</string>
|
||||
<string name="donate_please">Hallo,\n\nich hoffe diese App gefällt dir. Sie beinhaltet keine Werbung, bitte unterstütze die Entwicklung durch Kauf der <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> App, dadurch wird auch dieser Dialog künftig nicht mehr gezeigt.\n\nWeitere Optionen zum Spenden findest du <a href="http://simplemobiletools.com/donate">hier</a>.\n\nVielen Dank!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hallo,<br><br>
|
||||
ich hoffe diese App gefällt dir. Sie beinhaltet keine Werbung, bitte unterstütze die Entwicklung durch Kauf der <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> App, dadurch wird auch dieser Dialog künftig nicht mehr gezeigt.<br><br>
|
||||
Weitere Optionen zum Spenden findest du <a href="http://simplemobiletools.com/donate">hier</a>.<br><br>
|
||||
Vielen Dank!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Kaufen</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Tiene cambios sin aplicar. ¿Guardar antes de salir?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Claro</string>
|
||||
|
@ -211,16 +215,17 @@
|
|||
<!-- Settings -->
|
||||
<string name="settings">Ajustes</string>
|
||||
<string name="customize_colors">Cambiar colores</string>
|
||||
<string name="use_english_language">Use English language</string>
|
||||
<string name="use_english_language">Usar el idioma Inglés</string>
|
||||
<string name="show_hidden">Mostrar ficheros y directorios ocultos</string>
|
||||
<string name="font_size">Tamaño de fuente</string>
|
||||
<string name="small">Pequeña</string>
|
||||
<string name="medium">Medium</string>
|
||||
<string name="large">Grande</string>
|
||||
<string name="extra_large">Enorme</string>
|
||||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="password_protect_hidden_items">Contraseña para proteger los medios ocultos</string>
|
||||
<string name="password_protect_whole_app">Contraseña para proteger toda la aplicación</string>
|
||||
<string name="keep_last_modified">Mantener el valor de ultima modificación al copiar/mover/renombrar los archivos</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Acerca de</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Vous avez des changements non sauvegardés. Sauvegarder avant de quitter ?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Lumineux</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Visibilité des éléments protégés par un mot de passe</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Garder la valeur de l\'ancienne modification lors de renommage/déplacement/copie de fichier</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">À propos</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Info supplémentaire</string>
|
||||
<string name="app_version">Version appli: %1$s</string>
|
||||
<string name="device_os">OS appareil: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">के बारे में</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -129,7 +129,11 @@
|
|||
<string name="save_before_closing">Imate ne spremljene promjene. Želite li spremiti prije izlaska?</string>
|
||||
<string name="apply_to_all_apps">Primjeni boje na sve Simple Aplikacije</string>
|
||||
<string name="share_colors_success">Uspješno ažurirane boje. Nova tema pod nazivom \'Shared\' je dodana, molimo koristite ju za ažuriranje svih boja u aplikaciji u budućnosti.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> otključavanju ove funkcionalnosti i podržavanju razvoja. Hvala!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Svijetla</string>
|
||||
|
@ -225,6 +229,7 @@
|
|||
<string name="password_protect_hidden_items">Vidljivost skrivenih, lozinkom zaštićenih stavki</string>
|
||||
<string name="password_protect_whole_app">Zaštiti cijelu aplikaciju lozinkom</string>
|
||||
<string name="keep_last_modified">Zadrži stari datum zadnje izmjene pri kopiranje/premještanju/preimenovanju datoteke</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">O nama</string>
|
||||
|
@ -243,7 +248,14 @@
|
|||
<string name="additional_info">Dodatne informacije</string>
|
||||
<string name="app_version">Verzija aplikacije: %1$s</string>
|
||||
<string name="device_os">OS uređaja: %1$s</string>
|
||||
<string name="donate_please">Pozdrav,\n\nnadam se da uživate u aplikaciji. Ne sadrži reklame, stoga nas podržite njen razvoj kupovinom <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aplikacije, što će spriječiti da se ovaj prozor ponovno pojavljuje.\n\nDodatne opcije za doniranje potražite <a href="http://simplemobiletools.com/donate">ovdje</a>.\n\nHvala Vam!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Pozdrav,<br><br>
|
||||
nadam se da uživate u aplikaciji. Ne sadrži reklame, stoga nas podržite njen razvoj kupovinom <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aplikacije, što će spriječiti da se ovaj prozor ponovno pojavljuje.<br><br>
|
||||
Dodatne opcije za doniranje potražite <a href="http://simplemobiletools.com/donate">ovdje</a>.<br><br>
|
||||
Hvala Vam!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Kupi</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Információ</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Hai modifiche non salvate. Salvare prima di uscire?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Chiaro</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Proteggi con password gli elementi nascosti</string>
|
||||
<string name="password_protect_whole_app">Proteggi con password tutta l\'applicazione</string>
|
||||
<string name="keep_last_modified">Mantieni data/ora ultima modifica in copia/sposta/rinomina</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Informazioni</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Informazioni aggiuntive</string>
|
||||
<string name="app_version">Versione app: %1$s</string>
|
||||
<string name="device_os">OS dispositivo: %1$s</string>
|
||||
<string name="donate_please">Ciao,\n\nspero che tu sia contento dell\'app. Non contiene pubblicità, per favore supportane lo sviluppo acquistando l\'app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, inoltre questa finestra non verrà più mostrata.\n\nPuoi trovare ulteriori opzioni di donazione <a href="http://simplemobiletools.com/donate">qui</a>.\n\nGrazie!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Ciao,<br><br>
|
||||
spero che tu sia contento dell\'app. Non contiene pubblicità, per favore supportane lo sviluppo acquistando l\'app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, inoltre questa finestra non verrà più mostrata.<br><br>
|
||||
Puoi trovare ulteriori opzioni di donazione <a href="http://simplemobiletools.com/donate">qui</a>.<br><br>
|
||||
Grazie!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Acquista</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">保存していない変更があります。保存しますか?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">ライト</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">非表示にした項目をパスワードで保護する</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">アプリについて</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">追加情報</string>
|
||||
<string name="app_version">アプリバージョン: %1$s</string>
|
||||
<string name="device_os">デバイスOS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">변경사항을 저장하지 않았습니다. 종료전에 저장 하시겠습니까?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">숨김파일 보기 암호설정</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">앱정보</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Turite neiðsaugotø pakeitimø. Iðsaugoti prieð iðeinant?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Ðviesi</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Apie</string>
|
||||
|
@ -238,7 +243,14 @@
|
|||
<string name="additional_info">Papildoma informacija</string>
|
||||
<string name="app_version">Programos versija: %1$s</string>
|
||||
<string name="device_os">Árenginio OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Lyst</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Om</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Onopgeslagen wijzigingen. Nu opslaan?</string>
|
||||
<string name="apply_to_all_apps">Kleuren toepassen op al onze apps</string>
|
||||
<string name="share_colors_success">Kleuren gewijzigd. Gebruik het nieuwe thema \'Gedeeld\' om de kleuren voor al onze apps aan te passen.</string>
|
||||
<string name="purchase_thank_you">Om deze functie te gebruiken en om verdere ontwikkeling te ondersteunen kunt u <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aanschaffen. Alvast bedankt!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Om deze functie te gebruiken en om verdere ontwikkeling te ondersteunen kunt u <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aanschaffen. Alvast bedankt!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Licht</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Verborgen items met wachtwoord beveiligen</string>
|
||||
<string name="password_protect_whole_app">Hele app met wachtwoord beveiligen</string>
|
||||
<string name="keep_last_modified">Datum laatst gewijzigd behouden bij bestandsoperaties</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Over</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Extra informatie</string>
|
||||
<string name="app_version">Versie: %1$s</string>
|
||||
<string name="device_os">Besturingssysteem: %1$s</string>
|
||||
<string name="donate_please">Hallo,\n\nHopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.\n\nU kunt meer opties om te doneren vinden op <a href="http://simplemobiletools.com/donate">de website</a>.\n\nDank u wel!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hallo,<br><br>
|
||||
Hopelijk vindt u dit een fijne app. Het bevat geen advertenties, maar u kunt de verdere ontwikkeling wel ondersteunen door de app <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> aan te schaffen. Dit zal ook voorkomen dat dit venster nog eens verschijnt.<br><br>
|
||||
U kunt meer opties om te doneren vinden op <a href="http://simplemobiletools.com/donate">de website</a>.<br><br>
|
||||
Dank u wel!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Kopen</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Lyst</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Om</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -129,7 +129,11 @@
|
|||
<string name="save_before_closing">Zapisać zmiany?</string>
|
||||
<string name="apply_to_all_apps">Zastosuj kolory do wszystkich Prostych Aplikacji</string>
|
||||
<string name="share_colors_success">Kolory zostały zmienione. Utworzony został nowy, \'wspólny\' motyw - użyj go, aby zaktualizować kolorystykę wszystkich Prostych Aplikacji.</string>
|
||||
<string name="purchase_thank_you">Aby odblokować tą funkcję (i wesprzeć przy okazji rozwój niniejszej aplikacji), kup aplikację <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Aby odblokować tą funkcję (i wesprzeć przy okazji rozwój niniejszej aplikacji), kup aplikację <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>.
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Jasny</string>
|
||||
|
@ -225,6 +229,7 @@
|
|||
<string name="password_protect_hidden_items">Chroń widoczność ukrytych plików</string>
|
||||
<string name="password_protect_whole_app">Chroń dostęp do aplikacji</string>
|
||||
<string name="keep_last_modified">Zachowuj starą datę i czas modyfikacji przy kopiowaniu / przenoszeniu / zmianie nazwy plików</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">O aplikacji</string>
|
||||
|
@ -240,12 +245,17 @@
|
|||
<string name="donate_underlined"><u>Przekaż darowiznę</u></string>
|
||||
<string name="follow_us">Śledź nas</string>
|
||||
<string name="copyright">Wersja %1$s\n© Simple Mobile Tools %2$d</string>
|
||||
<string name="additional_info">Dodatkowe informacje</string><![CDATA[
|
||||
|
||||
]]>
|
||||
<string name="additional_info">Dodatkowe informacje</string>
|
||||
<string name="app_version">Wersja aplikacji: %1$s</string>
|
||||
<string name="device_os">System: %1$s</string>
|
||||
<string name="donate_please">Witaj!\n\nMamy nadzieję, że aplikacja przypadła Ci do gustu. Jak da się zauważyć, nie zawiera ona reklam, prosimy więc o wsparcie jej rozwoju poprzez zakup specjalnej aplikacji <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, co poskutkuje również wyłączeniem tego komunikatu.\n\nWięcej możliwości wsparcia znajdziesz <a href="http://simplemobiletools.com/donate">tutaj</a>.\n\nDziękujemy za korzystanie z aplikacji (no i za wasze ewentualne pieniążki)!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Witaj!<br><br>
|
||||
Mamy nadzieję, że aplikacja przypadła Ci do gustu. Jak da się zauważyć, nie zawiera ona reklam, prosimy więc o wsparcie jej rozwoju poprzez zakup specjalnej aplikacji <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, co poskutkuje również wyłączeniem tego komunikatu.<br><br>
|
||||
Więcej możliwości wsparcia znajdziesz <a href="http://simplemobiletools.com/donate">tutaj</a>.<br><br>
|
||||
Dziękujemy!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Kup</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Possui alterações não salvass. Salvar antes de sair?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Claro</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Proteja visibilidade de ítens ocultos com senha</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Manter valor anterior do arquivo modificado por último ao copiar/mover/renomear arquivo</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Sobre</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Informações adicionais</string>
|
||||
<string name="app_version">Versão do app: %1$s</string>
|
||||
<string name="device_os">Sistema operacional: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Existem alterações não guardadas. Deseja guardar antes de sair?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Claro</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Proteger itens ocultos com palavra-passe</string>
|
||||
<string name="password_protect_whole_app">Proteger aplicação com palavra-passe</string>
|
||||
<string name="keep_last_modified">Manter dados da última modificação ao copiar/mover/renomear</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Acerca</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Mais informações</string>
|
||||
<string name="app_version">Versão da aplicação: %1$s</string>
|
||||
<string name="device_os">SO do dispositivo: %1$s</string>
|
||||
<string name="donate_please">Olá,\n\nespero que esteja a gostar desta aplicação. Não possui anúncios e é open source. Se quiser ajudar no desenvolvimento, pode comprar a aplicação <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> que também impedirá que este diálogo seja novamente mostrado.\n\nPode encontrar mais opções de suporte ao projeto <a href="http://simplemobiletools.com/donate">aqui</a>.\n\nObrigado!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Olá,<br><br>
|
||||
espero que esteja a gostar desta aplicação. Não possui anúncios e é open source. Se quiser ajudar no desenvolvimento, pode comprar a aplicação <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> que também impedirá que este diálogo seja novamente mostrado.<br><br>
|
||||
Pode encontrar mais opções de suporte ao projeto <a href="http://simplemobiletools.com/donate">aqui</a>.<br><br>
|
||||
Obrigado!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">У вас есть несохранённые изменения. Сохранить перед выходом?</string>
|
||||
<string name="apply_to_all_apps">Применить цвета ко всем приложениям Simple</string>
|
||||
<string name="share_colors_success">Цвета успешно обновлены. Добавлена новая тема с названием \'Общая\', в дальнейшем используйте её для обновления цветов всех приложений.</string>
|
||||
<string name="purchase_thank_you">Пожалуйста, купите <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, чтобы разблокировать эту функцию и поддержать разработку. Спасибо!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Пожалуйста, купите <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, чтобы разблокировать эту функцию и поддержать разработку. Спасибо!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Светлая</string>
|
||||
|
@ -223,6 +227,7 @@
|
|||
<string name="password_protect_hidden_items">Защита паролем отображения скрытых объектов</string>
|
||||
<string name="password_protect_whole_app">Защита паролем всего приложения</string>
|
||||
<string name="keep_last_modified">Сохранять значение даты изменения файла при копировании/перемещении/переименовании</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">О приложении</string>
|
||||
|
@ -241,7 +246,14 @@
|
|||
<string name="additional_info">Дополнительная информация</string>
|
||||
<string name="app_version">Версия приложения: %1$s</string>
|
||||
<string name="device_os">ОС устройства: %1$s</string>
|
||||
<string name="donate_please">Привет,\n\nнадеюсь, вам нравится приложение. Оно не содержит рекламы, поэтому, пожалуйста, поддержите разработку, купив приложение <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>. Покупка также предотвратит повторное появление данного диалогового окна.\n\nДругие способы сделать пожертвование можно найти <a href="http://simplemobiletools.com/donate">здесь</a>.\n\nСпасибо!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Привет,<br><br>
|
||||
надеюсь, вам нравится приложение. Оно не содержит рекламы, поэтому, пожалуйста, поддержите разработку, купив приложение <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>. Покупка также предотвратит повторное появление данного диалогового окна.<br><br>
|
||||
Другие способы сделать пожертвование можно найти <a href="http://simplemobiletools.com/donate">здесь</a>.<br><br>
|
||||
Спасибо!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Купить</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -129,7 +129,11 @@
|
|||
<string name="save_before_closing">Máte neuložené zmeny. Chcete ich uložiť pred ukončením?</string>
|
||||
<string name="apply_to_all_apps">Použiť farby na všetky Jednoduché Aplikácie</string>
|
||||
<string name="share_colors_success">Farby boli úspešne aktualizované. Bola pridaná nová \'Zdieľaná\' téma, prosím použite ju pri ďalšej úprave farieb.</string>
|
||||
<string name="purchase_thank_you">Prosím zakúpte si <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Jednoduché ďakujem</a> na odomknutie tejto funkcie a podporu vývoja. Vďaka!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Prosím zakúpte si <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Jednoduché ďakujem</a> na odomknutie tejto funkcie a podporu vývoja. Vďaka!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Svetlá</string>
|
||||
|
@ -225,6 +229,7 @@
|
|||
<string name="password_protect_hidden_items">Uzamknúť viditeľnosť skrytých položiek heslom</string>
|
||||
<string name="password_protect_whole_app">Uzamknúť heslom celú aplikáciu</string>
|
||||
<string name="keep_last_modified">Ponechať starú hodnotu naposledy-upravené pri kopírovaní/presúvaní/premenúvaní súborov</string>
|
||||
<string name="show_info_bubble">Zobraziť informačnú bublinu pri prehliadaní položiek ťahaním posuvníka</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">O aplikácií</string>
|
||||
|
@ -243,7 +248,14 @@
|
|||
<string name="additional_info">Dodatočné informácie</string>
|
||||
<string name="app_version">Verzia aplikácie: %1$s</string>
|
||||
<string name="device_os">Operačný systém zariadenia: %1$s</string>
|
||||
<string name="donate_please">Zdravím,\n\ndúfam, že sa vám moja apka páči. Neobsahuje žiadne reklamy, podporte prosím jej vývoj zakúpením aplikácie <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Jednoduché ďakujem</a>. Zaručí to aj to, že tento dialóg už neuvidíte.\n\nViac možností podpory nájdete <a href="http://simplemobiletools.com/donate">tu</a>.\n\nĎakujem!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Zdravím,<br><br>
|
||||
dúfam, že sa vám moja apka páči. Neobsahuje žiadne reklamy, podporte prosím jej vývoj zakúpením aplikácie <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Jednoduché ďakujem</a>. Zaručí to aj to, že tento dialóg už neuvidíte.<br><br>
|
||||
Viac možností podpory nájdete <a href="http://simplemobiletools.com/donate">tu</a>.<br><br>
|
||||
Ďakujem!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Zakúpiť</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<string name="open_with">Öppna med</string>
|
||||
<string name="no_app_found">Hittade ingen giltig app</string>
|
||||
<string name="set_as">Ange som</string>
|
||||
<string name="value_copied_to_clipboard">Värdet kopierat till urklippet</string>
|
||||
<string name="value_copied_to_clipboard">Värdet har kopierats till urklipp</string>
|
||||
|
||||
<!-- Permissions -->
|
||||
<string name="no_storage_permissions">Lagringsbehörighet krävs</string>
|
||||
|
@ -45,7 +45,7 @@
|
|||
<string name="invalid_destination">Det gick inte att skriva till målet</string>
|
||||
<string name="please_select_destination">Välj mål</string>
|
||||
<string name="source_and_destination_same">Källa och mål kan inte vara samma</string>
|
||||
<string name="copy_failed">Kunde inte kopiera filen</string>
|
||||
<string name="copy_failed">Det gick inte att kopiera filerna</string>
|
||||
<string name="copying">Kopierar…</string>
|
||||
<string name="copying_success">Filerna har kopierats</string>
|
||||
<string name="copy_move_failed">Ett fel har uppstått</string>
|
||||
|
@ -126,17 +126,21 @@
|
|||
<string name="undo_changes">Ångra ändringar</string>
|
||||
<string name="undo_changes_confirmation">Är du säker på att du vill ångra dina ändringar?</string>
|
||||
<string name="save_before_closing">Du har ändringar som inte är sparade. Spara innan du lämnar?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="apply_to_all_apps">Använd färgerna i alla Simple-appar</string>
|
||||
<string name="share_colors_success">Färgerna har uppdaterats. Ett nytt Tema som heter \'Delat\' har lagts till, använd det för att uppdatera alla apparnas färger i framtiden.</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Köp <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> för att låsa upp denna funktion och stödja utvecklingen. Tack!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Ljust</string>
|
||||
<string name="dark_theme">Mörkt</string>
|
||||
<string name="solarized">Solarized</string>
|
||||
<string name="dark_red">Dark red</string>
|
||||
<string name="custom">Anpassat tema</string>
|
||||
<string name="shared">Shared</string>
|
||||
<string name="solarized">Solariserat</string>
|
||||
<string name="dark_red">Mörkrött</string>
|
||||
<string name="custom">Anpassat</string>
|
||||
<string name="shared">Delat</string>
|
||||
|
||||
<!-- What's new -->
|
||||
<string name="whats_new">Vad är nytt</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Lösenordsskydda synligheten för dolda objekt</string>
|
||||
<string name="password_protect_whole_app">Lösenordsskydda hela appen</string>
|
||||
<string name="keep_last_modified">Behåll senast ändrad-tider när filer kopieras, flyttas eller får nya namn</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Om</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Ytterligare info</string>
|
||||
<string name="app_version">Appversion: %1$s</string>
|
||||
<string name="device_os">Enhetens operativsystem: %1$s</string>
|
||||
<string name="donate_please">Hej,\n\njag hoppas att du gillar appen. Den innehåller ingen reklam, så stöd dess utveckling genom att köpa appen <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, som även hindrar den här dialogrutan från att visas igen.\n\nDu hittar fler donationsalternativ <a href="http://simplemobiletools.com/donate">här</a>.\n\nTack!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hej,<br><br>
|
||||
jag hoppas att du gillar appen. Den innehåller ingen reklam, så stöd dess utveckling genom att köpa appen <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a>, som även hindrar den här dialogrutan från att visas igen.<br><br>
|
||||
Du hittar fler donationsalternativ <a href="http://simplemobiletools.com/donate">här</a>.<br><br>
|
||||
Tack!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Köp</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">Kaydedilmemiş değişiklikleriniz var. Çıkmadan önce kaydet?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Hafif</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">Hakkında</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<string name="open_with">打开方式</string>
|
||||
<string name="no_app_found">未找到可用应用</string>
|
||||
<string name="set_as">设置为</string>
|
||||
<string name="value_copied_to_clipboard">Value copied to clipboard</string>
|
||||
<string name="value_copied_to_clipboard">颜色值已复制到剪贴板</string>
|
||||
|
||||
<!-- Permissions -->
|
||||
<string name="no_storage_permissions">请授予存储权限</string>
|
||||
|
@ -126,17 +126,21 @@
|
|||
<string name="undo_changes">撤销更改</string>
|
||||
<string name="undo_changes_confirmation">是否撤销您的更改?</string>
|
||||
<string name="save_before_closing">您尚未保存更改,是否保存?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="apply_to_all_apps">应用到所有简约系列应用</string>
|
||||
<string name="share_colors_success">颜色更改成功。已添加名为“共享”的新主题,以后你可以使用它来更改所有应用的颜色。</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
请购买 <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 以解锁此功能并支持开发。感谢!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">浅色主题</string>
|
||||
<string name="dark_theme">深色主题</string>
|
||||
<string name="solarized">Solarized</string>
|
||||
<string name="dark_red">Dark red</string>
|
||||
<string name="dark_red">深红</string>
|
||||
<string name="custom">自定义</string>
|
||||
<string name="shared">Shared</string>
|
||||
<string name="shared">共享</string>
|
||||
|
||||
<!-- What's new -->
|
||||
<string name="whats_new">更新日志</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">使用密码保护隐藏项</string>
|
||||
<string name="password_protect_whole_app">使用密码保护本应用</string>
|
||||
<string name="keep_last_modified">在复制/移动/重命名文件时保留旧的修改日期</string>
|
||||
<string name="show_info_bubble">拖动滚动条时在滚动项目旁显示一个信息气泡</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">关于</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">额外信息</string>
|
||||
<string name="app_version">应用版本:%1$s</string>
|
||||
<string name="device_os">设备系统:%1$s</string>
|
||||
<string name="donate_please">你好,\n\n希望你喜欢这个应用。它不包含广告,所以请购买<a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 这个应用支持一下,这样此对话框将不再出现。\n\n你可以在<a href="http://simplemobiletools.com/donate">这里</a>找到更多捐赠选项。\n\n非常感谢!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
你好,<br><br>
|
||||
希望你喜欢这个应用。它不包含广告,所以请购买<a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 这个应用支持一下,这样此对话框将不再出现。<br><br>
|
||||
你可以在<a href="http://simplemobiletools.com/donate">这里</a>找到更多捐赠选项。<br><br>
|
||||
非常感谢!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">购买</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">尚未儲存變更。離開前是否儲存?</string>
|
||||
<string name="apply_to_all_apps">將顏色套用於全部 Simple 應用程式</string>
|
||||
<string name="share_colors_success">顏色更新成功。創建了一個名為 \'Shared\' 的新主題,未來請使用那來更新全部應用程式顏色。</string>
|
||||
<string name="purchase_thank_you">請購買 <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 來解鎖此功能及支持開發者。謝謝!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
請購買 <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 來解鎖此功能及支持開發者。謝謝!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">明亮主題</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">用密碼保護隱藏的物件</string>
|
||||
<string name="password_protect_whole_app">用密碼保護整個應用程式</string>
|
||||
<string name="keep_last_modified">當檔案複製/移動/重新命名時,保留舊的「最後修改」數值</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">關於</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">進階資訊</string>
|
||||
<string name="app_version">應用程式版本: %1$s</string>
|
||||
<string name="device_os">裝置系統: %1$s</string>
|
||||
<string name="donate_please">哈囉 \n\n希望您喜愛這應用程式。 它不含廣告, 所以請購買應用程式 <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 來支持開發者,這對話框也不會再出現。\n\n您可以在 <a href="http://simplemobiletools.com/donate">這裡</a> 找到更多捐贈選項。\n\n感謝!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
哈囉 <br><br>
|
||||
希望您喜愛這應用程式。 它不含廣告, 所以請購買應用程式 <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> 來支持開發者,這對話框也不會再出現。<br><br>
|
||||
您可以在 <a href="http://simplemobiletools.com/donate">這裡</a> 找到更多捐贈選項。<br><br>
|
||||
感謝!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">購買</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
<dimen name="fastscroll_width">8dp</dimen>
|
||||
<dimen name="fastscroll_height">40dp</dimen>
|
||||
<dimen name="fingerprint_icon_size">72dp</dimen>
|
||||
<dimen name="fastscroll_bubble_offset">30dp</dimen>
|
||||
|
||||
<dimen name="dragselect_hotspot_height">56dp</dimen>
|
||||
<dimen name="selection_check_size">26dp</dimen>
|
||||
|
|
|
@ -128,7 +128,11 @@
|
|||
<string name="save_before_closing">You have unsaved changes. Save before exit?</string>
|
||||
<string name="apply_to_all_apps">Apply colors to all Simple Apps</string>
|
||||
<string name="share_colors_success">Colors updated successfully. A new Theme called \'Shared\' has been added, please use that for updating all app colors in the future.</string>
|
||||
<string name="purchase_thank_you">Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!</string>
|
||||
<string name="purchase_thank_you">
|
||||
<![CDATA[
|
||||
Please purchase <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> to unlock this function and support the development. Thanks!
|
||||
]]>
|
||||
</string>
|
||||
|
||||
<!-- Themes -->
|
||||
<string name="light_theme">Light</string>
|
||||
|
@ -221,6 +225,7 @@
|
|||
<string name="password_protect_hidden_items">Password protect hidden item visibility</string>
|
||||
<string name="password_protect_whole_app">Password protect the whole application</string>
|
||||
<string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
|
||||
<string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
|
@ -239,7 +244,14 @@
|
|||
<string name="additional_info">Additional info</string>
|
||||
<string name="app_version">App version: %1$s</string>
|
||||
<string name="device_os">Device OS: %1$s</string>
|
||||
<string name="donate_please">Hello,\n\nhope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.\n\nYou can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.\n\nThank you!</string>
|
||||
<string name="donate_please">
|
||||
<![CDATA[
|
||||
Hello,<br><br>
|
||||
hope you are enjoying the app. It contains no ads, so please support its development by purchasing the <a href="https://play.google.com/store/apps/details?id=com.simplemobiletools.thankyou">Simple Thank You</a> app, it will also prevent this dialog from showing up again.<br><br>
|
||||
You can find more donating options <a href="http://simplemobiletools.com/donate">here</a>.<br><br>
|
||||
Thank you!
|
||||
]]>
|
||||
</string>
|
||||
<string name="purchase">Purchase</string>
|
||||
|
||||
<!-- License -->
|
||||
|
|
Loading…
Reference in a new issue