add incogito and autocorrect toggle keys to toolbar

rename strings for the new keys
fix layout issue in toolbar/morekey dialog
adjust colors so disabled toolbar keys are a little darker
This commit is contained in:
Helium314 2024-01-01 13:16:49 +01:00
parent f093319436
commit 3bee2261f1
98 changed files with 205 additions and 148 deletions

View file

@ -22,7 +22,6 @@ import android.os.IBinder;
import android.os.Message;
import android.os.Process;
import android.text.InputType;
import org.dslul.openboard.inputmethod.latin.utils.Log;
import android.util.PrintWriterPrinter;
import android.util.Printer;
import android.util.SparseArray;
@ -81,6 +80,7 @@ import org.dslul.openboard.inputmethod.latin.utils.InlineAutofillUtils;
import org.dslul.openboard.inputmethod.latin.utils.InputMethodPickerKt;
import org.dslul.openboard.inputmethod.latin.utils.JniUtils;
import org.dslul.openboard.inputmethod.latin.utils.LeakGuardHandlerWrapper;
import org.dslul.openboard.inputmethod.latin.utils.Log;
import org.dslul.openboard.inputmethod.latin.utils.StatsUtils;
import org.dslul.openboard.inputmethod.latin.utils.StatsUtilsManager;
import org.dslul.openboard.inputmethod.latin.utils.SubtypeLocaleUtils;
@ -1592,6 +1592,12 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// Implementation of {@link KeyboardActionListener}.
@Override
public void onCodeInput(final int codePoint, final int x, final int y, final boolean isKeyRepeat) {
if (codePoint < 0) {
switch (codePoint) {
case Constants.CODE_TOGGLE_AUTOCORRECT -> {mSettings.toggleAutoCorrect(); return; }
case Constants.CODE_TOGGLE_INCOGNITO -> {mSettings.toggleAlwaysIncognitoMode(); return; }
}
}
// TODO: this processing does not belong inside LatinIME, the caller should be doing this.
final MainKeyboardView mainKeyboardView = mKeyboardSwitcher.getMainKeyboardView();
// x and y include some padding, but everything down the line (especially native

View file

@ -124,6 +124,7 @@ class DynamicColors(context: Context, override val themeStyle: String, override
private val spaceBarStateList: ColorStateList
private val adjustedBackgroundStateList: ColorStateList
private val suggestionBackgroundList: ColorStateList
private val toolbarKeyStateList = activatedStateList(keyText, darken(darken(keyText)))
/** custom drawable used for keyboard background */
private val keyboardBackground: Drawable?
@ -244,7 +245,7 @@ class DynamicColors(context: Context, override val themeStyle: String, override
override fun get(color: ColorType): Int = when (color) {
TOOL_BAR_KEY_ENABLED_BACKGROUND, EMOJI_CATEGORY_SELECTED, ACTION_KEY_BACKGROUND,
CLIPBOARD_PIN, SHIFT_KEY_ICON -> accent
CHIP, EMOJI_CATEGORY_BACKGROUND, GESTURE_PREVIEW, MORE_KEYS_BACKGROUND, MORE_SUGGESTIONS_BACKGROUND, KEY_PREVIEW -> adjustedBackground
AUTOFILL_BACKGROUND_CHIP, EMOJI_CATEGORY_BACKGROUND, GESTURE_PREVIEW, MORE_KEYS_BACKGROUND, MORE_SUGGESTIONS_BACKGROUND, KEY_PREVIEW -> adjustedBackground
TOOL_BAR_EXPAND_KEY_BACKGROUND -> if (!isNight) accent else doubleAdjustedBackground
GESTURE_TRAIL -> gesture
KEY_TEXT, SUGGESTION_AUTO_CORRECT, REMOVE_SUGGESTION_ICON,
@ -274,6 +275,7 @@ class DynamicColors(context: Context, override val themeStyle: String, override
else backgroundStateList
ACTION_KEY_MORE_KEYS_BACKGROUND -> if (themeStyle == STYLE_HOLO) adjustedBackgroundStateList
else actionKeyStateList
TOOL_BAR_KEY -> toolbarKeyStateList
else -> null // use color filter
}
if (colorStateList == null) {
@ -285,6 +287,10 @@ class DynamicColors(context: Context, override val themeStyle: String, override
}
override fun setColor(view: ImageView, color: ColorType) {
if (color == TOOL_BAR_KEY) {
setColor(view.drawable, color)
return
}
view.colorFilter = getColorFilter(color)
}
@ -379,6 +385,7 @@ class DefaultColors (
private val spaceBarStateList: ColorStateList
private val adjustedBackgroundStateList: ColorStateList
private val suggestionBackgroundList: ColorStateList
private val toolbarKeyStateList = activatedStateList(suggestionText, darken(darken(suggestionText)))
/** custom drawable used for keyboard background */
private val keyboardBackground: Drawable?
@ -439,7 +446,7 @@ class DefaultColors (
override fun get(color: ColorType): Int = when (color) {
TOOL_BAR_KEY_ENABLED_BACKGROUND, EMOJI_CATEGORY_SELECTED, ACTION_KEY_BACKGROUND,
CLIPBOARD_PIN, SHIFT_KEY_ICON -> accent
CHIP, EMOJI_CATEGORY_BACKGROUND, GESTURE_PREVIEW, MORE_KEYS_BACKGROUND, MORE_SUGGESTIONS_BACKGROUND, KEY_PREVIEW -> adjustedBackground
AUTOFILL_BACKGROUND_CHIP, EMOJI_CATEGORY_BACKGROUND, GESTURE_PREVIEW, MORE_KEYS_BACKGROUND, MORE_SUGGESTIONS_BACKGROUND, KEY_PREVIEW -> adjustedBackground
TOOL_BAR_EXPAND_KEY_BACKGROUND -> doubleAdjustedBackground
GESTURE_TRAIL -> gesture
KEY_TEXT, REMOVE_SUGGESTION_ICON, FUNCTIONAL_KEY_TEXT, KEY_ICON -> keyText
@ -469,6 +476,7 @@ class DefaultColors (
else backgroundStateList
ACTION_KEY_MORE_KEYS_BACKGROUND -> if (themeStyle == STYLE_HOLO) adjustedBackgroundStateList
else actionKeyStateList
TOOL_BAR_KEY -> toolbarKeyStateList
else -> null // use color filter
}
if (colorStateList == null) {
@ -480,6 +488,10 @@ class DefaultColors (
}
override fun setColor(view: ImageView, color: ColorType) {
if (color == TOOL_BAR_KEY) {
setColor(view.drawable, color)
return
}
view.colorFilter = getColorFilter(color)
}
@ -542,12 +554,17 @@ private fun stateList(pressed: Int, normal: Int): ColorStateList {
return ColorStateList(states, intArrayOf(pressed, normal))
}
private fun activatedStateList(activated: Int, normal: Int): ColorStateList {
val states = arrayOf(intArrayOf(android.R.attr.state_activated), intArrayOf(-android.R.attr.state_activated))
return ColorStateList(states, intArrayOf(activated, normal))
}
enum class ColorType {
ACTION_KEY_ICON,
ACTION_KEY_BACKGROUND,
ACTION_KEY_MORE_KEYS_BACKGROUND,
AUTOFILL_BACKGROUND_CHIP,
BACKGROUND,
CHIP,
CLIPBOARD_PIN,
CLIPBOARD_BACKGROUND,
EMOJI_BACKGROUND,

View file

@ -246,6 +246,8 @@ public final class Constants {
public static final int CODE_DOWN = -28;
public static final int CODE_UNDO = -29;
public static final int CODE_REDO = -30;
public static final int CODE_TOGGLE_AUTOCORRECT = -31;
public static final int CODE_TOGGLE_INCOGNITO = -32;
// Code value representing the code is not specified.
public static final int CODE_UNSPECIFIED = -200;

View file

@ -261,6 +261,10 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
return prefs.getBoolean(PREF_AUTO_CORRECTION, true);
}
public void toggleAutoCorrect() {
mPrefs.edit().putBoolean(Settings.PREF_AUTO_CORRECTION, !readAutoCorrectEnabled(mPrefs)).apply();
}
public static String readAutoCorrectConfidence(final SharedPreferences prefs,
final Resources res) {
return prefs.getString(PREF_AUTO_CORRECTION_CONFIDENCE,
@ -295,6 +299,11 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
return prefs.getBoolean(PREF_ALWAYS_INCOGNITO_MODE, false);
}
public void toggleAlwaysIncognitoMode() {
mPrefs.edit().putBoolean(Settings.PREF_ALWAYS_INCOGNITO_MODE, !readAlwaysIncognitoMode(mPrefs)).apply();
}
public static String readPrefAdditionalSubtypes(final SharedPreferences prefs,
final Resources res) {
final String predefinedPrefSubtypes = AdditionalSubtypeUtils.createPrefSubtypes(

View file

@ -29,7 +29,6 @@ import org.dslul.openboard.inputmethod.latin.utils.AsyncResultHolder;
import org.dslul.openboard.inputmethod.latin.utils.MoreKeysUtilsKt;
import org.dslul.openboard.inputmethod.latin.utils.ScriptUtils;
import org.dslul.openboard.inputmethod.latin.utils.TargetPackageInfoGetterTask;
import org.dslul.openboard.inputmethod.latin.utils.ToolbarKey;
import java.util.Arrays;
import java.util.List;
@ -191,7 +190,7 @@ public class SettingsValues {
mGestureFloatingPreviewTextEnabled = !mInputAttributes.mDisableGestureFloatingPreviewText
&& prefs.getBoolean(Settings.PREF_GESTURE_FLOATING_PREVIEW_TEXT, true);
mAutoCorrectionEnabledPerUserSettings = mAutoCorrectEnabled;
//&& !mInputAttributes.mInputTypeNoAutoCorrect;
//&& !mInputAttributes.mInputTypeNoAutoCorrect; // follow that request or not?
mSuggestionsEnabledPerUserSettings = !mInputAttributes.mIsPasswordField &&
readSuggestionsEnabled(prefs);
mIncognitoModeEnabled = Settings.readAlwaysIncognitoMode(prefs) || mInputAttributes.mNoLearning

View file

@ -623,6 +623,11 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
final Integer code = getCodeForToolbarKey((ToolbarKey) tag);
if (code != null) {
mListener.onCodeInput(code, Constants.SUGGESTION_STRIP_COORDINATE, Constants.SUGGESTION_STRIP_COORDINATE, false);
if (tag == ToolbarKey.INCOGNITO || tag == ToolbarKey.AUTOCORRECT || tag == ToolbarKey.ONE_HANDED) {
if (tag == ToolbarKey.INCOGNITO)
updateKeys(); // update icon
view.setActivated(!view.isActivated());
}
return;
}
}
@ -680,6 +685,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
copy.setContentDescription(original.getContentDescription());
copy.setImageDrawable(original.getDrawable());
copy.setLayoutParams(original.getLayoutParams());
copy.setActivated(original.isActivated());
setupKey(copy, Settings.getInstance().getCurrent().mColors);
mPinnedKeys.addView(copy);
}

View file

@ -61,7 +61,7 @@ public class InlineAutofillUtils {
.setBackground(
Icon.createWithResource(context,
androidx.autofill.R.drawable.autofill_inline_suggestion_chip_background)
.setTint(colors.get(ColorType.CHIP)))
.setTint(colors.get(ColorType.AUTOFILL_BACKGROUND_CHIP)))
.setPadding(0, 0, 0, 0)
.build())
.setChipStyle(
@ -69,7 +69,7 @@ public class InlineAutofillUtils {
.setBackground(
Icon.createWithResource(context,
androidx.autofill.R.drawable.autofill_inline_suggestion_chip_background)
.setTint(colors.get(ColorType.CHIP)))
.setTint(colors.get(ColorType.AUTOFILL_BACKGROUND_CHIP)))
.build())
.setStartIconStyle(new ImageViewStyle.Builder().setLayoutMargin(0, 0, 0, 0).build())
.setTitleStyle(

View file

@ -26,6 +26,12 @@ fun createToolbarKey(context: Context, keyboardAttr: TypedArray, key: ToolbarKey
button.scaleX = 1.2f
button.scaleY = 1.2f
}
button.isActivated = when (key) {
INCOGNITO -> Settings.readAlwaysIncognitoMode(DeviceProtectedUtils.getSharedPreferences(context))
ONE_HANDED -> Settings.getInstance().current.mOneHandedModeEnabled
AUTOCORRECT -> Settings.getInstance().current.mAutoCorrectionEnabledPerUserSettings
else -> true
}
button.setImageDrawable(icon)
return button
}
@ -43,6 +49,8 @@ fun getCodeForToolbarKey(key: ToolbarKey) = when (key) {
DOWN -> CODE_DOWN
UNDO -> CODE_UNDO
REDO -> CODE_REDO
INCOGNITO -> CODE_TOGGLE_INCOGNITO
AUTOCORRECT -> CODE_TOGGLE_AUTOCORRECT
CLEAR_CLIPBOARD -> null // not managed via code input
}
@ -59,25 +67,34 @@ private fun getStyleableIconId(key: ToolbarKey) = when (key) {
DOWN -> R.styleable.Keyboard_iconArrowDown
UNDO -> R.styleable.Keyboard_iconUndo
REDO -> R.styleable.Keyboard_iconRedo
INCOGNITO -> R.styleable.Keyboard_iconIncognitoKey
AUTOCORRECT -> R.styleable.Keyboard_iconLanguageSwitchKey
CLEAR_CLIPBOARD -> R.styleable.Keyboard_iconClearClipboardKey
}
// names need to be aligned with resources strings (using lowercase of key.name)
enum class ToolbarKey {
VOICE, CLIPBOARD, CLEAR_CLIPBOARD, SETTINGS, SELECT_ALL, COPY, ONE_HANDED, LEFT, RIGHT, UP, DOWN, UNDO, REDO
VOICE, CLIPBOARD, UNDO, REDO, SETTINGS, SELECT_ALL, COPY, ONE_HANDED, LEFT, RIGHT, UP, DOWN, INCOGNITO, AUTOCORRECT, CLEAR_CLIPBOARD
}
fun toToolbarKeyString(keys: Collection<ToolbarKey>) = keys.joinToString(";") { it.name }
val defaultToolbarPref = entries.joinToString(";") { if (it != CLEAR_CLIPBOARD) "${it.name},true" else "${it.name},false" }
val defaultToolbarPref = entries.filterNot { it == CLEAR_CLIPBOARD }.joinToString(";") {
when (it) {
INCOGNITO, AUTOCORRECT, UP, DOWN, ONE_HANDED -> "${it.name},false"
else -> "${it.name},true"
}
}
/** add missing keys, typically because a new key has been added */
fun upgradeToolbarPref(prefs: SharedPreferences) {
val list = prefs.getString(Settings.PREF_TOOLBAR_KEYS, defaultToolbarPref)!!.split(";").toMutableList()
if (list.size == ToolbarKey.entries.size) return
ToolbarKey.entries.forEach { key ->
if (list.none { it.startsWith("${key.name},") })
list.add("${key.name},true")
val splitDefault = defaultToolbarPref.split(";")
if (list.size == splitDefault.size) return
splitDefault.forEach { entry ->
val keyWithComma = entry.substringBefore(",") + ","
if (list.none { it.startsWith(keyWithComma) })
list.add("${keyWithComma}true")
}
// likely not needed, but better prepare for possibility of key removal
list.removeAll {

View file

@ -13,8 +13,9 @@
<TextView
android:id="@+id/morekeys_type"
style="@style/PreferenceTitleText"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_gravity="center_vertical"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
<androidx.appcompat.widget.SwitchCompat
android:id="@+id/morekeys_switch"

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Wys voorgestelde woorde terwyl jy tik"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokkeer aanstootlike woorde"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Moenie potensieel aanstootlike woorde voorstel nie"</string>
<string name="auto_correction" msgid="7630720885194996950">"Outokorrigering"</string>
<string name="autocorrect" msgid="7630720885194996950">"Outokorrigering"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Spasiebalk en leestekens korrigeer outomaties woorde wat verkeerd gespel is"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Af"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Matig"</string>
@ -165,7 +165,7 @@
<string name="delete_swipe_summary">Doen \'n vee van die skrap sleutel om \'n groter seleksie van teks eenmaal te skrap</string>
<string name="space_trackpad_summary">Vee op spasiebalk om wyser te beweeg</string>
<string name="subtype_with_layout_bn_BD"><xliff:g id="LANGUAGE_NAME" example="Bangla">%s</xliff:g> (Akkhor)</string>
<string name="prefs_force_incognito_mode">Dwing incognito-modus</string>
<string name="incognito">Dwing incognito-modus</string>
<string name="prefs_force_incognito_mode_summary">Deaktiveer die leer van nuwe woorde</string>
<string name="more_keys_strip_description">Meer sleutels</string>
<string name="prefs_long_press_keyboard_to_change_lang_summary">Lang-druk van spasiebalk sal toevoer metode seleksie skerm wys</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"እየተየብክ ተመራጭ ቃላትን አሳይ"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"አፀያፊ ቃላትን አግድ"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"አጸያፊ ሊሆኑ የሚችሉ ቃላትን አትጠቁም"</string>
<string name="auto_correction" msgid="7630720885194996950">"በራስ-ማስተካከል"</string>
<string name="autocorrect" msgid="7630720885194996950">"በራስ-ማስተካከል"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"የቦታ ቁልፍ እና ሥርዓተ ነጥብ በስህተት የተተየቡ ቃላትን በራስሰር ያስተካክላሉ ።"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ውጪ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"መጠነኛ"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"عرض الكلمات المقترحة أثناء الكتابة"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"حظر الكلمات المسيئة"</string>
<string name="prefs_block_potentially_offensive_summary">"عدم اقتراح كلمات محتمل أن تكون مسيئة"</string>
<string name="auto_correction" msgid="7630720885194996950">"التصحيح التلقائي"</string>
<string name="autocorrect" msgid="7630720885194996950">"التصحيح التلقائي"</string>
<string name="auto_correction_summary">"تؤدي المسافة والترقيم إلى تصحيح الكلمات المكتوبة بشكل غير صحيح"</string>
<string name="auto_correction_threshold_mode_off">"إيقاف"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"معتدل"</string>
@ -179,7 +179,7 @@
<string name="subtype_with_layout_bn_BD"><xliff:g id="LANGUAGE_NAME" example="Bangla">%s</xliff:g> (أخور)</string>
<string name="autospace_after_punctuation">ضع مسافةً بعد علامات الترقيم تلقائيًا</string>
<string name="autospace_after_punctuation_summary">أدرج مسافةً تلقائيًا بعد علامة الترقيم عند كتابة كلمة جديدة</string>
<string name="prefs_force_incognito_mode">افرض وضع التخفي</string>
<string name="incognito">افرض وضع التخفي</string>
<string name="abbreviation_unit_minutes"><xliff:g id="MINUTES">%s</xliff:g>]دقيقة.</string>
<string name="subtype_no_language_colemak_dh">الأبجدية (Colemak Mod-DH)</string>
<string name="subtype_no_language_workman">الأبجدية (Workman)</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"টাইপ কৰি থাকোঁতে পৰামৰ্শৰ শব্দবোৰ দেখুৱাওক"</string>
<string name="prefs_block_potentially_offensive_title">"আপত্তিজনক শব্দবোৰ অৱৰোধ কৰক"</string>
<string name="prefs_block_potentially_offensive_summary">"সাম্ভাব্য আপত্তিজনক শব্দবোৰৰ পৰামৰ্শ নিদিব"</string>
<string name="auto_correction">"স্বয়ং-সংশোধন"</string>
<string name="autocorrect">"স্বয়ং-সংশোধন"</string>
<string name="auto_correction_summary">"স্পেচবাৰ আৰু যতিচিহ্নই ভুলকৈ টাইপ কৰা শব্দবোৰ স্বয়ংক্ৰিয়ভাৱে শুদ্ধ কৰে"</string>
<string name="auto_correction_threshold_mode_off">"অফ কৰক"</string>
<string name="auto_correction_threshold_mode_modest">"পৰিমিত"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Yazarkən təklif edilən sözləri ekranda göstər"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Təhqiredici sözləri əngəlləyin"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Potensial təhqiredici sözlər təklif etməyin"</string>
<string name="auto_correction" msgid="7630720885194996950">"Avtomatik-korreksiya"</string>
<string name="autocorrect" msgid="7630720885194996950">"Avtomatik-korreksiya"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Boşluq və punktuasiya avtomatik yanlış sözləri düzəldir"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Deaktiv"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Orta"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Prikazivanje predloženih reči tokom unosa teksta"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokiraj uvredljive reči"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nema predlaganja potencijalno uvredljivih reči"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autom. ispravljanje"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autom. ispravljanje"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Razmak i interpunkcija automatski ispravljaju greške u kucanju"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Isključi"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Umereno"</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Паказваць прапанаваныя словы падчас набору тэксту"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блакіраваць абразлівыя словы"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Не прапануйце патэнцыяльна абразлівых слоў"</string>
<string name="auto_correction" msgid="7630720885194996950">"Аўтавыпраўленне"</string>
<string name="autocorrect" msgid="7630720885194996950">"Аўтавыпраўленне"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Прабелы і пунктуацыйныя знакі дазваляюць аўтаматычна выпраўляць памылкова ўведзеныя словы"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Адключаны"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Сціплы"</string>
@ -172,7 +172,7 @@
<string name="secondary_locale">Шматмоўны набор тэксту</string>
<string name="load_gesture_library">Загрузіць бібліятэку ўводу жэстамі</string>
<string name="load_gesture_library_summary">Падайце ўбудаваную бібліятэку для ўключэння ўводу жэстамі</string>
<string name="prefs_force_incognito_mode">Прымусовы рэжым інкогніта</string>
<string name="incognito">Прымусовы рэжым інкогніта</string>
<string name="more_keys_strip_description">Больш клавіш</string>
<string name="theme_navbar">Колер панэлі навігацыі</string>
<string name="theme_name_light">Светлая</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Показване на предложения, докато пишете"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блокиране на обидни думи"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Без потенциално обидни думи"</string>
<string name="auto_correction" msgid="7630720885194996950">"Автоматична поправка"</string>
<string name="autocorrect" msgid="7630720885194996950">"Автоматична поправка"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Клавишът за интервал и пунктуация авт. поправя сгрешени думи"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Изкл."</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Умерено"</string>

View file

@ -56,7 +56,7 @@
<string name="prefs_show_suggestions_summary">লেখার সময় প্রস্তাবিত শব্দ প্রদর্শন</string>
<string name="prefs_block_potentially_offensive_title">আপত্তিজনক শব্দ অবরোধ</string>
<string name="prefs_block_potentially_offensive_summary">সম্ভাব্য আপত্তিকর শব্দের পরামর্শ দেবে না</string>
<string name="auto_correction">স্বতঃসংশোধন</string>
<string name="autocorrect">স্বতঃসংশোধন</string>
<string name="auto_correction_summary">স্পেসবার ও যতিচিহ্নের মাধ্যমে ভুল টাইপ করা শব্দের স্বয়ংক্রিয় সংশোধন</string>
<string name="auto_correction_confidence">স্বয়ংক্রিয় সংশোধনের দৃঢ়তা</string>
<string name="auto_correction_threshold_mode_off">বন্ধ</string>
@ -91,7 +91,7 @@
<string name="autospace_after_punctuation_summary">নতুন শব্দ লেখার সময় যতিচিহ্নের পরে স্বয়ংক্রিয়ভাবে স্পেস বসবে</string>
<string name="url_detection_title">ইউআরএল শনাক্তকরণ</string>
<string name="url_detection_summary">ইউআরএল এবং অনুরূপ একটি একক শব্দ হিসেবে শনাক্ত করার চেষ্টা করবে</string>
<string name="prefs_force_incognito_mode">ছদ্মবেশী মোড আরোপ</string>
<string name="incognito">ছদ্মবেশী মোড আরোপ</string>
<string name="prefs_force_incognito_mode_summary">নতুন শব্দ শিখন নিষ্ক্রিয়করণ</string>
<string name="more_keys_strip_description">অতিরিক্ত বোতাম</string>
<string name="configure_input_method">ইনপুট পদ্ধতি সংস্থাপন</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Prikaži predložene riječi prilikom kucanja"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokiranje uvredljivih riječi"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne predlaži potencijalno uvrjedljive riječi"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatsko ispravljanje"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatsko ispravljanje"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Automatsko ispravljanje grešaka nakon razmaka i interpunkcije"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Isključeno"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Srednje"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Mostra les paraules suggerides mentre escrius"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloqueja paraules ofensives"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"No suggereixis paraules potencialment ofensives"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correcció automàtica"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correcció automàtica"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Tecla d\'espai i signes de puntuació corregeixen paraules amb errors"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Desactiva"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderada"</string>
@ -146,7 +146,7 @@
<string name="enable_clipboard_history_summary">Si es desactiva, la tecla del porta-retalls enganxarà els continguts del porta-retalls en cas que contingui alguna cosa.</string>
<string name="clipboard_history_retention_time">Temps de manteniment a l\'historial</string>
<string name="delete_swipe_summary">Llisqueu damunt de la tecla d\'esborrar per seleccionar i treure grans parts de text d\'un sol cop.</string>
<string name="prefs_force_incognito_mode">Força el mode d\'incògnit</string>
<string name="incognito">Força el mode d\'incògnit</string>
<string name="abbreviation_unit_minutes"><xliff:g id="MINUTES">%s</xliff:g>min</string>
<string name="spell_checker_service_name">Corrector ortogràfic de l\'OpenBoard</string>
<string name="android_spell_checker_settings">Configuració del corrector ortogràfic de l\'OpenBoard</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Zobrazovat navržená slova během psaní"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokovat nevhodná slova"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nenavrhovat potenciálně nevhodná slova"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatické opravy"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatické opravy"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Stisknutím mezerníku a interpunkce se automaticky opravují chybně napsaná slova"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Vypnuto"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mírné"</string>
@ -156,7 +156,7 @@
<string name="spell_checker_service_name">OpenBoard Kontrola Pravopisu</string>
<string name="android_spell_checker_settings">Nastavení kontroly pravopisu OpenBoard</string>
<string name="autospace_after_punctuation_summary">Automaticky vloží mezeru po ukončení slova znaménkem</string>
<string name="prefs_force_incognito_mode">Vynutit režim inkognito</string>
<string name="incognito">Vynutit režim inkognito</string>
<string name="prefs_force_incognito_mode_summary">Vypnout učení nových slov</string>
<string name="number_row">Číselná řada</string>
<string name="settings_category_input">Vstup</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Vis ordforslag under indtastning"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloker stødende ord"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Foreslå ikke potentielt stødende ord"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatisk rettelse"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatisk rettelse"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Mellemrumstast og tegnsætning retter automatisk forkerte ord"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Fra"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderat"</string>
@ -177,7 +177,7 @@
<string name="delete_swipe">Swipe-sletning</string>
<string name="delete_swipe_summary">Udfør et swipe fra slet-tasten for at vælge og fjerne større dele af teksten på én gang</string>
<string name="space_trackpad_summary">Stryg på mellemrumstasten for at flytte markøren</string>
<string name="prefs_force_incognito_mode">Gennemtving inkognitotilstand</string>
<string name="incognito">Gennemtving inkognitotilstand</string>
<string name="prefs_force_incognito_mode_summary">Deaktiver indlæring af nye ord</string>
<string name="more_keys_strip_description">Flere taster</string>
<string name="show_hints_summary">Vis tips med lange tryk</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Vorgeschlagene Wörter während des Tippens anzeigen"</string>
<string name="prefs_block_potentially_offensive_title">"Anstößige Wörter sperren"</string>
<string name="prefs_block_potentially_offensive_summary">"Keine Vorschläge für potenziell anstößige Wörter unterbreiten"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autokorrektur"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autokorrektur"</string>
<string name="auto_correction_summary">"Korrektur fehlerhafter Wörter durch Leertaste und Satzzeichen"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Aus"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mäßig"</string>
@ -167,7 +167,7 @@
<string name="number_row_summary">Zeigt die Ziffernreihe immer an</string>
<string name="number_row">Ziffernreihe</string>
<string name="show_hints">Tasten-Hinweise anzeigen</string>
<string name="prefs_force_incognito_mode">Inkognito-Modus erzwingen</string>
<string name="incognito">Inkognito-Modus erzwingen</string>
<string name="enable_clipboard_history_summary">Wenn deaktiviert, fügt die Zwischenablage-Taste den Inhalt der Zwischenablage ein (falls vorhanden)</string>
<string name="autospace_after_punctuation_summary">Fügt automatisch ein Leerzeichen nach einem Punkt ein, sobald ein neues Wort eingegeben wird</string>
<string name="autospace_after_punctuation">Automatisches Leerzeichen nach Punkt</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Προβολή προτεινόμενων λέξεων κατά την πληκτρολόγηση"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Αποκλεισμός υβρ/κών λέξ."</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Να μην προτείνονται πιθανώς προσβλητικές λέξεις"</string>
<string name="auto_correction" msgid="7630720885194996950">"Αυτόματη διόρθωση"</string>
<string name="autocorrect" msgid="7630720885194996950">"Αυτόματη διόρθωση"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Τα πλήκτρα διαστήματος και στίξης διορθ. αυτόμ. λάθος λέξεις"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Απενεργοποίηση"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Μέτρια"</string>
@ -149,7 +149,7 @@
<string name="spell_checker_service_name">Ορθογραφικός Έλεγχος OpenBoard</string>
<string name="delete_swipe">Διαγραφή ολίσθησης</string>
<string name="delete_swipe_summary">Πραγματοποιήστε μια σάρωση από το πλήκτρο διαγραφής για να επιλέξετε και να αφαιρέσετε μεγαλύτερα τμήματα κειμένου ταυτόχρονα</string>
<string name="prefs_force_incognito_mode">Αναγκαστική λειτουργία ανώνυμης περιήγησης</string>
<string name="incognito">Αναγκαστική λειτουργία ανώνυμης περιήγησης</string>
<string name="show_emoji_key">Πλήκτρο emoji</string>
<string name="settings_category_additional_keys">Πρόσθετα κλειδιά</string>
<string name="settings_category_correction">Διορθώσεις</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Display suggested words while typing"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Block offensive words"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Do not suggest potentially offensive words"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto-correction"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto-correction"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Correct mistyped words automatically with spacebar and punctuation"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Off"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Display suggested words while typing"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Block offensive words"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Do not suggest potentially offensive words"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto-correction"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto-correction"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Correct mistyped words automatically with spacebar and punctuation"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Off"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Display suggested words while typing"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Block offensive words"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Do not suggest potentially offensive words"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto-correction"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto-correction"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Correct mistyped words automatically with spacebar and punctuation"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Off"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>
@ -147,7 +147,7 @@
<string name="delete_swipe">Delete swipe</string>
<string name="prefs_force_incognito_mode_summary">Disable learning of new words</string>
<string name="show_emoji_key">Emoji key</string>
<string name="prefs_force_incognito_mode">Force incognito mode</string>
<string name="incognito">Force incognito mode</string>
<string name="more_keys_strip_description">More keys</string>
<string name="delete_swipe_summary">Perform a swipe from the delete key to select and remove bigger portions of text at once</string>
<string name="space_trackpad">Space bar trackpad</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Display suggested words while typing"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Block offensive words"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Do not suggest potentially offensive words"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto-correction"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto-correction"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Correct mistyped words automatically with spacebar and punctuation"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Off"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"Display suggested words while typing"</string>
<string name="prefs_block_potentially_offensive_title">"Block offensive words"</string>
<string name="prefs_block_potentially_offensive_summary">"Do not suggest potentially offensive words"</string>
<string name="auto_correction">"Auto-correction"</string>
<string name="autocorrect">"Auto-correction"</string>
<string name="auto_correction_summary">"Spacebar and punctuation automatically correct mistyped words"</string>
<string name="auto_correction_threshold_mode_off">"Off"</string>
<string name="auto_correction_threshold_mode_modest">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Mostrar palabras sugeridas al escribir"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquear palabras ofensivas"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"No sugerir posibles palabras ofensivas"</string>
<string name="auto_correction" msgid="7630720885194996950">"Corrección automática"</string>
<string name="autocorrect" msgid="7630720885194996950">"Corrección automática"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"La barra espaciadora y las teclas de puntuación insertan automáticamente la palabra corregida"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Desactivado"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderado"</string>
@ -155,7 +155,7 @@
<string name="settings_category_suggestions">Sugerencias</string>
<string name="delete_swipe">Borrar deslizando</string>
<string name="autospace_after_punctuation">Espacio después del punto</string>
<string name="prefs_force_incognito_mode">Forzar modo incógnito</string>
<string name="incognito">Forzar modo incógnito</string>
<string name="number_row_summary">Mostrar siempre la fila de números</string>
<string name="prefs_long_press_keyboard_to_change_lang_summary">Mantener presionada la barra espaciadora nos mostrará los distintos métodos de entrada disponibles</string>
<string name="delete_swipe_summary">Deslice el dedo desde la tecla eliminar para seleccionar y eliminar porciones más grandes de texto a la vez</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"Mostrar las palabras sugeridas mientras escribes"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquear palabras ofensivas"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"No sugerir palabras que pueden ser ofensivas"</string>
<string name="auto_correction">"Autocorrección"</string>
<string name="autocorrect">"Autocorrección"</string>
<string name="auto_correction_summary">"Pulsar la tecla de espacio o punto para corregir errores"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Desactivado"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Parcial"</string>
@ -155,7 +155,7 @@
<string name="delete_swipe_summary">Deslice el dedo desde la tecla Borrar para seleccionar y eliminar porciones más grandes de texto de una vez</string>
<string name="space_trackpad">Panel táctil con barra espaciadora</string>
<string name="prefs_force_incognito_mode_summary">No se aprenderán nuevas palabras</string>
<string name="prefs_force_incognito_mode">Forzar el modo incógnito</string>
<string name="incognito">Forzar el modo incógnito</string>
<string name="more_keys_strip_description">Más teclas</string>
<string name="space_trackpad_summary">Deslizar en la barra espaciadora para mover el cursor</string>
<string name="show_emoji_key">Tecla de emojis</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Kuva sisestamise ajal sõnasoovitusi"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokeeri solvavad sõnad"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ära soovita potentsiaalselt solvavaid sõnu"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automaatne korrigeerimine"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automaatne korrigeerimine"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Tühik ja kirjavahemärgid parand. autom. kirjavigadega sõnad"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Väljas"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mõõdukas"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Bistaratu iradokitako hitzak idatzi bitartean"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokeatu hitz iraingarriak"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ez iradoki iraingarria izan daitekeen hitzik"</string>
<string name="auto_correction" msgid="7630720885194996950">"Zuzenketa automatikoa"</string>
<string name="autocorrect" msgid="7630720885194996950">"Zuzenketa automatikoa"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Zuzendu auto. zuriuneak eta puntuazioa gaizki idatzitako hitzetan"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Desaktibatu"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Zuhurra"</string>
@ -163,7 +163,7 @@
<string name="spell_checker_service_name">OpenBoard Ortografia Zuzentzailea</string>
<string name="theme_variant">Gai aldaera</string>
<string name="autospace_after_punctuation">Autoespazioa puntuazioen ondoren</string>
<string name="prefs_force_incognito_mode">Ezezagun modua behartu</string>
<string name="incognito">Ezezagun modua behartu</string>
<string name="subtype_with_layout_bn_BD"><xliff:g id="LANGUAGE_NAME" example="Bangla">%s</xliff:g> (Akkhor hizkuntza)</string>
<string name="settings_category_input">Sarrera</string>
<string name="key_borders">Gako-ertzak</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"نمایش واژه‌های پیشنهادی در حین تایپ"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"عدم نمایش کلمات توهین‌آمیز"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"کلمات توهین‌آمیز احتمالی پیشنهاد نشود"</string>
<string name="auto_correction" msgid="7630720885194996950">"تصحیح خودکار"</string>
<string name="autocorrect" msgid="7630720885194996950">"تصحیح خودکار"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"کلید فاصله و علائم سجاوندی به‌صورت خودکار کلماتی را که غلط تایپ شده‌اند تصحیح می‌کند"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"خاموش"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"متوسط"</string>
@ -172,7 +172,7 @@
<string name="delete_swipe">حذف با کشیدن</string>
<string name="space_trackpad_summary">برای جابجایی مکان نما، انگشت خود را روی فاصله بکشید</string>
<string name="delete_swipe_summary">برای انتخاب و حذف یکباره بخش‌های بزرگ‌تر از متن، روی کلید حذف بکشید</string>
<string name="prefs_force_incognito_mode">حالت نا‌شناس اجباری</string>
<string name="incognito">حالت نا‌شناس اجباری</string>
<string name="prefs_force_incognito_mode_summary">غیرفعال کردن یادگیری کلمات جدید</string>
<string name="autospace_after_punctuation">فاصله خودکار بعد از نشانه گذاری</string>
<string name="autospace_after_punctuation_summary">هنگام تایپ یک کلمه جدید، به طور خودکار فاصله را بعد از علامت گذاری وارد کن</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Näytä sanaehdotukset kirjoitettaessa."</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Estä loukkaavat sanat"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Älä ehdota mahd. loukkaavia sanoja."</string>
<string name="auto_correction" msgid="7630720885194996950">"Autom. korjaus"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autom. korjaus"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Välilyönti ja -merkit korjaavat väärinkirjoitetut sanat"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Ei käytössä"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Osittainen"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Afficher les suggestions de terme lors de la saisie"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquer les termes choquants"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Pas de termes potentiellement choquants"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correction auto"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correction auto"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Corriger autom. orthographe (pression sur barre espace/signes ponctuation)"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Désactiver"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Simple"</string>

View file

@ -44,7 +44,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Affiche les mots suggérés lors de la saisie"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blocage des termes choquants"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne suggère pas de mots potentiellement offensants"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correction automatique"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correction automatique"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Corrige automatiquement l\'orthographe lors d'un appui sur la barre d\'espace ou un signe de ponctuation"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Désactiver"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Simple"</string>
@ -264,7 +264,7 @@ Nouveau dictionnaire:
<string name="about_github_link" >Lien vers GitHub</string>
<string name="save_log">Sauvegarder le journal</string>
<string name="license" >Licence Open-source</string>
<string name="prefs_force_incognito_mode">Forcer le mode incognito</string>
<string name="incognito">Forcer le mode incognito</string>
<string name="theme_style">Style</string>
<string name="style_name_Rounded">Arrondi</string>
<string name="theme_colors">Couleurs</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Mostra palabras suxeridas mentres escribes"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquear palabras ofensivas"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Evita suxerir palabras potencialmente ofensivas"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autocorrección"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autocorrección"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Premer a barra espazo e teclas de puntuación para corrixir erros"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Desactivada"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modesta"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"લખતી વખતે સૂચિત શબ્દો પ્રદર્શિત કરો"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"વાંધાજનક શબ્દો બ્લૉક કરો"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"સંભવિત વાંધાજનક શબ્દો સૂચવશો નહીં"</string>
<string name="auto_correction" msgid="7630720885194996950">"સ્વતઃ-સુધારો"</string>
<string name="autocorrect" msgid="7630720885194996950">"સ્વતઃ-સુધારો"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"સ્પેસબાર અને વિરામચિહ્ન ખોટી રીતે લખાયેલ શબ્દોને આપમેળે સુધારે છે"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"બંધ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"વિનમ્ર"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"लिखते समय सुझाए गए शब्‍द दिखाएं"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"आपत्तिजनक शब्द रोकें"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"संभावित आपत्तिजनक शब्दों का सुझाव न दें"</string>
<string name="auto_correction" msgid="7630720885194996950">"अपने-आप सुधार"</string>
<string name="autocorrect" msgid="7630720885194996950">"अपने-आप सुधार"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Spacebar और विराम चिह्न गलत लिखे गए शब्‍दों को स्‍वचालित रूप से ठीक करते हैं"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"बंद"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"साधारण"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"Prikazivanje predloženih riječi prilikom upisivanja"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokiraj uvredljive riječi"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne predlaži potencijalno uvredljive riječi"</string>
<string name="auto_correction">"Automatski ispravak"</string>
<string name="autocorrect">"Automatski ispravak"</string>
<string name="auto_correction_summary">"Razmak i interpunkcija automatski ispravljaju krive riječi"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Isključeno"</string>
<string name="auto_correction_threshold_mode_modest">"Skromno"</string>
@ -169,7 +169,7 @@
<string name="space_trackpad_summary">Prelazi prstom po razmaknici za pomicanje kursora</string>
<string name="autospace_after_punctuation">Automatski dodaj razmak nakon interpunkcije</string>
<string name="autospace_after_punctuation_summary">Automatski dodaj razmak nakon interpunkcije kad pišeš novu riječ</string>
<string name="prefs_force_incognito_mode">Prisili inkognito način rada</string>
<string name="incognito">Prisili inkognito način rada</string>
<string name="more_keys_strip_description">Više tipki</string>
<string name="number_row_summary">Uvijek pokaži broj retka</string>
<string name="show_hints">Pokaži savjete tipki</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"A javasolt szavak megjelenítése gépelés közben"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Sértő szavak kizárása"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne javasoljon esetlegesen sértő szavakat"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatikus javítás"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatikus javítás"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"A szóköz és központozás automatikusan javítja az elgépelést"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Ki"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mérsékelt"</string>
@ -170,7 +170,7 @@
<string name="delete_swipe">Húzás törlése</string>
<string name="show_emoji_key">Emoji kulcs</string>
<string name="space_trackpad_summary">A kurzor mozgatásához nyomja meg a szóköz billentyűt</string>
<string name="prefs_force_incognito_mode">Inkognitó mód kényszerítése</string>
<string name="incognito">Inkognitó mód kényszerítése</string>
<string name="prefs_force_incognito_mode_summary">Új szavak tanulásának letiltása</string>
<string name="more_keys_strip_description">Több kulcs</string>
<string name="autospace_after_punctuation">Automatikus szóköz írásjelek után</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"A javasolt szavak megjelenítése gépelés közben"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Sértő szavak kizárása"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne javasoljon esetlegesen sértő szavakat"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatikus javítás"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatikus javítás"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"A szóköz és központozás automatikusan javítja az elgépelést"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Ki"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mérsékelt"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Ցուցադրել առաջարկվող բառերը մուտքագրման ընթացքում"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Արգելափակել վիրավորական բառերը"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Չառաջարկել հավանական վիրավորական բառերը"</string>
<string name="auto_correction" msgid="7630720885194996950">"Ինքնուղղում"</string>
<string name="autocorrect" msgid="7630720885194996950">"Ինքնուղղում"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Տպագրական սխալով բառերում ավտոմատ տեղադրել բացակներն ու կետադրական նշանները"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Անջատված"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Համեստ"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Tampilkan kata yang disarankan ketika mengetik"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokir kata tak pantas"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Jangan sarankan kata yang berpotensi menyinggung"</string>
<string name="auto_correction" msgid="7630720885194996950">"Koreksi otomatis"</string>
<string name="autocorrect" msgid="7630720885194996950">"Koreksi otomatis"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Bilah spasi dan tanda baca secara otomatis dikoreksi pada kata yang salah ketik"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Mati"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Sederhana"</string>
@ -158,7 +158,7 @@
<string name="android_spell_checker_settings">Pengaturan Pemeriksa Ejaan OpenBoard</string>
<string name="number_row">Baris angka</string>
<string name="prefs_long_press_keyboard_to_change_lang">Ubah metode masukan dengan tombol spasi</string>
<string name="prefs_force_incognito_mode">Paksa mode privat</string>
<string name="incognito">Paksa mode privat</string>
<string name="show_emoji_key">Tombol emoji</string>
<string name="ime_settings">Pengaturan OpenBoard</string>
<string name="settings_category_input">Masukan</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Sýna orðatillögur við innslátt"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Útiloka dónaleg orð"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ekki stinga upp á orðum sem kunna að vera dónaleg"</string>
<string name="auto_correction" msgid="7630720885194996950">"Sjálfv. leiðrétting"</string>
<string name="autocorrect" msgid="7630720885194996950">"Sjálfv. leiðrétting"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Bil og greinarmerki leiðrétta sjálfkrafa innsláttarvillur"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Slökkt"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Hófleg"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Visualizza le parole suggerite durante la digitazione"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blocca parole offensive"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Non suggerire parole potenzialmente offensive"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correzione automatica"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correzione automatica"</string>
<string name="auto_correction_summary">"Barra spaziatrice/punteggiatura correggono parole con errori"</string>
<string name="auto_correction_threshold_mode_off">"OFF"</string>
<string name="auto_correction_threshold_mode_modest">"Media"</string>
@ -159,7 +159,7 @@
<string name="delete_swipe">Scorri per cancellare</string>
<string name="delete_swipe_summary">Scorri sul tasto cancella per selezionare e rimuovere grandi porzioni di testo in una sola volta</string>
<string name="space_trackpad">Barra spaziatrice trackpad</string>
<string name="prefs_force_incognito_mode">Forza modalità incognito</string>
<string name="incognito">Forza modalità incognito</string>
<string name="show_emoji_key">Tasto emoji</string>
<string name="space_trackpad_summary">Scorri sulla barra spaziatrice per spostare il cursore</string>
<string name="number_row_summary">Mostra sempre la riga dei numeri</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"הצג הצעות למילים בעת הקלדה"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"חסימת מילים פוגעניות"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"אל תציע מילים שעלולות להיות פוגעניות"</string>
<string name="auto_correction" msgid="7630720885194996950">"תיקון אוטומטי"</string>
<string name="autocorrect" msgid="7630720885194996950">"תיקון אוטומטי"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"מקש הרווח ופיסוק מתקנים אוטומטית שגיאות הקלדה"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"כבוי"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"מצומצם"</string>
@ -178,7 +178,7 @@
<string name="delete_swipe_summary">בצע החלקה על מקש המחיקה כדי לבחור ולהסיר חלקים גדולים יותר של טקסט בבת אחת</string>
<string name="space_trackpad">משטח עקיבה של מקש רווח</string>
<string name="space_trackpad_summary">החלק על מקש הרווח כדי להזיז את הסמן</string>
<string name="prefs_force_incognito_mode">כפה מקלדת אנונימית</string>
<string name="incognito">כפה מקלדת אנונימית</string>
<string name="prefs_force_incognito_mode_summary">השבת למידה של מילים חדשות</string>
<string name="more_keys_strip_description">עוד מפתחות</string>
<string name="auto_correction_confidence">ודאות התיקון האוטומטי</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"入力中に入力候補を表示する"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"不適切な語句をブロック"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"不適切な可能性がある語句を候補にしない"</string>
<string name="auto_correction" msgid="7630720885194996950">"自動修正"</string>
<string name="autocorrect" msgid="7630720885194996950">"自動修正"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"誤入力をスペースまたは句読点キーで修正する"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"OFF"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"中"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"წერისას შეთავაზებული სიტყვების ჩვენება"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"შეურაცხმყოფელი სიტყვების დაბლოკვა"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"არ მოხდეს პოტენციურად შეურაცხმყოფელი სიტყვების შეთავაზება"</string>
<string name="auto_correction" msgid="7630720885194996950">"ავტოკორექცია"</string>
<string name="autocorrect" msgid="7630720885194996950">"ავტოკორექცია"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"შორისი და პუნქტუაცია ავტომატურად ასწორებს არასწორად აკრეფილ სიტყვებს"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"გამორთვა"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"მოკრძალებული"</string>
@ -157,7 +157,7 @@
<string name="settings_category_miscellaneous">სხვადასხვა</string>
<string name="settings_no_limit">უსაზღვრო</string>
<string name="space_trackpad">გამოტოვების ღილაკი ტრეკპადის მაგიერ</string>
<string name="prefs_force_incognito_mode">ნაძალადევი ინკოგნიტოს რეჟიმი</string>
<string name="incognito">ნაძალადევი ინკოგნიტოს რეჟიმი</string>
<string name="prefs_force_incognito_mode_summary">ახალი სიტყვების სწავლის გამორთვა</string>
<string name="delete_swipe_summary">ტექსტის დიდი პორციების მოსანიშნად და წასაშლელად წაშლის ღილაკს გაუსვით</string>
<string name="prefs_long_press_keyboard_to_change_lang">შეყვანის მეთოდის გამოტოვების ღილაკით შეცვლა</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Теру кезінде ұсынылған сөздерді көрсету"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Балағат сөздерге тыйым салу"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Қорлаушы сөздерді ұсынбау"</string>
<string name="auto_correction" msgid="7630720885194996950">"Авто түзету"</string>
<string name="autocorrect" msgid="7630720885194996950">"Авто түзету"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Бос орын және тыныс белгі автоматты түрде қателерді түзетеді"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Өшірулі"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Баяу"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"បង្ហាញ​ពាក្យ​​បាន​​ផ្ដល់​​ស្នើ​​ខណៈ​ពេល​​​វាយ​បញ្ចូល"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ទប់ស្កាត់​​ពាក្យ​​បំពាន"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"កុំ​ស្នើ​ឲ្យ​ពាក្យ​បំពាន​មាន​សក្ដានុពល​"</string>
<string name="auto_correction" msgid="7630720885194996950">"ការ​កែ​​​ស្វ័យប្រវត្តិ"</string>
<string name="autocorrect" msgid="7630720885194996950">"ការ​កែ​​​ស្វ័យប្រវត្តិ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ចន្លោះ​មិន​ឃើញ ​និង​សញ្ញា​​វណ្ណយុត្ត​កែ​ពាក្យ​ដែល​បាន​វាយ​ខុស​ស្វ័យប្រវត្តិ"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"បិទ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"ល្មម"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ಟೈಪ್ ಮಾಡುವಾಗ ಸಲಹೆ ನೀಡಿದ ಪದಗಳನ್ನು ಪ್ರದರ್ಶಿಸು"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ಅಕ್ಷೇಪಾರ್ಹ ಪದಗಳನ್ನು ನಿರ್ಬಂಧಿಸು"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ಸಂಭಾವ್ಯ ಆಕ್ಷೇಪಾರ್ಹ ಪದಗಳ ಸಲಹೆ ನೀಡದಿರು"</string>
<string name="auto_correction" msgid="7630720885194996950">"ಸ್ವಯಂ-ತಿದ್ದುಪಡಿ"</string>
<string name="autocorrect" msgid="7630720885194996950">"ಸ್ವಯಂ-ತಿದ್ದುಪಡಿ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ತಪ್ಪಾಗಿ ಟೈಪ್ ಮಾಡಿದ ಪದಗಳನ್ನು ಸ್ಪೇಸ್‌ಬಾರ್ ಮತ್ತು ವಿರಾಮಚಿಹ್ನೆಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸರಿಪಡಿಸುತ್ತವೆ"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ಆಫ್ ಆಗಿದೆ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"ಸಾಧಾರಣ"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"글자를 입력하는 동안 추천 단어 표시"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"불쾌감을 주는 단어 차단"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"불쾌감을 줄 수 있는 단어는 추천하지 않음"</string>
<string name="auto_correction" msgid="7630720885194996950">"자동 수정"</string>
<string name="autocorrect" msgid="7630720885194996950">"자동 수정"</string>
<string name="auto_correction_summary">"스페이스바와 문장부호 키를 사용하면 오타가 자동으로 교정됩니다."</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"사용 안함"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"약"</string>
@ -164,7 +164,7 @@
<string name="settings_category_miscellaneous">기타</string>
<string name="enable_clipboard_history_summary">비활성화시 클립보드 콘텐츠가 있는 경우 클립보드 키로 붙여넣습니다</string>
<string name="clipboard_history_retention_time">기록 보존 시간</string>
<string name="prefs_force_incognito_mode">강제 시크릿 모드</string>
<string name="incognito">강제 시크릿 모드</string>
<string name="more_keys_strip_description">더 많은 키</string>
<string name="space_trackpad">스페이스 바 트랙 패드</string>
<string name="number_row_summary">항상 숫자 행 표시</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Терүү учурунда сунушталган сөздөрдү көрсөтүү"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Адепсиз сөздөрдү бөгөттө"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Адепсиз сөздөр сунушталбайт"</string>
<string name="auto_correction" msgid="7630720885194996950">"Авто оңдоо"</string>
<string name="autocorrect" msgid="7630720885194996950">"Авто оңдоо"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Боштук жана тыныш белгиси автоматтык түрдө туура эмес терилген сөздөрдү оңдойт"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Өчүк"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Жөнөкөй"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ສະແດງຄຳສັບທີ່ແນະນຳໃນເວລາທີ່ກຳລັງພິມ"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ປິດກັ້ນຄຳທີ່ບໍ່ສຸພາບ"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ຫ້າມແນະນຳຄຳທີ່ບໍ່ສຸພາບ"</string>
<string name="auto_correction" msgid="7630720885194996950">"ໂຕຊ່ວຍສະກົດຄຳ"</string>
<string name="autocorrect" msgid="7630720885194996950">"ໂຕຊ່ວຍສະກົດຄຳ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ການຍະຫວ່າງ ແລະ ການໃສ່ເຄື່ອງໝາຍຈະຖືກປ່ຽນແປງໃຫ້ຖືກຕ້ອງ ໃນຄຳທີ່ພິມຜິດໂດຍອັດຕະໂນມັດ"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ປິດ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"ປານກາງ"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Įvedant tekstą pateikti siūlomų žodžių"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokuoti įžeidžiančius žodžius"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nesiūlyti galimai įžeidžiančių žodžių"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatinis taisymas"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatinis taisymas"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Tarpo kl. ir skyr. ženkl. aut. išt. neteis. įv. žodž."</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Išjungta"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Vidutinis"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Ievades laikā attēlot ieteiktos vārdus"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloķēt aizvainojošus vārdus"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Neiesakiet vārdus, kas varētu būt aizvainojoši"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automātiska labošana"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automātiska labošana"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Atstarpes taustiņš un interpunkcija; automātiska kļūdainu vārdu labošana"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Izslēgta"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mērena"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Прикажи предложени зборови додека пишувам"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блокирај навредливи зборови"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Не предлагај потенцијално навредливи зборови"</string>
<string name="auto_correction" msgid="7630720885194996950">"Автоматска корекција"</string>
<string name="autocorrect" msgid="7630720885194996950">"Автоматска корекција"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Копчето за празно место автоматски ги коригира погрешните зборови"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Исклучено"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Скромно"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ടൈപ്പുചെയ്യുമ്പോൾ നിർദ്ദേശിച്ച വാക്കുകൾ പ്രദർശിപ്പിക്കുക"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"നിന്ദ്യമായ വാക്കുകൾ തടയുക"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"നിന്ദ്യമാകാനിടയുള്ള വാക്കുകൾ നിർദ്ദേശിക്കരുത്"</string>
<string name="auto_correction" msgid="7630720885194996950">"സ്വയം തിരുത്തൽ"</string>
<string name="autocorrect" msgid="7630720885194996950">"സ്വയം തിരുത്തൽ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"തെറ്റായി ടൈപ്പുചെയ്‌ത വാക്കുകളിൽ സ്‌പെയ്‌സ് ബാറും ചിഹ്‌നവും സ്വയമേവ തിരുത്തുന്നു"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ഓഫാക്കുക"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"മിതമായി"</string>
@ -145,7 +145,7 @@
<string name="settings_no_limit">പരിധിയില്ല</string>
<string name="clipboard_history_retention_time">ചരിത്രം സൂക്ഷിക്കുന്ന സമയം</string>
<string name="space_trackpad">സ്പേസ് ബാർ ട്രാക്ക്പാഡ്</string>
<string name="prefs_force_incognito_mode">ഇൻകോഗ്നിറ്റോ മോഡ് നിർബന്ധിക്കുക</string>
<string name="incognito">ഇൻകോഗ്നിറ്റോ മോഡ് നിർബന്ധിക്കുക</string>
<string name="more_keys_strip_description">കൂടുതൽ കീകൾ</string>
<string name="number_row_summary">എല്ലായ്പ്പോഴും നമ്പർ വരി കാണിക്കുക</string>
<string name="number_row">നമ്പർ വരി</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Бичих явцад санал болгосон үгсийг харуулах"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Доромжилсон үгсийг хаах"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Доромжилсон үгсийг санал болгохгүй байх"</string>
<string name="auto_correction" msgid="7630720885194996950">"Авто-залруулга"</string>
<string name="autocorrect" msgid="7630720885194996950">"Авто-залруулга"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Хоосон зай болон цэг таслал нь буруу бичсэн үгсийг автоматаар залруулна"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Идэвхгүй"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Хүлээцтэй"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"टाइप करताना सुचविलेले शब्द प्रदर्शित करा"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"आक्षेपार्ह शब्द ब्लॉक करा"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"संभाव्य आक्षेपार्ह शब्द सुचवू नका"</string>
<string name="auto_correction" msgid="7630720885194996950">"ऑटो-करेक्शन"</string>
<string name="autocorrect" msgid="7630720885194996950">"ऑटो-करेक्शन"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"चुकीचे टाइप केलेले शब्द स्पेसबार आणि विरामचिन्हे स्वयंचलितपणे सुधारते"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"बंद"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"मर्यादशील"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Paparkan cadangan perkataan semasa menaip"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Sekat perkataan yg menyinggung"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Jangan cadangkan perkataan yang boleh menyinggung"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto pembetulan"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto pembetulan"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Bar ruang dan tanda baca secara automatik membetulkan perkataan yang ditaip salah"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Dimati"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Sederhana"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ရိုက်နေစဉ် အကြံပြုထားသည့် စကားလုံးများ ပြပါ"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ရိုင်းစိုင်းစကားများပိတ်ရန်"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ရိုင်းစိုင်းသည့် စကားလုံးများအား အကြံမပြုပါနှင့်"</string>
<string name="auto_correction" msgid="7630720885194996950">"အလိုလျောက် အမှားပြင်ခြင်း"</string>
<string name="autocorrect" msgid="7630720885194996950">"အလိုလျောက် အမှားပြင်ခြင်း"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"မှားယွင်းစွာ ရိုက်ခဲ့သည့် စာလုံးများကို နေရာခြားခလုတ်နှင့် သတ်ပုံမှန်ကန်ခြင်းသည် အလိုအလျောက် ပြုပြင်ပေးသည်"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"မရှိ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"သာမှန်"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Vis ordforslag under skriving"</string>
<string name="prefs_block_potentially_offensive_title">"Blokkér støtende ord"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ikke foreslå potensielt støtende ord"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autokorrektur"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autokorrektur"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Mellomromstast og skilletegn retter automatisk feilstavede ord"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Av"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderat"</string>
@ -169,7 +169,7 @@
<string name="number_row">Tallrad</string>
<string name="show_hints">Vis tastaturhint</string>
<string name="show_hints_summary">Vis langtrykkshint</string>
<string name="prefs_force_incognito_mode">Påtving inkognito-modus</string>
<string name="incognito">Påtving inkognito-modus</string>
<string name="key_borders">Tastekanter</string>
<string name="theme_family">Draktfamilie</string>
<string name="use_system_language_to_select_input_method_subtypes">"Bruk systemspråk"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"टाइप गर्ने बेलामा सुझाव शब्दहरू देखाउनुहोस्"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"आपत्तिजनक शब्दहरूलाई रोक्नुहोस्"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"सम्भावित आपत्तिजनक शब्दहरू सुझाव नगर्नुहोस्"</string>
<string name="auto_correction" msgid="7630720885194996950">"स्वतः सुधार"</string>
<string name="autocorrect" msgid="7630720885194996950">"स्वतः सुधार"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"गल्ती टाइप भएका शब्दहरूलाई स्पेसबार र पङ्चुएसनले स्वचालित रूपमा सच्याउँछन्।"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"बन्द"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"सामान्य"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Voorgestelde woorden weergeven tijdens typen"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Grof taalgebruik blokkeren"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Geen potentieel aanstootgevende woorden voorstellen"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autocorrectie"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autocorrectie"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Met spatiebalk en interpunctie worden verkeerd gespelde woorden automatisch gecorrigeerd"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Uitgeschakeld"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Normaal"</string>
@ -160,7 +160,7 @@
<string name="spell_checker_service_name">OpenBoard spellingcontrole</string>
<string name="android_spell_checker_settings">OpenBoard spellingscontrole instellingen</string>
<string name="number_row">Nummer rij</string>
<string name="prefs_force_incognito_mode">Incognitomodus forceren</string>
<string name="incognito">Incognitomodus forceren</string>
<string name="space_trackpad_summary">Veeg over de spatiebalk om de cursor te verplaatsen</string>
<string name="show_emoji_key">Emoji-toets</string>
<string name="settings_category_correction">Correcties</string>

View file

@ -39,7 +39,7 @@
<string name="auto_correction_threshold_mode_aggressive">بہت</string>
<string name="language_selection_title">بولیاں</string>
<string name="add">شامل کرو</string>
<string name="auto_correction">خود بخود درستی</string>
<string name="autocorrect">خود بخود درستی</string>
<string name="auto_correction_threshold_mode_modest">مدھ</string>
<string name="select_language">بولیاں</string>
<string name="remove">ہٹاؤ</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ਟਾਈਪਿੰਗ ਕਰਦੇ ਸਮੇਂ ਸੁਝਾਏ ਗਏ ਸ਼ਬਦ ਪ੍ਰਦਰਸ਼ਿਤ ਕਰੋ"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ਅਪਮਾਨਜਨਕ ਸ਼ਬਦਾਂ ਨੂੰ ਬਲਾਕ ਕਰੋ"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ਸੰਭਾਵੀ ਅਪਮਾਨਜਨਕ ਸ਼ਬਦਾਂ ਦਾ ਸੁਝਾਅ ਨਾ ਦਿਓ"</string>
<string name="auto_correction" msgid="7630720885194996950">"ਆਟੋ-ਸੁਧਾਈ"</string>
<string name="autocorrect" msgid="7630720885194996950">"ਆਟੋ-ਸੁਧਾਈ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ਸਪੇਸਬਾਰ ਅਤੇ ਵਿਸ਼ਰਾਮ ਚਿੰਨ੍ਹ ਗ਼ਲਤ ਟਾਈਪ ਕੀਤੇ ਸ਼ਬਦਾਂ ਨੂੰ ਆਟੋਮੈਟਿਕਲੀ ਠੀਕ ਕਰਦੇ ਹਨ"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ਬੰਦ"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"ਸੰਕੋਚਵਾਨ"</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Wyświetlaj proponowane słowa podczas wpisywania"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokuj obraźliwe słowa"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nie proponuj słów potencjalnie obraźliwych"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autokorekta"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autokorekta"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Spacja i znaki przestankowe poprawiają błędnie wpisane słowa"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Wyłącz"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Umiarkowana"</string>
@ -156,7 +156,7 @@
<string name="android_spell_checker_settings">Ustawienia sprawdzania pisowni OpenBoard</string>
<string name="settings_category_clipboard_history">Historia schowka</string>
<string name="enable_clipboard_history">Włącz historię schowka</string>
<string name="prefs_force_incognito_mode">Wymuś tryb incognito</string>
<string name="incognito">Wymuś tryb incognito</string>
<string name="clipboard_history_retention_time">Czas przechowywania historii</string>
<string name="number_row_summary">Zawsze pokazuj rząd numeryczny</string>
<string name="prefs_long_press_keyboard_to_change_lang">Zmień metodę wprowadzania za pomocą spacji</string>

View file

@ -31,7 +31,7 @@
<string name="configure_dictionaries_title">Adicionar dicionários</string>
<string name="prefs_block_potentially_offensive_title">Bloquear palavras ofensivas</string>
<string name="prefs_block_potentially_offensive_summary">Não sugerir palavras ofensivas</string>
<string name="auto_correction">Correção automática</string>
<string name="autocorrect">Correção automática</string>
<string name="auto_correction_threshold_mode_off">Desligado</string>
<string name="auto_correction_threshold_mode_modest">Moderado</string>
<string name="auto_correction_threshold_mode_aggressive">Agressivo</string>
@ -46,7 +46,7 @@
<string name="enable_clipboard_history">Ativar área de transferência</string>
<string name="delete_swipe_summary">Deslize a tecla delete para selecionar e remover partes maiores de texto de uma só vez</string>
<string name="delete_swipe">Deslizar para apagar</string>
<string name="prefs_force_incognito_mode">Forçar modo anônimo</string>
<string name="incognito">Forçar modo anônimo</string>
<string name="prefs_force_incognito_mode_summary">Desativar aprendizagem de palavras</string>
<string name="more_keys_strip_description">Mais teclas</string>
<string name="configure_input_method">Configurar métodos de entrada</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary">"Apresentar sugestões de palavras ao escrever"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquear palavras ofensivas"</string>
<string name="prefs_block_potentially_offensive_summary">"Não sugerir palavras potencialmente ofensivas"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correção automática"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correção automática"</string>
<string name="auto_correction_summary">"Correcção automática de palavras mal escritas c/ barra de espaços e pontuação"</string>
<string name="auto_correction_threshold_mode_off">"Desligar"</string>
<string name="auto_correction_threshold_mode_modest">"Moderada"</string>
@ -147,7 +147,7 @@
<string name="space_trackpad">\'Trackpad\' na barra de espaço</string>
<string name="delete_swipe_summary">Pode deslizar desde a tecla Eliminar para selecionar e remover grandes porções de texto de uma vez</string>
<string name="show_emoji_key">Tecla de emoji</string>
<string name="prefs_force_incognito_mode">Impor modo incógnito</string>
<string name="incognito">Impor modo incógnito</string>
<string name="day_night_mode">Modo diurno/noturno automático</string>
<string name="day_night_mode_summary">Aparência usa as definições do sistema</string>
<string name="spell_checker_service_name">Verificação ortográfica OpenBoard</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"Exibir sugestões de palavras durante a digitação"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Bloquear palavras ofensivas"</string>
<string name="prefs_block_potentially_offensive_summary">"Não sugerir palavras potencialmente ofensivas"</string>
<string name="auto_correction" msgid="7630720885194996950">"Correção automática"</string>
<string name="autocorrect" msgid="7630720885194996950">"Correção automática"</string>
<string name="auto_correction_summary">"A barra de espaço e a pontuação corrigem automaticamente palavras com erro de digitação"</string>
<string name="auto_correction_threshold_mode_off">"Desativado"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderado"</string>
@ -147,7 +147,7 @@
<string name="number_row_summary">Mostrar sempre n.º de linha</string>
<string name="subtype_no_language_colemak_dh">Alfabeto (Colemak Mod-DH)</string>
<string name="prefs_force_incognito_mode_summary">Desativar aprendizagem de palavras</string>
<string name="prefs_force_incognito_mode">Impor modo incógnito</string>
<string name="incognito">Impor modo incógnito</string>
<string name="space_trackpad_summary">Deslize na barra de espaço para mover o cursor</string>
<string name="show_emoji_key">Tecla de emoji</string>
<string name="settings_category_correction">Correções</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Afișează sugestii de cuvinte în timpul introducerii textului"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blocați cuvintele jignitoare"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nu se sugerează cuvinte potențial jignitoare"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autocorectare"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autocorectare"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Corectare automată cuvinte prin bară spațiu/semne punctuație"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Dezactivată"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Moderată"</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Предлагать варианты слов во время ввода"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блокировка нецензурных слов"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Не предлагать слова, которые могут быть сочтены оскорбительными"</string>
<string name="auto_correction" msgid="7630720885194996950">"Автоисправление"</string>
<string name="autocorrect" msgid="7630720885194996950">"Автоисправление"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Автоматическое исправление опечаток при вводе знака препинания или пробела"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Отключено"</string>
<string name="auto_correction_threshold_mode_modest">"Умеренное"</string>
@ -166,7 +166,7 @@
<string name="load_gesture_library">Загрузить библиотеку ввода жестами</string>
<string name="load_gesture_library_summary">Предоставьте встроенную библиотеку для включения ввода жестами</string>
<string name="more_keys_strip_description">Больше клавиш</string>
<string name="prefs_force_incognito_mode">Включить режим инкогнито</string>
<string name="incognito">Включить режим инкогнито</string>
<string name="prefs_force_incognito_mode_summary">Отключить запоминание слов</string>
<string name="show_emoji_key">Клавиша эмодзи</string>
<string name="settings_category_clipboard_history">История буфера обмена</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ටයිප් කරන අතරතුර යෝජිත වචන දර්ශනය කරන්න"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"අප්‍රසන්න වචන අවහිර කරන්න"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"විභව්‍යව අප්‍රසන්න වචන යෝජනා නොකරන්න"</string>
<string name="auto_correction" msgid="7630720885194996950">"ස්වයං-නිවැරදි කිරීම"</string>
<string name="autocorrect" msgid="7630720885194996950">"ස්වයං-නිවැරදි කිරීම"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ඉඩ යතුර සහ විරාම ලකුණ වැරදියට ටයිප් කළ වචන ස්වයංක්‍රියව නිවැරදි කරයි"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"අක්‍රියයි"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"මධ්‍යස්"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Zobrazovať navrhované slová počas písania"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokovať urážlivé slová"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Nenavrhovať potenciálne urážlivé slová"</string>
<string name="auto_correction" msgid="7630720885194996950">"Automatické opravy"</string>
<string name="autocorrect" msgid="7630720885194996950">"Automatické opravy"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Medzerník s klávesom interpunkcie automaticky opraví chybné slovo"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Vypnuté"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Mierne"</string>
@ -151,7 +151,7 @@
<string name="spell_checker_service_name">OpenBoard Kontrola Pravopisu</string>
<string name="android_spell_checker_settings">Nastavenia kontroly pravopisu OpenBoard</string>
<string name="show_emoji_key">Emoji klávesa</string>
<string name="prefs_force_incognito_mode">Vynútiť režim inkognito</string>
<string name="incognito">Vynútiť režim inkognito</string>
<string name="settings_category_input">Vstup</string>
<string name="ime_settings">OpenBoard Nastavenia</string>
<string name="settings_category_additional_keys">Dodatočné klávesy</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Pokaži predlagane besede med tipkanjem"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blokiraj žaljive besede"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ne predlagaj potencialno žaljivih besed"</string>
<string name="auto_correction" msgid="7630720885194996950">"Samodejni popravek"</string>
<string name="autocorrect" msgid="7630720885194996950">"Samodejni popravek"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Preslednica in ločila samodejno popravijo napačno vtipkane besede"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Izklopljeno"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Zmerno"</string>
@ -145,7 +145,7 @@
<string name="select_input_method">"Izberite način vnosa"</string>
<string name="auto_correction_confidence">Interval zaupanja samodejnih popravkov</string>
<string name="delete_swipe_summary">Podrsaj z vračalke, da izbereš in izbrišeš večje dele besedila naenkrat</string>
<string name="prefs_force_incognito_mode">Vsiljen prikriti način</string>
<string name="incognito">Vsiljen prikriti način</string>
<string name="number_row_summary">Vedno pokaži vrstico s številkami</string>
<string name="show_hints">Prikaži namige tipk</string>
<string name="prefs_long_press_keyboard_to_change_lang">Spremeni način vnosa s preslednico</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Shfaq fjalë sugjeruese kur shkruan"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blloko fjalë ofenduese"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Mos sugjero fjalë që mund të jetë ofenduese"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto-korrigjim"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto-korrigjim"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Hapësira ose pikësimi korrigjojnë automatikisht fjalët e gabuara"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Çaktivizuar"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Приказивање предложених речи током уноса текста"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блокирај увредљиве речи"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Нема предлагања потенцијално увредљивих речи"</string>
<string name="auto_correction" msgid="7630720885194996950">"Аутом. исправљање"</string>
<string name="autocorrect" msgid="7630720885194996950">"Аутом. исправљање"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Размак и интерпункција аутоматски исправљају грешке у куцању"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Искључи"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Умерено"</string>
@ -159,7 +159,7 @@
<string name="enable_clipboard_history_summary">Ако је онемогућено, тастер међумеморије ће налепити садржај међуспремника ако га има</string>
<string name="delete_swipe_summary">Превуците прстом од тастера за брисање да бисте одједном изабрали и уклонили веће делове текста</string>
<string name="space_trackpad_summary">Проведите по пробелу, чтобы переместить курсор</string>
<string name="prefs_force_incognito_mode">Омогући режим без архивирања</string>
<string name="incognito">Омогући режим без архивирања</string>
<string name="number_row">Ред бројева</string>
<string name="prefs_long_press_keyboard_to_change_lang">Промените начин уноса помоћу тастера за размак</string>
<string name="prefs_long_press_keyboard_to_change_lang_summary">Дуг притисак на тастер за размак ће приказати мени за избор метода уноса</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary">"Visar ordförslag när du skriver"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Blockera stötande ord"</string>
<string name="prefs_block_potentially_offensive_summary">"Visa inte förslag på ord som kan verka stötande"</string>
<string name="auto_correction" msgid="7630720885194996950">"Autokorrigering"</string>
<string name="autocorrect" msgid="7630720885194996950">"Autokorrigering"</string>
<string name="auto_correction_summary">"Blanksteg/skiljetecken rättar felstavning"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Av"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Måttlig"</string>
@ -159,7 +159,7 @@
<string name="settings_category_additional_keys">Ytterligare tangenter</string>
<string name="settings_category_clipboard_history">Urklippshistorik</string>
<string name="show_hints">Visa tangenttips</string>
<string name="prefs_force_incognito_mode">Tvinga inkognitoläge</string>
<string name="incognito">Tvinga inkognitoläge</string>
<string name="prefs_force_incognito_mode_summary">Inaktivera inlärningen av nya ord</string>
<string name="settings_category_input">Inmatning</string>
<string name="enable_clipboard_history">Aktivera urklippshistorik</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Onyesha maneno yaliyopendekezwa wakati unachapa"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Zuia maneno yanayokera"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Usipendekeze maneno yanayoweza kukera"</string>
<string name="auto_correction" msgid="7630720885194996950">"Sahihisha kiotomatiki"</string>
<string name="autocorrect" msgid="7630720885194996950">"Sahihisha kiotomatiki"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Kiaamba na kiakifishi hurekebisha maneno ambayo yamechapishwa vibaya"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Zima"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Ya wastani"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"உள்ளிடும்போது பரிந்துரைக்கப்பட்ட வார்த்தைகளைக் காட்டும்"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"புண்படுத்தும் சொற்களைத் தடு"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"மனதைப் புண்படுத்தக் கூடிய சொற்களைப் பரிந்துரைக்க வேண்டாம்"</string>
<string name="auto_correction" msgid="7630720885194996950">"தன்னியக்க திருத்தம்"</string>
<string name="autocorrect" msgid="7630720885194996950">"தன்னியக்க திருத்தம்"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"ஸ்பேஸ்பாரும், நிறுத்தற்குறிகளும் தவறாக உள்ளிடப்பட்ட வார்த்தைகளை தானாக திருத்தும்"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ஆஃப்"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"மிதமாக"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"టైప్ చేసేటప్పుడు సూచిత పదాలను ప్రదర్శించు"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"కించపరిచే పదాలను బ్లాక్ చేయి"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"కించ‌ప‌ర‌చ‌డానికి అవకాశం ఇచ్చే పదాలను సూచించవద్దు"</string>
<string name="auto_correction" msgid="7630720885194996950">"స్వీయ-సవరణ"</string>
<string name="autocorrect" msgid="7630720885194996950">"స్వీయ-సవరణ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"స్పేస్ బార్ మరియు విరామ చిహ్నాలు తప్పుగా టైప్ చేసిన పదాలను ఆటోమేటిక్‌గా సరి చేస్తాయి"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ఆఫ్‌ చేయి"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"మధ్యస్థం"</string>
@ -142,7 +142,7 @@
<string name="user_dict_settings_delete" msgid="110413335187193859">"తొలగించు"</string>
<string name="user_dict_fast_scroll_alphabet" msgid="5431919401558285473">" ABCDEFGHIJKLMNOPQRSTUVWXYZ"</string>
<string name="number_row_summary">సంఖ్యల వరుసను ఎల్లప్పుడూ చూపండి</string>
<string name="prefs_force_incognito_mode">అజ్ఞాత పద్దతి ప్రయోగించండి</string>
<string name="incognito">అజ్ఞాత పద్దతి ప్రయోగించండి</string>
<string name="use_system_language_to_select_input_method_subtypes">"సిస్టమ్ భాషలను ఉపయోగించండి"</string>
<string name="select_input_method">"ఇన్‌పుట్ పద్ధతిని ఎంచుకోండి"</string>
<string name="prefs_force_incognito_mode_summary">కొత్త పదముల అభ్యాసమును ఆపండి</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"แสดงคำที่แนะนำขณะพิมพ์"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"บล็อกคำที่ไม่เหมาะสม"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ไม่แนะนำคำที่อาจไม่เหมาะสม"</string>
<string name="auto_correction" msgid="7630720885194996950">"การแก้ไขคำผิดอัตโนมัติ"</string>
<string name="autocorrect" msgid="7630720885194996950">"การแก้ไขคำผิดอัตโนมัติ"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"กดเว้นวรรคและเครื่องหมายจะแก้คำผิดอัตโนมัติ"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"ปิด"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"ปานกลาง"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Ipakita ang mga iminumungkahing salita habang nagta-type"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"I-block ang masakit na salita"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Huwag magmungkahi ng mga maaaring nakakapanakit na salita"</string>
<string name="auto_correction" msgid="7630720885194996950">"Auto na pagwawasto"</string>
<string name="autocorrect" msgid="7630720885194996950">"Auto na pagwawasto"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Awtomatikong tinatama ng spacebar at bantas ang maling na-type"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Naka-off"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Modest"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Yazarken, önerilen kelimeleri görüntüle"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Rahatsız edici kelimeleri engelle"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Rahatsız edici olabilecek kelimeleri önermez"</string>
<string name="auto_correction" msgid="7630720885194996950">"Otomatik düzelt"</string>
<string name="autocorrect" msgid="7630720885194996950">"Otomatik düzelt"</string>
<string name="auto_correction_summary">"Boşluk tuşu ve noktalama işaretleri yanlış yazılan kelimeleri otomatikman düzeltir"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Kapalı"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Ölçülü"</string>
@ -147,7 +147,7 @@
<string name="settings_category_miscellaneous">Çeşitli</string>
<string name="settings_no_limit">Sınır yok</string>
<string name="space_trackpad_summary">İmleci hareket ettirmek için boşluk tuşu üzerinde kaydırın</string>
<string name="prefs_force_incognito_mode">Gizli modu zorla</string>
<string name="incognito">Gizli modu zorla</string>
<string name="prefs_force_incognito_mode_summary">Yeni sözcüklerin öğrenilmesini devre dışı bırak</string>
<string name="number_row">Sayı satırı</string>
<string name="prefs_long_press_keyboard_to_change_lang_summary">Boşluk tuşuna uzun süre basmak, giriş yöntemi seçim menüsünü gösterecektir</string>

View file

@ -39,7 +39,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Відображати пропоновані слова під час вводу"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Блокувати нецензурні слова"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Не пропонувати потенційно образливі слова"</string>
<string name="auto_correction" msgid="7630720885194996950">"Автовиправлення"</string>
<string name="autocorrect" msgid="7630720885194996950">"Автовиправлення"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Пробіл і пунктуація автоматично виправляють слова з помилками"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Вимк."</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Помірне"</string>
@ -200,7 +200,7 @@
<string name="hidden_features_summary">Показати функції, які можуть залишитися непоміченими</string>
<string name="select_input_method">Вибрати метод введення</string>
<string name="space_trackpad">Клавіша пробіл як трекпад</string>
<string name="prefs_force_incognito_mode">Примусовий режим інкогніто</string>
<string name="incognito">Примусовий режим інкогніто</string>
<string name="prefs_force_incognito_mode_summary">Вимкнути вивчення нових слів</string>
<string name="show_hints_summary">Показувати підказки довгим натисканням</string>
<string name="show_hints">Показувати підказки клавіш</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"ٹائپ کرتے وقت تجویز کردہ الفاظ ڈسپلے کریں"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"ناگوار الفاظ مسدود کریں"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"ممکنہ طور پر ناگوار الفاظ تجویز نہ کریں"</string>
<string name="auto_correction" msgid="7630720885194996950">"خود کار اصلاح"</string>
<string name="autocorrect" msgid="7630720885194996950">"خود کار اصلاح"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"اسپیس بار اور رموز اوقاف غلط ٹائپ کردہ الفاظ کی اصلاح کرتے ہیں"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"آف"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"معتدل"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Matn kiritishda soz variantlarini taklif qilish"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Senzuraga moyil iboralarni taqiqlash"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Haqoratomuz sozlar taklif qilinmasin"</string>
<string name="auto_correction" msgid="7630720885194996950">"Avtomatik tuzatish"</string>
<string name="autocorrect" msgid="7630720885194996950">"Avtomatik tuzatish"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Tinish belgisi kiritilganda yoki bosh joy qoldirilganda, xato sozni avtomatik tuzatish"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Och."</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Ortacha"</string>
@ -169,7 +169,7 @@
<string name="settings_category_suggestions">Takliflar</string>
<string name="settings_category_experimental">Eksperimental</string>
<string name="autospace_after_punctuation_summary">Yangi so\'zni kiritishda tinish belgilaridan keyin avtomatik ravishda bo\'sh joy qo\'yish</string>
<string name="prefs_force_incognito_mode">Majburiy inkognito rejimi</string>
<string name="incognito">Majburiy inkognito rejimi</string>
<string name="space_trackpad">Bo\'sh joy trek paneli</string>
<string name="autospace_after_punctuation">Tinish belgilaridan keyin avtomatik bo\'shliq qoyish</string>
<string name="subtype_with_layout_bn_BD"><xliff:g id="LANGUAGE_NAME" example="Bangla">%s</xliff:g> (Akkhor)</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Hiển thị từ được đề xuất khi nhập"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Chặn các từ phản cảm"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Không đề xuất các từ có thể gây xúc phạm"</string>
<string name="auto_correction" msgid="7630720885194996950">"Tự động sửa"</string>
<string name="autocorrect" msgid="7630720885194996950">"Tự động sửa"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Phím cách và dấu câu tự động sửa từ nhập sai"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Tắt"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Đơn giản"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"键入时显示建议的字词"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"屏蔽不文明的字词"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"屏蔽可能不文明的字词"</string>
<string name="auto_correction" msgid="7630720885194996950">"自动更正"</string>
<string name="autocorrect" msgid="7630720885194996950">"自动更正"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"按空格键和标点可自动更正错别字"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"关闭"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"小改"</string>
@ -150,7 +150,7 @@
<string name="enable_clipboard_history">剪切板</string>
<string name="clipboard_history_retention_time">保存历史</string>
<string name="delete_swipe_summary">从删除键上进行滑动,可以一次选择并删除较大的文字部分</string>
<string name="prefs_force_incognito_mode">强力隐私模式</string>
<string name="incognito">强力隐私模式</string>
<string name="show_hints_summary">长按候选词弹框</string>
<string name="number_row_summary">数字行</string>
<string name="show_hints">显示主要提示</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"輸入時顯示建議字詞"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"封鎖令人反感的字詞"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"不建議可能令人反感的字詞"</string>
<string name="auto_correction" msgid="7630720885194996950">"自動更正"</string>
<string name="autocorrect" msgid="7630720885194996950">"自動更正"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"自動插入空白鍵和標點符號鍵盤,以修正拼字錯誤"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"關閉"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"普通模式"</string>
@ -146,7 +146,7 @@
<string name="spell_checker_service_name">拼字檢查</string>
<string name="android_spell_checker_settings">拼字檢查設定</string>
<string name="show_emoji_key">Emoji</string>
<string name="prefs_force_incognito_mode">強制無痕模式</string>
<string name="incognito">強制無痕模式</string>
<string name="settings_category_clipboard_history">剪貼板記錄</string>
<string name="settings_category_suggestions">建議</string>
<string name="settings_no_limit">無限</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"輸入時顯示建議字詞"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"封鎖令人反感的字詞"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"不建議可能令人反感的字詞"</string>
<string name="auto_correction" msgid="7630720885194996950">"自動修正"</string>
<string name="autocorrect" msgid="7630720885194996950">"自動修正"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"按空白鍵或標點符號時,自動修正前面的錯字"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"關閉"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"更正範圍小"</string>

View file

@ -38,7 +38,7 @@
<string name="prefs_show_suggestions_summary" msgid="1583132279498502825">"Bonisa amagama aphakamisiwe ngenkathi uthayipha"</string>
<string name="prefs_block_potentially_offensive_title" msgid="5078480071057408934">"Vimba amagama ahlaselayo"</string>
<string name="prefs_block_potentially_offensive_summary" msgid="2371835479734991364">"Ungaphakamisi amagama angaba nokuhlaselayo"</string>
<string name="auto_correction" msgid="7630720885194996950">"Ukulungisa okuzenzakalelayo"</string>
<string name="autocorrect" msgid="7630720885194996950">"Ukulungisa okuzenzakalelayo"</string>
<string name="auto_correction_summary" msgid="5625751551134658006">"Ibha yesikhala nokubhala ngamagama amakhulu kulungisa amaphutha amagama athayiphwe kabi"</string>
<string name="auto_correction_threshold_mode_off" msgid="8470882665417944026">"Valiwe"</string>
<string name="auto_correction_threshold_mode_modest" msgid="8788366690620799097">"Thobekile"</string>

View file

@ -113,7 +113,7 @@
<string name="prefs_block_potentially_offensive_summary">Do not suggest potentially offensive words</string>
<!-- Option to decide the auto correction threshold score -->
<!-- Option to enable auto correction [CHAR LIMIT=20]-->
<string name="auto_correction">Auto-correction</string>
<string name="autocorrect">Auto-correction</string>
<!-- Description for auto correction [CHAR LIMIT=65 (two lines) or 30 (fits on one line, preferable)] -->
<string name="auto_correction_summary">Spacebar and punctuation automatically correct mistyped words</string>
<!-- Option to change the confidence level of the auto correction [CHAR LIMIT=20] -->
@ -204,7 +204,7 @@
<!-- Description for "url_detection_title" option. -->
<string name="url_detection_summary">Try to detect URLs and similar as a single word</string>
<!-- Preferences item for disabling word learning -->
<string name="prefs_force_incognito_mode">Force incognito mode</string>
<string name="incognito">Force incognito mode</string>
<!-- Description for "prefs_force_incognito_mode" option. -->
<string name="prefs_force_incognito_mode_summary">Disable learning of new words</string>
<!-- Content description for "more keys" suggestions view -->

View file

@ -12,7 +12,7 @@
<SwitchPreferenceCompat
android:key="pref_always_incognito_mode"
android:title="@string/prefs_force_incognito_mode"
android:title="@string/incognito"
android:summary="@string/prefs_force_incognito_mode_summary"
android:defaultValue="false" />

View file

@ -26,7 +26,7 @@
<SwitchPreferenceCompat
android:key="pref_key_auto_correction"
android:title="@string/auto_correction"
android:title="@string/autocorrect"
android:summary="@string/auto_correction_summary"
android:defaultValue="true"
android:persistent="true" />