Add keyboard height multiplier function
This commit is contained in:
parent
7f64b0d7c3
commit
958621b281
|
@ -31,6 +31,7 @@ class SettingsActivity : SimpleActivity() {
|
||||||
setupVibrateOnKeypress()
|
setupVibrateOnKeypress()
|
||||||
setupShowPopupOnKeypress()
|
setupShowPopupOnKeypress()
|
||||||
setupKeyboardLanguage()
|
setupKeyboardLanguage()
|
||||||
|
setupKeyboardHeightMultiplier()
|
||||||
|
|
||||||
updateTextColors(settings_nested_scrollview)
|
updateTextColors(settings_nested_scrollview)
|
||||||
|
|
||||||
|
@ -137,4 +138,29 @@ class SettingsActivity : SimpleActivity() {
|
||||||
else -> "${getString(R.string.translation_english)} (QWERTY)"
|
else -> "${getString(R.string.translation_english)} (QWERTY)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun setupKeyboardHeightMultiplier() {
|
||||||
|
settings_height_multiplier.text = getKeyboardHeightMultiplierText(config.keyboardHeightMultiplier)
|
||||||
|
settings_keyboard_height_multiplier_holder.setOnClickListener {
|
||||||
|
val items = arrayListOf(
|
||||||
|
RadioItem(KEYBOARD_HEIGHT_MULTIPLIER_SMALL, getKeyboardHeightMultiplierText(KEYBOARD_HEIGHT_MULTIPLIER_SMALL)),
|
||||||
|
RadioItem(KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM, getKeyboardHeightMultiplierText(KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM)),
|
||||||
|
RadioItem(KEYBOARD_HEIGHT_MULTIPLIER_BIG, getKeyboardHeightMultiplierText(KEYBOARD_HEIGHT_MULTIPLIER_BIG)),
|
||||||
|
)
|
||||||
|
|
||||||
|
RadioGroupDialog(this@SettingsActivity, items, config.keyboardHeightMultiplier) {
|
||||||
|
config.keyboardHeightMultiplier = it as Int
|
||||||
|
settings_height_multiplier.text = getKeyboardHeightMultiplierText(config.keyboardHeightMultiplier)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getKeyboardHeightMultiplierText(multiplier: Int): String {
|
||||||
|
return when (multiplier) {
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_SMALL -> getString(R.string.settings_keyboard_height_multiplier_option_small)
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM -> getString(R.string.settings_keyboard_height_multiplier_option_medium)
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_BIG -> getString(R.string.settings_keyboard_height_multiplier_option_big)
|
||||||
|
else -> {getString(R.string.settings_keyboard_height_multiplier_option_small)}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,11 @@ class Config(context: Context) : BaseConfig(context) {
|
||||||
get() = prefs.getInt(KEYBOARD_LANGUAGE, getDefaultLanguage())
|
get() = prefs.getInt(KEYBOARD_LANGUAGE, getDefaultLanguage())
|
||||||
set(keyboardLanguage) = prefs.edit().putInt(KEYBOARD_LANGUAGE, keyboardLanguage).apply()
|
set(keyboardLanguage) = prefs.edit().putInt(KEYBOARD_LANGUAGE, keyboardLanguage).apply()
|
||||||
|
|
||||||
|
var keyboardHeightMultiplier: Int
|
||||||
|
get() = prefs.getInt(HEIGHT_MULTIPLIER, 1)
|
||||||
|
set(keyboardHeightMultiplier) = prefs.edit().putInt(HEIGHT_MULTIPLIER, keyboardHeightMultiplier).apply()
|
||||||
|
|
||||||
|
|
||||||
private fun getDefaultLanguage(): Int {
|
private fun getDefaultLanguage(): Int {
|
||||||
val conf = context.resources.configuration
|
val conf = context.resources.configuration
|
||||||
return if (conf.locale.toString().toLowerCase(Locale.getDefault()).startsWith("ru_")) {
|
return if (conf.locale.toString().toLowerCase(Locale.getDefault()).startsWith("ru_")) {
|
||||||
|
|
|
@ -12,6 +12,7 @@ const val VIBRATE_ON_KEYPRESS = "vibrate_on_keypress"
|
||||||
const val SHOW_POPUP_ON_KEYPRESS = "show_popup_on_keypress"
|
const val SHOW_POPUP_ON_KEYPRESS = "show_popup_on_keypress"
|
||||||
const val LAST_EXPORTED_CLIPS_FOLDER = "last_exported_clips_folder"
|
const val LAST_EXPORTED_CLIPS_FOLDER = "last_exported_clips_folder"
|
||||||
const val KEYBOARD_LANGUAGE = "keyboard_language"
|
const val KEYBOARD_LANGUAGE = "keyboard_language"
|
||||||
|
const val HEIGHT_MULTIPLIER = "height_multiplier"
|
||||||
|
|
||||||
// differentiate current and pinned clips at the keyboards' Clipboard section
|
// differentiate current and pinned clips at the keyboards' Clipboard section
|
||||||
const val ITEM_SECTION_LABEL = 0
|
const val ITEM_SECTION_LABEL = 0
|
||||||
|
@ -26,3 +27,8 @@ const val LANGUAGE_GERMAN = 5
|
||||||
const val LANGUAGE_ENGLISH_DVORAK = 6
|
const val LANGUAGE_ENGLISH_DVORAK = 6
|
||||||
const val LANGUAGE_ROMANIAN = 7
|
const val LANGUAGE_ROMANIAN = 7
|
||||||
const val LANGUAGE_SLOVENIAN = 8
|
const val LANGUAGE_SLOVENIAN = 8
|
||||||
|
|
||||||
|
// keyboard height multiplier options
|
||||||
|
const val KEYBOARD_HEIGHT_MULTIPLIER_SMALL = 1
|
||||||
|
const val KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM = 2
|
||||||
|
const val KEYBOARD_HEIGHT_MULTIPLIER_BIG = 3
|
||||||
|
|
|
@ -12,7 +12,9 @@ import android.view.inputmethod.EditorInfo
|
||||||
import android.view.inputmethod.EditorInfo.IME_ACTION_NONE
|
import android.view.inputmethod.EditorInfo.IME_ACTION_NONE
|
||||||
import androidx.annotation.XmlRes
|
import androidx.annotation.XmlRes
|
||||||
import com.simplemobiletools.keyboard.R
|
import com.simplemobiletools.keyboard.R
|
||||||
|
import com.simplemobiletools.keyboard.extensions.config
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
import kotlin.math.roundToInt
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads an XML description of a keyboard and stores the attributes of the keys. A keyboard consists of rows of keys.
|
* Loads an XML description of a keyboard and stores the attributes of the keys. A keyboard consists of rows of keys.
|
||||||
|
@ -29,6 +31,9 @@ class MyKeyboard {
|
||||||
/** Default key height */
|
/** Default key height */
|
||||||
private var mDefaultHeight = 0
|
private var mDefaultHeight = 0
|
||||||
|
|
||||||
|
/** Multiplier for the keyboard height */
|
||||||
|
var mKeyboardHeightMultiplier: Float = 1F
|
||||||
|
|
||||||
/** Is the keyboard in the shifted state */
|
/** Is the keyboard in the shifted state */
|
||||||
var mShiftState = SHIFT_OFF
|
var mShiftState = SHIFT_OFF
|
||||||
|
|
||||||
|
@ -100,7 +105,7 @@ class MyKeyboard {
|
||||||
this.parent = parent
|
this.parent = parent
|
||||||
val a = res.obtainAttributes(Xml.asAttributeSet(parser), R.styleable.MyKeyboard)
|
val a = res.obtainAttributes(Xml.asAttributeSet(parser), R.styleable.MyKeyboard)
|
||||||
defaultWidth = getDimensionOrFraction(a, R.styleable.MyKeyboard_keyWidth, parent.mDisplayWidth, parent.mDefaultWidth)
|
defaultWidth = getDimensionOrFraction(a, R.styleable.MyKeyboard_keyWidth, parent.mDisplayWidth, parent.mDefaultWidth)
|
||||||
defaultHeight = res.getDimension(R.dimen.key_height).toInt()
|
defaultHeight = (res.getDimension(R.dimen.key_height) * this.parent.mKeyboardHeightMultiplier).roundToInt()
|
||||||
defaultHorizontalGap = getDimensionOrFraction(a, R.styleable.MyKeyboard_horizontalGap, parent.mDisplayWidth, parent.mDefaultHorizontalGap)
|
defaultHorizontalGap = getDimensionOrFraction(a, R.styleable.MyKeyboard_horizontalGap, parent.mDisplayWidth, parent.mDefaultHorizontalGap)
|
||||||
a.recycle()
|
a.recycle()
|
||||||
}
|
}
|
||||||
|
@ -244,6 +249,12 @@ class MyKeyboard {
|
||||||
mDefaultHorizontalGap = 0
|
mDefaultHorizontalGap = 0
|
||||||
mDefaultWidth = mDisplayWidth / 10
|
mDefaultWidth = mDisplayWidth / 10
|
||||||
mDefaultHeight = mDefaultWidth
|
mDefaultHeight = mDefaultWidth
|
||||||
|
mKeyboardHeightMultiplier = when (context.config.keyboardHeightMultiplier){
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_SMALL -> 1F
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM -> 1.2F
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_BIG -> 1.4F
|
||||||
|
else -> 1F
|
||||||
|
}
|
||||||
mKeys = ArrayList()
|
mKeys = ArrayList()
|
||||||
mEnterKeyType = enterKeyType
|
mEnterKeyType = enterKeyType
|
||||||
loadKeyboard(context, context.resources.getXml(xmlLayoutResId))
|
loadKeyboard(context, context.resources.getXml(xmlLayoutResId))
|
||||||
|
@ -267,6 +278,12 @@ class MyKeyboard {
|
||||||
row.defaultHeight = mDefaultHeight
|
row.defaultHeight = mDefaultHeight
|
||||||
row.defaultWidth = keyWidth
|
row.defaultWidth = keyWidth
|
||||||
row.defaultHorizontalGap = mDefaultHorizontalGap
|
row.defaultHorizontalGap = mDefaultHorizontalGap
|
||||||
|
mKeyboardHeightMultiplier = when (context.config.keyboardHeightMultiplier){
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_SMALL -> 1F
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_MEDIUM -> 1.2F
|
||||||
|
KEYBOARD_HEIGHT_MULTIPLIER_BIG -> 1.4F
|
||||||
|
else -> 1F
|
||||||
|
}
|
||||||
|
|
||||||
characters.forEachIndexed { index, character ->
|
characters.forEachIndexed { index, character ->
|
||||||
val key = Key(row)
|
val key = Key(row)
|
||||||
|
|
|
@ -185,6 +185,30 @@
|
||||||
tools:text="@string/translation_english" />
|
tools:text="@string/translation_english" />
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/settings_keyboard_height_multiplier_holder"
|
||||||
|
style="@style/SettingsHolderTextViewStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@drawable/ripple_bottom_corners">
|
||||||
|
|
||||||
|
<com.simplemobiletools.commons.views.MyTextView
|
||||||
|
android:id="@+id/settings_keyboard_height_multiplier_label"
|
||||||
|
style="@style/SettingsTextLabelStyle"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/keyboard_height_multiplier" />
|
||||||
|
|
||||||
|
<com.simplemobiletools.commons.views.MyTextView
|
||||||
|
android:id="@+id/settings_height_multiplier"
|
||||||
|
style="@style/SettingsTextValueStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_below="@+id/settings_keyboard_height_multiplier_label"
|
||||||
|
tools:text="@string/settings_keyboard_height_multiplier_option_small" />
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</androidx.core.widget.NestedScrollView>
|
</androidx.core.widget.NestedScrollView>
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Показване на изскачащ прозорец при натискане на клавиш</string>
|
<string name="show_popup">Показване на изскачащ прозорец при натискане на клавиш</string>
|
||||||
<string name="vibrate_on_keypress">Вибриране при натискане на клавиш</string>
|
<string name="vibrate_on_keypress">Вибриране при натискане на клавиш</string>
|
||||||
<string name="keyboard_language">Език на клавиатурата</string>
|
<string name="keyboard_language">Език на клавиатурата</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Mostra una finestra emergent en prémer les tecles</string>
|
<string name="show_popup">Mostra una finestra emergent en prémer les tecles</string>
|
||||||
<string name="vibrate_on_keypress">Vibra en prémer les tecles</string>
|
<string name="vibrate_on_keypress">Vibra en prémer les tecles</string>
|
||||||
<string name="keyboard_language">Idioma del teclat</string>
|
<string name="keyboard_language">Idioma del teclat</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrovat při stisknutí klávesy</string>
|
<string name="vibrate_on_keypress">Vibrovat při stisknutí klávesy</string>
|
||||||
<string name="keyboard_language">Jazyk klávesnice</string>
|
<string name="keyboard_language">Jazyk klávesnice</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Vis en popup ved tastetryk</string>
|
<string name="show_popup">Vis en popup ved tastetryk</string>
|
||||||
<string name="vibrate_on_keypress">Vibrér ved tastetryk</string>
|
<string name="vibrate_on_keypress">Vibrér ved tastetryk</string>
|
||||||
<string name="keyboard_language">Tastatursprog</string>
|
<string name="keyboard_language">Tastatursprog</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Ein Popup bei Tastendruck anzeigen</string>
|
<string name="show_popup">Ein Popup bei Tastendruck anzeigen</string>
|
||||||
<string name="vibrate_on_keypress">Bei Tastendruck vibrieren</string>
|
<string name="vibrate_on_keypress">Bei Tastendruck vibrieren</string>
|
||||||
<string name="keyboard_language">Tastatursprache</string>
|
<string name="keyboard_language">Tastatursprache</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Εμφάνιση ανάδυσης στο πάτημα πλήκτρων</string>
|
<string name="show_popup">Εμφάνιση ανάδυσης στο πάτημα πλήκτρων</string>
|
||||||
<string name="vibrate_on_keypress">Δόνηση στο πάτημα πλήκτρου</string>
|
<string name="vibrate_on_keypress">Δόνηση στο πάτημα πλήκτρου</string>
|
||||||
<string name="keyboard_language">Γλώσσα πληκτρολογίου</string>
|
<string name="keyboard_language">Γλώσσα πληκτρολογίου</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Agrandar la tecla al pulsarla</string>
|
<string name="show_popup">Agrandar la tecla al pulsarla</string>
|
||||||
<string name="vibrate_on_keypress">Vibrar al pulsar una tecla</string>
|
<string name="vibrate_on_keypress">Vibrar al pulsar una tecla</string>
|
||||||
<string name="keyboard_language">Idioma del teclado</string>
|
<string name="keyboard_language">Idioma del teclado</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Klahvivajutusel näita hüpikakent</string>
|
<string name="show_popup">Klahvivajutusel näita hüpikakent</string>
|
||||||
<string name="vibrate_on_keypress">Klahvivajutusel kasuta värinat</string>
|
<string name="vibrate_on_keypress">Klahvivajutusel kasuta värinat</string>
|
||||||
<string name="keyboard_language">Klavituuri keel</string>
|
<string name="keyboard_language">Klavituuri keel</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Afficher une fenêtre contextuelle en cas de pression sur une touche</string>
|
<string name="show_popup">Afficher une fenêtre contextuelle en cas de pression sur une touche</string>
|
||||||
<string name="vibrate_on_keypress">Vibrer lorsqu\'une touche est pressée</string>
|
<string name="vibrate_on_keypress">Vibrer lorsqu\'une touche est pressée</string>
|
||||||
<string name="keyboard_language">Langue du clavier</string>
|
<string name="keyboard_language">Langue du clavier</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Prikaži skočni prozor prilikom pritiskanja tipke</string>
|
<string name="show_popup">Prikaži skočni prozor prilikom pritiskanja tipke</string>
|
||||||
<string name="vibrate_on_keypress">Vibriraj prilikom pritiskanja tipke</string>
|
<string name="vibrate_on_keypress">Vibriraj prilikom pritiskanja tipke</string>
|
||||||
<string name="keyboard_language">Jezik tipkovnice</string>
|
<string name="keyboard_language">Jezik tipkovnice</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Tampilkan sebuah popup pada penekanan tombol</string>
|
<string name="show_popup">Tampilkan sebuah popup pada penekanan tombol</string>
|
||||||
<string name="vibrate_on_keypress">Getar pada penekanan tombol</string>
|
<string name="vibrate_on_keypress">Getar pada penekanan tombol</string>
|
||||||
<string name="keyboard_language">Bahasa keyboard</string>
|
<string name="keyboard_language">Bahasa keyboard</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Mostra un popup alla pressione di un tasto</string>
|
<string name="show_popup">Mostra un popup alla pressione di un tasto</string>
|
||||||
<string name="vibrate_on_keypress">Vibra premendo un tasto</string>
|
<string name="vibrate_on_keypress">Vibra premendo un tasto</string>
|
||||||
<string name="keyboard_language">Lingua della tastiera</string>
|
<string name="keyboard_language">Lingua della tastiera</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">הצג חלון קופץ בלחיצת מקש</string>
|
<string name="show_popup">הצג חלון קופץ בלחיצת מקש</string>
|
||||||
<string name="vibrate_on_keypress">רטט בלחיצה על המקש</string>
|
<string name="vibrate_on_keypress">רטט בלחיצה על המקש</string>
|
||||||
<string name="keyboard_language">שפת מקלדת</string>
|
<string name="keyboard_language">שפת מקלדת</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">キー入力時にポップアップを表示する</string>
|
<string name="show_popup">キー入力時にポップアップを表示する</string>
|
||||||
<string name="vibrate_on_keypress">キー入力時にバイブする</string>
|
<string name="vibrate_on_keypress">キー入力時にバイブする</string>
|
||||||
<string name="keyboard_language">キーボードの言語</string>
|
<string name="keyboard_language">キーボードの言語</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Pop-up tonen bij toetsaanslagen</string>
|
<string name="show_popup">Pop-up tonen bij toetsaanslagen</string>
|
||||||
<string name="vibrate_on_keypress">Trillen bij toetsaanslagen</string>
|
<string name="vibrate_on_keypress">Trillen bij toetsaanslagen</string>
|
||||||
<string name="keyboard_language">Toetsenbordtaal</string>
|
<string name="keyboard_language">Toetsenbordtaal</string>
|
||||||
|
<string name="keyboard_height_multiplier">Toetsenbord hoogte</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Klein</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Middel</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Groot</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Pokazuj wyskakujące okienko przy naciśnięciu klawisza</string>
|
<string name="show_popup">Pokazuj wyskakujące okienko przy naciśnięciu klawisza</string>
|
||||||
<string name="vibrate_on_keypress">Wibracja przy naciśnięciu klawisza</string>
|
<string name="vibrate_on_keypress">Wibracja przy naciśnięciu klawisza</string>
|
||||||
<string name="keyboard_language">Język klawiatury</string>
|
<string name="keyboard_language">Język klawiatury</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Mostrar pop-up ao digitar</string>
|
<string name="show_popup">Mostrar pop-up ao digitar</string>
|
||||||
<string name="vibrate_on_keypress">Vibrar ao digitar</string>
|
<string name="vibrate_on_keypress">Vibrar ao digitar</string>
|
||||||
<string name="keyboard_language">Idioma do teclado</string>
|
<string name="keyboard_language">Idioma do teclado</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Mostrar notificação pop-up ao premir tecla</string>
|
<string name="show_popup">Mostrar notificação pop-up ao premir tecla</string>
|
||||||
<string name="vibrate_on_keypress">Vibrar ao premir tecla</string>
|
<string name="vibrate_on_keypress">Vibrar ao premir tecla</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Afișați o fereastră pop-up la apăsarea unei taste</string>
|
<string name="show_popup">Afișați o fereastră pop-up la apăsarea unei taste</string>
|
||||||
<string name="vibrate_on_keypress">Vibrează la apăsarea tastelor</string>
|
<string name="vibrate_on_keypress">Vibrează la apăsarea tastelor</string>
|
||||||
<string name="keyboard_language">Limba tastaturii</string>
|
<string name="keyboard_language">Limba tastaturii</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Показ ввода по нажатию</string>
|
<string name="show_popup">Показ ввода по нажатию</string>
|
||||||
<string name="vibrate_on_keypress">Вибрация по нажатию</string>
|
<string name="vibrate_on_keypress">Вибрация по нажатию</string>
|
||||||
<string name="keyboard_language">Язык клавиатуры</string>
|
<string name="keyboard_language">Язык клавиатуры</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Zobraziť detail znaku pri stlačení</string>
|
<string name="show_popup">Zobraziť detail znaku pri stlačení</string>
|
||||||
<string name="vibrate_on_keypress">Vibrovať pri stlačení</string>
|
<string name="vibrate_on_keypress">Vibrovať pri stlačení</string>
|
||||||
<string name="keyboard_language">Jazyk klávesnice</string>
|
<string name="keyboard_language">Jazyk klávesnice</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Visa en popupp vid knapptryck</string>
|
<string name="show_popup">Visa en popupp vid knapptryck</string>
|
||||||
<string name="vibrate_on_keypress">Vibrera på knapptryck</string>
|
<string name="vibrate_on_keypress">Vibrera på knapptryck</string>
|
||||||
<string name="keyboard_language">Tangentbordsspråk</string>
|
<string name="keyboard_language">Tangentbordsspråk</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Tuşa basıldığında bir açılır menü göster</string>
|
<string name="show_popup">Tuşa basıldığında bir açılır menü göster</string>
|
||||||
<string name="vibrate_on_keypress">Tuşa basıldığında titret</string>
|
<string name="vibrate_on_keypress">Tuşa basıldığında titret</string>
|
||||||
<string name="keyboard_language">Klavye dili</string>
|
<string name="keyboard_language">Klavye dili</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Показувати popup при натисканні</string>
|
<string name="show_popup">Показувати popup при натисканні</string>
|
||||||
<string name="vibrate_on_keypress">Вібрувати при натисканні</string>
|
<string name="vibrate_on_keypress">Вібрувати при натисканні</string>
|
||||||
<string name="keyboard_language">Мова клавіатури</string>
|
<string name="keyboard_language">Мова клавіатури</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">按键时显示弹框</string>
|
<string name="show_popup">按键时显示弹框</string>
|
||||||
<string name="vibrate_on_keypress">按键时振动</string>
|
<string name="vibrate_on_keypress">按键时振动</string>
|
||||||
<string name="keyboard_language">键盘语言</string>
|
<string name="keyboard_language">键盘语言</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -32,6 +32,10 @@
|
||||||
<string name="show_popup">按下按鍵時顯示彈出效果</string>
|
<string name="show_popup">按下按鍵時顯示彈出效果</string>
|
||||||
<string name="vibrate_on_keypress">按下按鍵時震動</string>
|
<string name="vibrate_on_keypress">按下按鍵時震動</string>
|
||||||
<string name="keyboard_language">鍵盤語言</string>
|
<string name="keyboard_language">鍵盤語言</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
|
@ -31,6 +31,10 @@
|
||||||
<string name="show_popup">Show a popup on keypress</string>
|
<string name="show_popup">Show a popup on keypress</string>
|
||||||
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
<string name="vibrate_on_keypress">Vibrate on keypress</string>
|
||||||
<string name="keyboard_language">Keyboard language</string>
|
<string name="keyboard_language">Keyboard language</string>
|
||||||
|
<string name="keyboard_height_multiplier">Keyboard height</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
|
||||||
|
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
|
||||||
<!--
|
<!--
|
||||||
Haven't found some strings? There's more at
|
Haven't found some strings? There's more at
|
||||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||||
|
|
Loading…
Reference in New Issue